www/index.html - adjust countdown styles
mainly, add a blink for seconds and countdown
This commit is contained in:
@@ -14,10 +14,15 @@
|
||||
div#location {
|
||||
font-size: 50pt;
|
||||
}
|
||||
div.hours { color: blue; }
|
||||
div.hours { color: black; }
|
||||
div.minutes { color: green; }
|
||||
div.seconds { color: orange; }
|
||||
div.countdown { color: red; }
|
||||
div.seconds { color: orange; animation: blinker 1s linear infinite; }
|
||||
div.countdown { color: red; animation: blinker 1s linear infinite; }
|
||||
@keyframes blinker {
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
Reference in New Issue
Block a user