Skip to content

Commit 44fae99

Browse files
committed
feat: add color-blink animation
1 parent 3f8ab23 commit 44fae99

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

source/_base.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,14 @@
6666
opacity: 0;
6767
}
6868
}
69+
@keyframes color-blink {
70+
0% { color: red; }
71+
50% { color: yellow; }
72+
100% { color: red; }
73+
}
74+
75+
.color-blink {
76+
animation-name: color-blink;
77+
animation-duration: 1s;
78+
animation-iteration-count: infinite;
79+
}

0 commit comments

Comments
 (0)