48 lines
594 B
CSS
48 lines
594 B
CSS
.dashboard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
/* 7 to 16 */
|
|
.day {
|
|
background-color: #007c7d;
|
|
}
|
|
|
|
/* 16 to 23 */
|
|
.evening {
|
|
background-color: #3b5773;
|
|
}
|
|
|
|
/* 23 to 8 */
|
|
.night {
|
|
background-color: #2a3f55;
|
|
}
|
|
|
|
.clockAndWeather {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.cardWrapper {
|
|
margin: 30px;
|
|
height: 100%;
|
|
gap: 30px;
|
|
flex-direction: column;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.small {
|
|
width: 45%;
|
|
}
|
|
|
|
.terminal {
|
|
margin: 2px;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #c0c0c0;
|
|
}
|