2024-09-17 06:50:34 +00:00
|
|
|
.container {
|
|
|
|
|
font-family: "Poppins", sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
gap: 20px;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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-17 06:50:34 +00:00
|
|
|
min-width: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@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%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|