Make dashboard change background based on time of day

This commit is contained in:
2025-08-29 01:00:47 +02:00
committed by Arif Hasanic
parent a4fe525b9e
commit 6dfa50f3ed
2 changed files with 48 additions and 1 deletions

View File

@@ -2,9 +2,24 @@
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;
}
.cardWrapper {
margin: 30px;
height: 100%;
@@ -48,6 +63,12 @@
.clock {
width: 45%;
<<<<<<< HEAD
=======
}
.terminal {
>>>>>>> 115a228 (Make dashboard change background based on time of day)
}
.footer {