Break blink, end of day handling

This commit is contained in:
Ian Gulliver
2020-09-10 21:20:10 +00:00
parent b82849b6e5
commit d03d5741a3
2 changed files with 149 additions and 21 deletions

View File

@@ -14,6 +14,25 @@ body {
font-family: 'Roboto', sans-serif;
}
.blinkSlow {
animation: blink 1.0s infinite;
}
.blinkFast {
animation: blink 0.5s infinite;
}
@keyframes blink {
0% { filter: none; }
49% { filter: none; }
50% { filter: invert(); }
100% { filter: invert(); }
}
#current, #next {
visibility: hidden;
}
#current {
flex-grow: 4;
flex-shrink: 0;
@@ -53,6 +72,10 @@ body {
font-size: 10vmin;
}
.event, .break {
visibility: visible !important;
}
.event {
color: #e28659;
}