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 {
|
div#location {
|
||||||
font-size: 50pt;
|
font-size: 50pt;
|
||||||
}
|
}
|
||||||
div.hours { color: blue; }
|
div.hours { color: black; }
|
||||||
div.minutes { color: green; }
|
div.minutes { color: green; }
|
||||||
div.seconds { color: orange; }
|
div.seconds { color: orange; animation: blinker 1s linear infinite; }
|
||||||
div.countdown { color: red; }
|
div.countdown { color: red; animation: blinker 1s linear infinite; }
|
||||||
|
@keyframes blinker {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
Reference in New Issue
Block a user