:zap: [Enhance] Softer effects for blinking
Browse files- css/default.css +3 -3
css/default.css
CHANGED
@@ -80,13 +80,13 @@
|
|
80 |
|
81 |
@keyframes blink {
|
82 |
0% {
|
83 |
-
|
84 |
}
|
85 |
50% {
|
86 |
-
|
87 |
}
|
88 |
100% {
|
89 |
-
|
90 |
}
|
91 |
}
|
92 |
|
|
|
80 |
|
81 |
@keyframes blink {
|
82 |
0% {
|
83 |
+
border-color: transparent;
|
84 |
}
|
85 |
50% {
|
86 |
+
border-color: antiquewhite;
|
87 |
}
|
88 |
100% {
|
89 |
+
border-color: transparent;
|
90 |
}
|
91 |
}
|
92 |
|