From e5531496ee0b2760ac23b540311906f28e146d4a Mon Sep 17 00:00:00 2001 From: Ville Rantanen Date: Tue, 2 Nov 2021 10:04:08 +0200 Subject: [PATCH] blinker --- index.html | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 9330567..f76fddb 100644 --- a/index.html +++ b/index.html @@ -46,6 +46,15 @@ vertical-align: super; font-size: 50%; } + .blink { + -webkit-animation: blinker 0.5s infinite; + -moz-animation: blinker 0.5s infinite; + animation: blinker 0.5s infinite; + } + @keyframes blinker { + 0% { opacity: 0.00; } + 100% { opacity: 1.00; } + }