diff --git a/www/index.html b/www/index.html
index 4415be9..e1b47e6 100644
--- a/www/index.html
+++ b/www/index.html
@@ -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;
+ }
+ }