Break blink, end of day handling
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user