2024-09-17 06:50:34 +00:00
|
|
|
.container {
|
2024-09-24 06:15:26 +00:00
|
|
|
font-family: "Onest", sans-serif;
|
2024-09-17 06:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
color: #49473C;
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.description {
|
|
|
|
|
color: #49473C;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.update{
|
|
|
|
|
color: #49473C;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
margin-top: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2024-10-08 06:59:56 +00:00
|
|
|
gap: 30px;
|
2024-09-17 06:50:34 +00:00
|
|
|
margin-top: 20px;
|
2024-09-24 06:15:26 +00:00
|
|
|
justify-content: flex-start;
|
2024-09-17 06:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-parameter{
|
|
|
|
|
border: 1px solid #16423C;
|
|
|
|
|
color: #16423C;
|
|
|
|
|
padding: 20px 0px 20px 0px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
text-align: center;
|
2024-09-20 07:59:54 +00:00
|
|
|
flex: 1 1 30%;
|
2024-09-24 06:15:26 +00:00
|
|
|
max-width: 30%;
|
2024-09-17 06:50:34 +00:00
|
|
|
min-width: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-24 06:15:26 +00:00
|
|
|
.card-parameter:hover{
|
|
|
|
|
background-color: #16423C;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-17 06:50:34 +00:00
|
|
|
.card-content{
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin:auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title-graph{
|
|
|
|
|
color: #49473C;
|
|
|
|
|
font-size: 23px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
margin-top: 45px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.graph{
|
|
|
|
|
margin-top: 22px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2024-09-20 07:59:54 +00:00
|
|
|
.card-parameter{
|
2024-09-17 06:50:34 +00:00
|
|
|
flex: 1 1 45%;
|
|
|
|
|
}
|
2024-10-08 06:59:56 +00:00
|
|
|
|
|
|
|
|
.card-container{
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2024-09-17 06:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 576px) {
|
2024-09-20 07:59:54 +00:00
|
|
|
.card-parameter{
|
2024-09-17 06:50:34 +00:00
|
|
|
flex: 1 1 100%;
|
|
|
|
|
}
|
2024-10-08 06:59:56 +00:00
|
|
|
|
|
|
|
|
.card-container{
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2024-09-17 06:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
2024-09-24 06:15:26 +00:00
|
|
|
button {
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.active-button {
|
|
|
|
|
background-color: #cad849;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
2024-10-08 06:17:01 +00:00
|
|
|
|
|
|
|
|
.loading{
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #888;
|
|
|
|
|
}
|
2024-10-23 01:29:27 +00:00
|
|
|
|
|
|
|
|
.status-on {
|
|
|
|
|
color: #16423C;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-off {
|
|
|
|
|
color: rgb(144, 6, 6);
|
|
|
|
|
}
|