www/index.html - adjust countdown styles

mainly, add a blink for seconds and countdown
This commit is contained in:
Nick Stokoe
2022-12-31 13:11:40 +00:00
parent 586471e83b
commit 68fbefab9e

View File

@@ -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>