display time until opening/closing

This commit is contained in:
insects 2025-02-05 20:57:43 +01:00
parent 3c935a1be3
commit e04a98a7fd
5 changed files with 60 additions and 5 deletions

View file

@ -5,10 +5,10 @@ body {
section {
margin-bottom: 5px;
display: flex;
align-items: center;
justify-content: space-between;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
padding: 0 10px;
align-items: center;
}
.title {
@ -30,6 +30,25 @@ section {
text-align: end;
}
.when {
text-align: center;
}
section.up {
background-color: greenyellow;
}
section.alwaysup {
background-color: #c6ff6e;
background-image: linear-gradient(
45deg,
greenyellow 25%,
transparent 25%,
transparent 50%,
greenyellow 50%,
greenyellow 75%,
transparent 75%,
transparent
);
background-size: 50px 50px;
}