Skip to content

Commit 36b596b

Browse files
committed
Merge branch 'pr-1860'
2 parents a7a01a6 + 44fae99 commit 36b596b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

source/_base.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,14 @@
7373
opacity: 0;
7474
}
7575
}
76+
@keyframes color-blink {
77+
0% { color: red; }
78+
50% { color: yellow; }
79+
100% { color: red; }
80+
}
81+
82+
.color-blink {
83+
animation-name: color-blink;
84+
animation-duration: 1s;
85+
animation-iteration-count: infinite;
86+
}

0 commit comments

Comments
 (0)