Make clock divider blink

This commit is contained in:
2025-08-28 21:36:53 +02:00
parent aa8da0bb56
commit 481f103ba0
2 changed files with 17 additions and 6 deletions

View File

@@ -18,3 +18,13 @@ img {
display: flex;
flex-direction: column;
}
.divider {
animation: blink 3s step-end infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}