diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-21 18:46:40 -0700 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-21 18:46:40 -0700 |
| commit | d14605d1388aaa7cc9ef1c230eae5ba14c9cef44 (patch) | |
| tree | 59fcda0fae7899ca577eed1f72d89bff17d5ad5d /static/css/blinky.css | |
| download | backup-notify-d14605d1388aaa7cc9ef1c230eae5ba14c9cef44.tar.gz backup-notify-d14605d1388aaa7cc9ef1c230eae5ba14c9cef44.zip | |
initial commit
Diffstat (limited to 'static/css/blinky.css')
| -rw-r--r-- | static/css/blinky.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/static/css/blinky.css b/static/css/blinky.css new file mode 100644 index 0000000..8bd636e --- /dev/null +++ b/static/css/blinky.css @@ -0,0 +1,9 @@ +.blinky { + animation: blinker 1s step-start infinite; +} + +@keyframes blinker { + 50% { + opacity: 0; + } +} |
