Commit
·
a5f600c
1
Parent(s):
3100ea1
28. Sept. 2024, 21:27
Browse files- _res/_custom.css +29 -11
_res/_custom.css
CHANGED
@@ -192,27 +192,45 @@ label.selected.svelte-1k4wjf2.svelte-1k4wjf2.svelte-1k4wjf2 {
|
|
192 |
animation-timing-function: ease-in-out;
|
193 |
}
|
194 |
|
195 |
-
|
196 |
-
|
197 |
-
animation-name: wink;
|
198 |
-
animation-delay: 0s;
|
199 |
-
animation-direction: normal;
|
200 |
-
animation-duration: 0.6s;
|
201 |
-
animation-iteration-count: infinite;
|
202 |
-
animation-timing-function: ease-in-out;
|
203 |
}
|
|
|
|
|
204 |
}
|
205 |
|
206 |
@keyframes beat {
|
|
|
|
|
|
|
207 |
|
208 |
-
|
209 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
transform: scale(1);
|
211 |
}
|
212 |
|
213 |
-
|
214 |
transform: scale(1.25);
|
215 |
}
|
|
|
|
|
|
|
|
|
216 |
}
|
217 |
|
218 |
@keyframes wink {
|
|
|
192 |
animation-timing-function: ease-in-out;
|
193 |
}
|
194 |
|
195 |
+
.fa-beat {
|
196 |
+
animation: fa-beat 5s ease infinite;
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
}
|
198 |
+
|
199 |
+
|
200 |
}
|
201 |
|
202 |
@keyframes beat {
|
203 |
+
0% {
|
204 |
+
transform: scale(1);
|
205 |
+
}
|
206 |
|
207 |
+
5% {
|
208 |
+
transform: scale(1.25);
|
209 |
+
}
|
210 |
+
|
211 |
+
20% {
|
212 |
+
transform: scale(1);
|
213 |
+
}
|
214 |
+
|
215 |
+
30% {
|
216 |
+
transform: scale(1);
|
217 |
+
}
|
218 |
+
|
219 |
+
35% {
|
220 |
+
transform: scale(1.25);
|
221 |
+
}
|
222 |
+
|
223 |
+
50% {
|
224 |
transform: scale(1);
|
225 |
}
|
226 |
|
227 |
+
55% {
|
228 |
transform: scale(1.25);
|
229 |
}
|
230 |
+
|
231 |
+
70% {
|
232 |
+
transform: scale(1);
|
233 |
+
}
|
234 |
}
|
235 |
|
236 |
@keyframes wink {
|