aboutsummaryrefslogtreecommitdiff
path: root/src/App.css
diff options
context:
space:
mode:
authorLibravatar Renard 2020-03-13 14:14:08 -0300
committerLibravatar Renard 2020-03-13 14:14:08 -0300
commitc70be11d6c1f208a507d11fbd2b701bdcc92951e (patch)
tree61f795f3ecb5deee59650efe44911bdb9d63251d /src/App.css
parentc6e1413e44a7c77accfffa28ce6a0a650da575d8 (diff)
downloadbairadio-app-master.tar.gz
bairadio-app-master.tar.xz
bairadio-app-master.zip
Implementación completa del protocolo de ChatHEADmaster
Diffstat (limited to 'src/App.css')
-rw-r--r--src/App.css20
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;
+ }
+}