diff options
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; + } +} |