48 lines
868 B
CSS
48 lines
868 B
CSS
.calendario {
|
|
background-color: #34495E;
|
|
border: 2px solid #000;
|
|
height: 18.75rem;
|
|
position: fixed;
|
|
bottom: 3.5rem;
|
|
width: 70%;
|
|
display: flex;
|
|
justify-content: center;
|
|
border-radius: 12px 12px 12px 12px;
|
|
}
|
|
.containerCalendario {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.containerGauge {
|
|
position: fixed;
|
|
bottom: 5rem;
|
|
width: 100%;
|
|
align-items: center;
|
|
right: 5.2rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 8.3rem;
|
|
}
|
|
.containerCard {
|
|
position: relative;
|
|
width: 100%;
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.containerBtnEntrEsc {
|
|
margin-top: 20px;
|
|
position: relative;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.containerBtnTemp {
|
|
position: fixed;
|
|
height: 3rem;
|
|
width: 6rem;
|
|
bottom: 2rem;
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
} |