You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.1 KiB
CSS
75 lines
1.1 KiB
CSS
body {
|
|
margin: 5;
|
|
font-family: Arial, sans-serif;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #004C6D;
|
|
color: #121;
|
|
display: flex;
|
|
height: 400px;
|
|
}
|
|
|
|
.container {
|
|
background: white;
|
|
padding: 5px;
|
|
border-radius: 8px;
|
|
box-shadow: 15px 15px 25px rgba(0,0,0);
|
|
text-align: center;
|
|
width: 40%;
|
|
max-width: 240px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 22pt;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
button {
|
|
margin-top: 5px;
|
|
font-size: 14pt;
|
|
padding: 8px 16px;
|
|
background: #007BFF;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.reload-btn{
|
|
display: block;
|
|
margin: 20px auto;
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
background-color: #007acc;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.reload-btn:hover {
|
|
background-color: #005fa3;
|
|
}
|
|
|
|
.sensor-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-top: 250px;
|
|
}
|
|
|
|
.container {
|
|
background-color: white;
|
|
padding: 20px;
|
|
border-radius: 50px;
|
|
text-align: center;
|
|
box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
|
|
width: 250px;
|
|
}
|
|
|
|
button:hover {
|
|
|
|
}
|