diff options
author | Renard | 2020-03-13 14:14:08 -0300 |
---|---|---|
committer | Renard | 2020-03-13 14:14:08 -0300 |
commit | c70be11d6c1f208a507d11fbd2b701bdcc92951e (patch) | |
tree | 61f795f3ecb5deee59650efe44911bdb9d63251d /src/App.css | |
parent | c6e1413e44a7c77accfffa28ce6a0a650da575d8 (diff) | |
download | bairadio-app-c70be11d6c1f208a507d11fbd2b701bdcc92951e.tar.gz bairadio-app-c70be11d6c1f208a507d11fbd2b701bdcc92951e.tar.xz bairadio-app-c70be11d6c1f208a507d11fbd2b701bdcc92951e.zip |
Diffstat (limited to 'src/App.css')
-rw-r--r-- | src/App.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/App.css b/src/App.css index 1b1cca9..22fe12f 100644 --- a/src/App.css +++ b/src/App.css @@ -24,3 +24,23 @@ body { overflow-y: scroll; overflow-wrap: break-word; } + +.iidx { + animation-name: notice; + animation-duration: 0.1s; + animation-iteration-count: infinite; +} +@keyframes notice { + 0% { + color: #ffa400; + } + 25% { + color: #467fff; + } + 50% { + color: #d0ffe1; + } + 100% { + color: #ff5a98; + } +} |