2024-10-25 03:55:52 +00:00
|
|
|
.container-graph {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
height: max-content;
|
2024-10-08 03:07:28 +00:00
|
|
|
|
2024-10-25 03:55:52 +00:00
|
|
|
.sensor-wrapper {
|
2024-09-17 06:50:34 +00:00
|
|
|
display: flex;
|
2024-10-25 03:55:52 +00:00
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 35px;
|
|
|
|
|
background-color: #f1f1f1;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
margin-bottom: 10px;
|
2024-09-17 06:50:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
2024-10-25 03:55:52 +00:00
|
|
|
|
|
|
|
|
.title-with-dropdown {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
flex: 0 0 25%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-select {
|
|
|
|
|
flex: 0 0 25%;
|
|
|
|
|
margin: 18px 0px 0px 15px;
|
2024-09-17 06:50:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
2024-10-25 03:55:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
margin: 18px 0px 0px 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
canvas {
|
|
|
|
|
height: 500px !important;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 2000px;
|
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
canvas {
|
|
|
|
|
height: 300px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-10-08 03:07:28 +00:00
|
|
|
|
2024-10-25 03:55:52 +00:00
|
|
|
.loading {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
text-align: center;
|
2024-10-08 03:07:28 +00:00
|
|
|
}
|
|
|
|
|
|
2024-10-25 03:55:52 +00:00
|
|
|
.spinner {
|
|
|
|
|
color: #16423C
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.no-data {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 100%;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|