@datafluxgrid/fluxgrid-css 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +549 -147
- package/package.json +1 -1
- package/src/css/animation.css +669 -29
- package/src/css/fonts.css +100 -0
- package/src/css/forms.css +72 -0
- package/src/css/index.css +1 -0
package/src/css/animation.css
CHANGED
|
@@ -7,6 +7,15 @@
|
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
+
@keyframes c-spin-reverse {
|
|
11
|
+
from {
|
|
12
|
+
transform: rotate(360deg);
|
|
13
|
+
}
|
|
14
|
+
to {
|
|
15
|
+
transform: rotate(0deg);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
10
19
|
@keyframes c-ping {
|
|
11
20
|
75%,
|
|
12
21
|
100% {
|
|
@@ -25,6 +34,16 @@
|
|
|
25
34
|
}
|
|
26
35
|
}
|
|
27
36
|
|
|
37
|
+
@keyframes c-pulse-scale {
|
|
38
|
+
0%,
|
|
39
|
+
100% {
|
|
40
|
+
transform: scale(1);
|
|
41
|
+
}
|
|
42
|
+
50% {
|
|
43
|
+
transform: scale(1.05);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
28
47
|
@keyframes c-bounce {
|
|
29
48
|
0%,
|
|
30
49
|
100% {
|
|
@@ -37,6 +56,18 @@
|
|
|
37
56
|
}
|
|
38
57
|
}
|
|
39
58
|
|
|
59
|
+
@keyframes c-bounce-x {
|
|
60
|
+
0%,
|
|
61
|
+
100% {
|
|
62
|
+
transform: translateX(-25%);
|
|
63
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
64
|
+
}
|
|
65
|
+
50% {
|
|
66
|
+
transform: translateX(0);
|
|
67
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
40
71
|
@keyframes c-shake {
|
|
41
72
|
0%,
|
|
42
73
|
100% {
|
|
@@ -57,6 +88,26 @@
|
|
|
57
88
|
}
|
|
58
89
|
}
|
|
59
90
|
|
|
91
|
+
@keyframes c-shake-y {
|
|
92
|
+
0%,
|
|
93
|
+
100% {
|
|
94
|
+
transform: translateY(0);
|
|
95
|
+
}
|
|
96
|
+
10%,
|
|
97
|
+
30%,
|
|
98
|
+
50%,
|
|
99
|
+
70%,
|
|
100
|
+
90% {
|
|
101
|
+
transform: translateY(-4px);
|
|
102
|
+
}
|
|
103
|
+
20%,
|
|
104
|
+
40%,
|
|
105
|
+
60%,
|
|
106
|
+
80% {
|
|
107
|
+
transform: translateY(4px);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
60
111
|
@keyframes c-fade-in {
|
|
61
112
|
from {
|
|
62
113
|
opacity: 0;
|
|
@@ -75,47 +126,141 @@
|
|
|
75
126
|
}
|
|
76
127
|
}
|
|
77
128
|
|
|
78
|
-
@keyframes c-
|
|
129
|
+
@keyframes c-fade-in-up {
|
|
79
130
|
from {
|
|
131
|
+
opacity: 0;
|
|
80
132
|
transform: translateY(20px);
|
|
133
|
+
}
|
|
134
|
+
to {
|
|
135
|
+
opacity: 1;
|
|
136
|
+
transform: translateY(0);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
@keyframes c-fade-in-down {
|
|
141
|
+
from {
|
|
81
142
|
opacity: 0;
|
|
143
|
+
transform: translateY(-20px);
|
|
82
144
|
}
|
|
83
145
|
to {
|
|
146
|
+
opacity: 1;
|
|
84
147
|
transform: translateY(0);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
@keyframes c-fade-in-left {
|
|
152
|
+
from {
|
|
153
|
+
opacity: 0;
|
|
154
|
+
transform: translateX(-20px);
|
|
155
|
+
}
|
|
156
|
+
to {
|
|
85
157
|
opacity: 1;
|
|
158
|
+
transform: translateX(0);
|
|
86
159
|
}
|
|
87
160
|
}
|
|
88
161
|
|
|
89
|
-
@keyframes c-
|
|
162
|
+
@keyframes c-fade-in-right {
|
|
90
163
|
from {
|
|
91
|
-
transform: translateY(-20px);
|
|
92
164
|
opacity: 0;
|
|
165
|
+
transform: translateX(20px);
|
|
93
166
|
}
|
|
94
167
|
to {
|
|
168
|
+
opacity: 1;
|
|
169
|
+
transform: translateX(0);
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
@keyframes c-fade-out-up {
|
|
174
|
+
from {
|
|
175
|
+
opacity: 1;
|
|
95
176
|
transform: translateY(0);
|
|
177
|
+
}
|
|
178
|
+
to {
|
|
179
|
+
opacity: 0;
|
|
180
|
+
transform: translateY(-20px);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@keyframes c-fade-out-down {
|
|
185
|
+
from {
|
|
96
186
|
opacity: 1;
|
|
187
|
+
transform: translateY(0);
|
|
188
|
+
}
|
|
189
|
+
to {
|
|
190
|
+
opacity: 0;
|
|
191
|
+
transform: translateY(20px);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
@keyframes c-slide-in-up {
|
|
196
|
+
from {
|
|
197
|
+
transform: translateY(100%);
|
|
198
|
+
}
|
|
199
|
+
to {
|
|
200
|
+
transform: translateY(0);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
@keyframes c-slide-in-down {
|
|
205
|
+
from {
|
|
206
|
+
transform: translateY(-100%);
|
|
207
|
+
}
|
|
208
|
+
to {
|
|
209
|
+
transform: translateY(0);
|
|
97
210
|
}
|
|
98
211
|
}
|
|
99
212
|
|
|
100
213
|
@keyframes c-slide-in-left {
|
|
101
214
|
from {
|
|
102
|
-
transform: translateX(-
|
|
103
|
-
opacity: 0;
|
|
215
|
+
transform: translateX(-100%);
|
|
104
216
|
}
|
|
105
217
|
to {
|
|
106
218
|
transform: translateX(0);
|
|
107
|
-
opacity: 1;
|
|
108
219
|
}
|
|
109
220
|
}
|
|
110
221
|
|
|
111
222
|
@keyframes c-slide-in-right {
|
|
112
223
|
from {
|
|
113
|
-
transform: translateX(
|
|
114
|
-
opacity: 0;
|
|
224
|
+
transform: translateX(100%);
|
|
115
225
|
}
|
|
116
226
|
to {
|
|
117
227
|
transform: translateX(0);
|
|
118
|
-
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@keyframes c-slide-out-up {
|
|
232
|
+
from {
|
|
233
|
+
transform: translateY(0);
|
|
234
|
+
}
|
|
235
|
+
to {
|
|
236
|
+
transform: translateY(-100%);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
@keyframes c-slide-out-down {
|
|
241
|
+
from {
|
|
242
|
+
transform: translateY(0);
|
|
243
|
+
}
|
|
244
|
+
to {
|
|
245
|
+
transform: translateY(100%);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
@keyframes c-slide-out-left {
|
|
250
|
+
from {
|
|
251
|
+
transform: translateX(0);
|
|
252
|
+
}
|
|
253
|
+
to {
|
|
254
|
+
transform: translateX(-100%);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
@keyframes c-slide-out-right {
|
|
259
|
+
from {
|
|
260
|
+
transform: translateX(0);
|
|
261
|
+
}
|
|
262
|
+
to {
|
|
263
|
+
transform: translateX(100%);
|
|
119
264
|
}
|
|
120
265
|
}
|
|
121
266
|
|
|
@@ -141,21 +286,87 @@
|
|
|
141
286
|
}
|
|
142
287
|
}
|
|
143
288
|
|
|
289
|
+
@keyframes c-scale-in-x {
|
|
290
|
+
from {
|
|
291
|
+
transform: scaleX(0);
|
|
292
|
+
}
|
|
293
|
+
to {
|
|
294
|
+
transform: scaleX(1);
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
@keyframes c-scale-in-y {
|
|
299
|
+
from {
|
|
300
|
+
transform: scaleY(0);
|
|
301
|
+
}
|
|
302
|
+
to {
|
|
303
|
+
transform: scaleY(1);
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
@keyframes c-zoom-in {
|
|
308
|
+
from {
|
|
309
|
+
transform: scale(0);
|
|
310
|
+
opacity: 0;
|
|
311
|
+
}
|
|
312
|
+
to {
|
|
313
|
+
transform: scale(1);
|
|
314
|
+
opacity: 1;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
@keyframes c-zoom-out {
|
|
319
|
+
from {
|
|
320
|
+
transform: scale(1);
|
|
321
|
+
opacity: 1;
|
|
322
|
+
}
|
|
323
|
+
to {
|
|
324
|
+
transform: scale(0);
|
|
325
|
+
opacity: 0;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
144
329
|
@keyframes c-flip-x {
|
|
145
330
|
from {
|
|
146
|
-
transform: rotateX(
|
|
331
|
+
transform: perspective(400px) rotateX(90deg);
|
|
332
|
+
opacity: 0;
|
|
147
333
|
}
|
|
148
334
|
to {
|
|
149
|
-
transform: rotateX(
|
|
335
|
+
transform: perspective(400px) rotateX(0deg);
|
|
336
|
+
opacity: 1;
|
|
150
337
|
}
|
|
151
338
|
}
|
|
152
339
|
|
|
153
340
|
@keyframes c-flip-y {
|
|
154
341
|
from {
|
|
155
|
-
transform: rotateY(
|
|
342
|
+
transform: perspective(400px) rotateY(90deg);
|
|
343
|
+
opacity: 0;
|
|
344
|
+
}
|
|
345
|
+
to {
|
|
346
|
+
transform: perspective(400px) rotateY(0deg);
|
|
347
|
+
opacity: 1;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
@keyframes c-rotate-in {
|
|
352
|
+
from {
|
|
353
|
+
transform: rotate(-180deg);
|
|
354
|
+
opacity: 0;
|
|
355
|
+
}
|
|
356
|
+
to {
|
|
357
|
+
transform: rotate(0deg);
|
|
358
|
+
opacity: 1;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
@keyframes c-rotate-out {
|
|
363
|
+
from {
|
|
364
|
+
transform: rotate(0deg);
|
|
365
|
+
opacity: 1;
|
|
156
366
|
}
|
|
157
367
|
to {
|
|
158
|
-
transform:
|
|
368
|
+
transform: rotate(180deg);
|
|
369
|
+
opacity: 0;
|
|
159
370
|
}
|
|
160
371
|
}
|
|
161
372
|
|
|
@@ -197,6 +408,140 @@
|
|
|
197
408
|
}
|
|
198
409
|
}
|
|
199
410
|
|
|
411
|
+
@keyframes c-float-x {
|
|
412
|
+
0%,
|
|
413
|
+
100% {
|
|
414
|
+
transform: translateX(0);
|
|
415
|
+
}
|
|
416
|
+
50% {
|
|
417
|
+
transform: translateX(8px);
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
@keyframes c-swing {
|
|
422
|
+
20% {
|
|
423
|
+
transform: rotate(15deg);
|
|
424
|
+
}
|
|
425
|
+
40% {
|
|
426
|
+
transform: rotate(-10deg);
|
|
427
|
+
}
|
|
428
|
+
60% {
|
|
429
|
+
transform: rotate(5deg);
|
|
430
|
+
}
|
|
431
|
+
80% {
|
|
432
|
+
transform: rotate(-5deg);
|
|
433
|
+
}
|
|
434
|
+
100% {
|
|
435
|
+
transform: rotate(0deg);
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
@keyframes c-rubber-band {
|
|
440
|
+
0% {
|
|
441
|
+
transform: scaleX(1);
|
|
442
|
+
}
|
|
443
|
+
30% {
|
|
444
|
+
transform: scaleX(1.25) scaleY(0.75);
|
|
445
|
+
}
|
|
446
|
+
40% {
|
|
447
|
+
transform: scaleX(0.75) scaleY(1.25);
|
|
448
|
+
}
|
|
449
|
+
50% {
|
|
450
|
+
transform: scaleX(1.15) scaleY(0.85);
|
|
451
|
+
}
|
|
452
|
+
65% {
|
|
453
|
+
transform: scaleX(0.95) scaleY(1.05);
|
|
454
|
+
}
|
|
455
|
+
75% {
|
|
456
|
+
transform: scaleX(1.05) scaleY(0.95);
|
|
457
|
+
}
|
|
458
|
+
100% {
|
|
459
|
+
transform: scaleX(1) scaleY(1);
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
@keyframes c-jello {
|
|
464
|
+
0%,
|
|
465
|
+
11.1%,
|
|
466
|
+
100% {
|
|
467
|
+
transform: none;
|
|
468
|
+
}
|
|
469
|
+
22.2% {
|
|
470
|
+
transform: skewX(-12.5deg) skewY(-12.5deg);
|
|
471
|
+
}
|
|
472
|
+
33.3% {
|
|
473
|
+
transform: skewX(6.25deg) skewY(6.25deg);
|
|
474
|
+
}
|
|
475
|
+
44.4% {
|
|
476
|
+
transform: skewX(-3.125deg) skewY(-3.125deg);
|
|
477
|
+
}
|
|
478
|
+
55.5% {
|
|
479
|
+
transform: skewX(1.5625deg) skewY(1.5625deg);
|
|
480
|
+
}
|
|
481
|
+
66.6% {
|
|
482
|
+
transform: skewX(-0.78125deg) skewY(-0.78125deg);
|
|
483
|
+
}
|
|
484
|
+
77.7% {
|
|
485
|
+
transform: skewX(0.390625deg) skewY(0.390625deg);
|
|
486
|
+
}
|
|
487
|
+
88.8% {
|
|
488
|
+
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
@keyframes c-tada {
|
|
493
|
+
0% {
|
|
494
|
+
transform: scaleX(1);
|
|
495
|
+
}
|
|
496
|
+
10%,
|
|
497
|
+
20% {
|
|
498
|
+
transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
|
|
499
|
+
}
|
|
500
|
+
30%,
|
|
501
|
+
50%,
|
|
502
|
+
70%,
|
|
503
|
+
90% {
|
|
504
|
+
transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
|
|
505
|
+
}
|
|
506
|
+
40%,
|
|
507
|
+
60%,
|
|
508
|
+
80% {
|
|
509
|
+
transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
|
|
510
|
+
}
|
|
511
|
+
100% {
|
|
512
|
+
transform: scaleX(1);
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
@keyframes c-blink {
|
|
517
|
+
0%,
|
|
518
|
+
100% {
|
|
519
|
+
opacity: 1;
|
|
520
|
+
}
|
|
521
|
+
50% {
|
|
522
|
+
opacity: 0;
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
@keyframes c-typewriter {
|
|
527
|
+
from {
|
|
528
|
+
width: 0;
|
|
529
|
+
}
|
|
530
|
+
to {
|
|
531
|
+
width: 100%;
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
@keyframes c-cursor-blink {
|
|
536
|
+
0%,
|
|
537
|
+
100% {
|
|
538
|
+
border-color: transparent;
|
|
539
|
+
}
|
|
540
|
+
50% {
|
|
541
|
+
border-color: currentColor;
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
|
|
200
545
|
@keyframes c-skeleton {
|
|
201
546
|
0% {
|
|
202
547
|
background-position: -200% 0;
|
|
@@ -206,12 +551,46 @@
|
|
|
206
551
|
}
|
|
207
552
|
}
|
|
208
553
|
|
|
209
|
-
@keyframes c-
|
|
554
|
+
@keyframes c-shimmer {
|
|
555
|
+
0% {
|
|
556
|
+
background-position: -1000px 0;
|
|
557
|
+
}
|
|
558
|
+
100% {
|
|
559
|
+
background-position: 1000px 0;
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
@keyframes c-glow {
|
|
210
564
|
0%,
|
|
211
565
|
100% {
|
|
212
|
-
|
|
566
|
+
box-shadow: 0 0 5px var(--c-primary-500);
|
|
213
567
|
}
|
|
214
568
|
50% {
|
|
569
|
+
box-shadow:
|
|
570
|
+
0 0 20px var(--c-primary-500),
|
|
571
|
+
0 0 40px var(--c-primary-400);
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
@keyframes c-glow-text {
|
|
576
|
+
0%,
|
|
577
|
+
100% {
|
|
578
|
+
text-shadow: 0 0 4px var(--c-primary-500);
|
|
579
|
+
}
|
|
580
|
+
50% {
|
|
581
|
+
text-shadow:
|
|
582
|
+
0 0 16px var(--c-primary-400),
|
|
583
|
+
0 0 32px var(--c-primary-300);
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
@keyframes c-ripple {
|
|
588
|
+
0% {
|
|
589
|
+
transform: scale(0);
|
|
590
|
+
opacity: 1;
|
|
591
|
+
}
|
|
592
|
+
100% {
|
|
593
|
+
transform: scale(4);
|
|
215
594
|
opacity: 0;
|
|
216
595
|
}
|
|
217
596
|
}
|
|
@@ -225,27 +604,147 @@
|
|
|
225
604
|
}
|
|
226
605
|
}
|
|
227
606
|
|
|
607
|
+
@keyframes c-morph {
|
|
608
|
+
0%,
|
|
609
|
+
100% {
|
|
610
|
+
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
|
|
611
|
+
}
|
|
612
|
+
34% {
|
|
613
|
+
border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
|
|
614
|
+
}
|
|
615
|
+
67% {
|
|
616
|
+
border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
@keyframes c-flip-card {
|
|
621
|
+
from {
|
|
622
|
+
transform: perspective(400px) rotateY(0);
|
|
623
|
+
}
|
|
624
|
+
to {
|
|
625
|
+
transform: perspective(400px) rotateY(180deg);
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
@keyframes c-roll-in {
|
|
630
|
+
from {
|
|
631
|
+
opacity: 0;
|
|
632
|
+
transform: translateX(-100%) rotate(-120deg);
|
|
633
|
+
}
|
|
634
|
+
to {
|
|
635
|
+
opacity: 1;
|
|
636
|
+
transform: translateX(0) rotate(0deg);
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
@keyframes c-drop-in {
|
|
641
|
+
from {
|
|
642
|
+
opacity: 0;
|
|
643
|
+
transform: translateY(-60px) scaleY(1.3);
|
|
644
|
+
}
|
|
645
|
+
to {
|
|
646
|
+
opacity: 1;
|
|
647
|
+
transform: translateY(0) scaleY(1);
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
@keyframes c-blur-in {
|
|
652
|
+
from {
|
|
653
|
+
opacity: 0;
|
|
654
|
+
filter: blur(12px);
|
|
655
|
+
}
|
|
656
|
+
to {
|
|
657
|
+
opacity: 1;
|
|
658
|
+
filter: blur(0);
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
@keyframes c-blur-out {
|
|
663
|
+
from {
|
|
664
|
+
opacity: 1;
|
|
665
|
+
filter: blur(0);
|
|
666
|
+
}
|
|
667
|
+
to {
|
|
668
|
+
opacity: 0;
|
|
669
|
+
filter: blur(12px);
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
@keyframes c-progress {
|
|
674
|
+
from {
|
|
675
|
+
width: 0%;
|
|
676
|
+
}
|
|
677
|
+
to {
|
|
678
|
+
width: 100%;
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
@keyframes c-counter {
|
|
683
|
+
from {
|
|
684
|
+
--num: 0;
|
|
685
|
+
}
|
|
686
|
+
to {
|
|
687
|
+
--num: 100;
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
|
|
228
691
|
.c-animate-spin {
|
|
229
692
|
animation: c-spin 1s linear infinite;
|
|
230
693
|
}
|
|
694
|
+
.c-animate-spin-reverse {
|
|
695
|
+
animation: c-spin-reverse 1s linear infinite;
|
|
696
|
+
}
|
|
697
|
+
.c-animate-spin-slow {
|
|
698
|
+
animation: c-spin 3s linear infinite;
|
|
699
|
+
}
|
|
700
|
+
.c-animate-spin-fast {
|
|
701
|
+
animation: c-spin 0.5s linear infinite;
|
|
702
|
+
}
|
|
231
703
|
.c-animate-ping {
|
|
232
704
|
animation: c-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
233
705
|
}
|
|
234
706
|
.c-animate-pulse {
|
|
235
707
|
animation: c-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
236
708
|
}
|
|
709
|
+
.c-animate-pulse-scale {
|
|
710
|
+
animation: c-pulse-scale 2s ease-in-out infinite;
|
|
711
|
+
}
|
|
237
712
|
.c-animate-bounce {
|
|
238
713
|
animation: c-bounce 1s infinite;
|
|
239
714
|
}
|
|
715
|
+
.c-animate-bounce-x {
|
|
716
|
+
animation: c-bounce-x 1s infinite;
|
|
717
|
+
}
|
|
240
718
|
.c-animate-shake {
|
|
241
719
|
animation: c-shake 0.5s ease-in-out;
|
|
242
720
|
}
|
|
721
|
+
.c-animate-shake-y {
|
|
722
|
+
animation: c-shake-y 0.5s ease-in-out;
|
|
723
|
+
}
|
|
243
724
|
.c-animate-fade-in {
|
|
244
725
|
animation: c-fade-in 300ms ease-out forwards;
|
|
245
726
|
}
|
|
246
727
|
.c-animate-fade-out {
|
|
247
728
|
animation: c-fade-out 300ms ease-in forwards;
|
|
248
729
|
}
|
|
730
|
+
.c-animate-fade-in-up {
|
|
731
|
+
animation: c-fade-in-up 400ms ease-out forwards;
|
|
732
|
+
}
|
|
733
|
+
.c-animate-fade-in-down {
|
|
734
|
+
animation: c-fade-in-down 400ms ease-out forwards;
|
|
735
|
+
}
|
|
736
|
+
.c-animate-fade-in-left {
|
|
737
|
+
animation: c-fade-in-left 400ms ease-out forwards;
|
|
738
|
+
}
|
|
739
|
+
.c-animate-fade-in-right {
|
|
740
|
+
animation: c-fade-in-right 400ms ease-out forwards;
|
|
741
|
+
}
|
|
742
|
+
.c-animate-fade-out-up {
|
|
743
|
+
animation: c-fade-out-up 300ms ease-in forwards;
|
|
744
|
+
}
|
|
745
|
+
.c-animate-fade-out-down {
|
|
746
|
+
animation: c-fade-out-down 300ms ease-in forwards;
|
|
747
|
+
}
|
|
249
748
|
.c-animate-slide-up {
|
|
250
749
|
animation: c-slide-in-up 300ms ease-out forwards;
|
|
251
750
|
}
|
|
@@ -258,12 +757,48 @@
|
|
|
258
757
|
.c-animate-slide-right {
|
|
259
758
|
animation: c-slide-in-right 300ms ease-out forwards;
|
|
260
759
|
}
|
|
760
|
+
.c-animate-slide-out-up {
|
|
761
|
+
animation: c-slide-out-up 300ms ease-in forwards;
|
|
762
|
+
}
|
|
763
|
+
.c-animate-slide-out-down {
|
|
764
|
+
animation: c-slide-out-down 300ms ease-in forwards;
|
|
765
|
+
}
|
|
766
|
+
.c-animate-slide-out-left {
|
|
767
|
+
animation: c-slide-out-left 300ms ease-in forwards;
|
|
768
|
+
}
|
|
769
|
+
.c-animate-slide-out-right {
|
|
770
|
+
animation: c-slide-out-right 300ms ease-in forwards;
|
|
771
|
+
}
|
|
261
772
|
.c-animate-scale-in {
|
|
262
773
|
animation: c-scale-in 200ms ease-out forwards;
|
|
263
774
|
}
|
|
264
775
|
.c-animate-scale-out {
|
|
265
776
|
animation: c-scale-out 200ms ease-in forwards;
|
|
266
777
|
}
|
|
778
|
+
.c-animate-scale-in-x {
|
|
779
|
+
animation: c-scale-in-x 300ms ease-out forwards;
|
|
780
|
+
}
|
|
781
|
+
.c-animate-scale-in-y {
|
|
782
|
+
animation: c-scale-in-y 300ms ease-out forwards;
|
|
783
|
+
}
|
|
784
|
+
.c-animate-zoom-in {
|
|
785
|
+
animation: c-zoom-in 300ms ease-out forwards;
|
|
786
|
+
}
|
|
787
|
+
.c-animate-zoom-out {
|
|
788
|
+
animation: c-zoom-out 300ms ease-in forwards;
|
|
789
|
+
}
|
|
790
|
+
.c-animate-flip-x {
|
|
791
|
+
animation: c-flip-x 400ms ease-out forwards;
|
|
792
|
+
}
|
|
793
|
+
.c-animate-flip-y {
|
|
794
|
+
animation: c-flip-y 400ms ease-out forwards;
|
|
795
|
+
}
|
|
796
|
+
.c-animate-rotate-in {
|
|
797
|
+
animation: c-rotate-in 400ms ease-out forwards;
|
|
798
|
+
}
|
|
799
|
+
.c-animate-rotate-out {
|
|
800
|
+
animation: c-rotate-out 400ms ease-in forwards;
|
|
801
|
+
}
|
|
267
802
|
.c-animate-wiggle {
|
|
268
803
|
animation: c-wiggle 1s ease-in-out infinite;
|
|
269
804
|
}
|
|
@@ -273,13 +808,70 @@
|
|
|
273
808
|
.c-animate-float {
|
|
274
809
|
animation: c-float 3s ease-in-out infinite;
|
|
275
810
|
}
|
|
811
|
+
.c-animate-float-x {
|
|
812
|
+
animation: c-float-x 3s ease-in-out infinite;
|
|
813
|
+
}
|
|
814
|
+
.c-animate-swing {
|
|
815
|
+
animation: c-swing 1s ease-in-out;
|
|
816
|
+
}
|
|
817
|
+
.c-animate-rubber-band {
|
|
818
|
+
animation: c-rubber-band 1s ease-in-out;
|
|
819
|
+
}
|
|
820
|
+
.c-animate-jello {
|
|
821
|
+
animation: c-jello 1s ease-in-out;
|
|
822
|
+
}
|
|
823
|
+
.c-animate-tada {
|
|
824
|
+
animation: c-tada 1s ease-in-out;
|
|
825
|
+
}
|
|
276
826
|
.c-animate-blink {
|
|
277
827
|
animation: c-blink 1s step-end infinite;
|
|
278
828
|
}
|
|
829
|
+
.c-animate-glow {
|
|
830
|
+
animation: c-glow 2s ease-in-out infinite;
|
|
831
|
+
}
|
|
832
|
+
.c-animate-glow-text {
|
|
833
|
+
animation: c-glow-text 2s ease-in-out infinite;
|
|
834
|
+
}
|
|
835
|
+
.c-animate-ripple {
|
|
836
|
+
animation: c-ripple 600ms ease-out forwards;
|
|
837
|
+
}
|
|
838
|
+
.c-animate-draw {
|
|
839
|
+
animation: c-draw 1s ease-out forwards;
|
|
840
|
+
}
|
|
841
|
+
.c-animate-morph {
|
|
842
|
+
animation: c-morph 8s ease-in-out infinite;
|
|
843
|
+
}
|
|
844
|
+
.c-animate-flip-card {
|
|
845
|
+
animation: c-flip-card 600ms ease-in-out forwards;
|
|
846
|
+
}
|
|
847
|
+
.c-animate-roll-in {
|
|
848
|
+
animation: c-roll-in 600ms ease-out forwards;
|
|
849
|
+
}
|
|
850
|
+
.c-animate-drop-in {
|
|
851
|
+
animation: c-drop-in 400ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
|
|
852
|
+
}
|
|
853
|
+
.c-animate-blur-in {
|
|
854
|
+
animation: c-blur-in 400ms ease-out forwards;
|
|
855
|
+
}
|
|
856
|
+
.c-animate-blur-out {
|
|
857
|
+
animation: c-blur-out 400ms ease-in forwards;
|
|
858
|
+
}
|
|
859
|
+
.c-animate-progress {
|
|
860
|
+
animation: c-progress 2s ease-out forwards;
|
|
861
|
+
}
|
|
279
862
|
.c-animate-none {
|
|
280
863
|
animation: none;
|
|
281
864
|
}
|
|
282
865
|
|
|
866
|
+
.c-animate-typewriter {
|
|
867
|
+
overflow: hidden;
|
|
868
|
+
white-space: nowrap;
|
|
869
|
+
border-right: 2px solid currentColor;
|
|
870
|
+
animation:
|
|
871
|
+
c-typewriter 3s steps(40) forwards,
|
|
872
|
+
c-cursor-blink 0.75s step-end infinite;
|
|
873
|
+
}
|
|
874
|
+
|
|
283
875
|
.c-animate-skeleton {
|
|
284
876
|
background: linear-gradient(
|
|
285
877
|
90deg,
|
|
@@ -291,6 +883,17 @@
|
|
|
291
883
|
animation: c-skeleton 1.5s infinite;
|
|
292
884
|
}
|
|
293
885
|
|
|
886
|
+
.c-animate-shimmer {
|
|
887
|
+
background: linear-gradient(
|
|
888
|
+
90deg,
|
|
889
|
+
transparent 0%,
|
|
890
|
+
rgba(255, 255, 255, 0.4) 50%,
|
|
891
|
+
transparent 100%
|
|
892
|
+
);
|
|
893
|
+
background-size: 1000px 100%;
|
|
894
|
+
animation: c-shimmer 2s infinite;
|
|
895
|
+
}
|
|
896
|
+
|
|
294
897
|
.c-animate-delay-75 {
|
|
295
898
|
animation-delay: 75ms;
|
|
296
899
|
}
|
|
@@ -315,6 +918,12 @@
|
|
|
315
918
|
.c-animate-delay-1000 {
|
|
316
919
|
animation-delay: 1000ms;
|
|
317
920
|
}
|
|
921
|
+
.c-animate-delay-1500 {
|
|
922
|
+
animation-delay: 1500ms;
|
|
923
|
+
}
|
|
924
|
+
.c-animate-delay-2000 {
|
|
925
|
+
animation-delay: 2000ms;
|
|
926
|
+
}
|
|
318
927
|
|
|
319
928
|
.c-animate-duration-75 {
|
|
320
929
|
animation-duration: 75ms;
|
|
@@ -343,19 +952,22 @@
|
|
|
343
952
|
.c-animate-duration-2000 {
|
|
344
953
|
animation-duration: 2000ms;
|
|
345
954
|
}
|
|
955
|
+
.c-animate-duration-3000 {
|
|
956
|
+
animation-duration: 3000ms;
|
|
957
|
+
}
|
|
346
958
|
|
|
347
959
|
.c-animate-once {
|
|
348
960
|
animation-iteration-count: 1;
|
|
349
961
|
}
|
|
350
|
-
.c-animate-
|
|
351
|
-
animation-iteration-count: infinite;
|
|
352
|
-
}
|
|
353
|
-
.c-animate-repeat-2 {
|
|
962
|
+
.c-animate-twice {
|
|
354
963
|
animation-iteration-count: 2;
|
|
355
964
|
}
|
|
356
965
|
.c-animate-repeat-3 {
|
|
357
966
|
animation-iteration-count: 3;
|
|
358
967
|
}
|
|
968
|
+
.c-animate-infinite {
|
|
969
|
+
animation-iteration-count: infinite;
|
|
970
|
+
}
|
|
359
971
|
|
|
360
972
|
.c-animate-fill-none {
|
|
361
973
|
animation-fill-mode: none;
|
|
@@ -370,6 +982,25 @@
|
|
|
370
982
|
animation-fill-mode: both;
|
|
371
983
|
}
|
|
372
984
|
|
|
985
|
+
.c-animate-ease-linear {
|
|
986
|
+
animation-timing-function: linear;
|
|
987
|
+
}
|
|
988
|
+
.c-animate-ease-in {
|
|
989
|
+
animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
990
|
+
}
|
|
991
|
+
.c-animate-ease-out {
|
|
992
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
993
|
+
}
|
|
994
|
+
.c-animate-ease-in-out {
|
|
995
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
996
|
+
}
|
|
997
|
+
.c-animate-ease-bounce {
|
|
998
|
+
animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
999
|
+
}
|
|
1000
|
+
.c-animate-ease-spring {
|
|
1001
|
+
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
1002
|
+
}
|
|
1003
|
+
|
|
373
1004
|
.c-animate-running {
|
|
374
1005
|
animation-play-state: running;
|
|
375
1006
|
}
|
|
@@ -377,16 +1008,25 @@
|
|
|
377
1008
|
animation-play-state: paused;
|
|
378
1009
|
}
|
|
379
1010
|
|
|
1011
|
+
.c-animate-direction-normal {
|
|
1012
|
+
animation-direction: normal;
|
|
1013
|
+
}
|
|
1014
|
+
.c-animate-direction-reverse {
|
|
1015
|
+
animation-direction: reverse;
|
|
1016
|
+
}
|
|
1017
|
+
.c-animate-direction-alternate {
|
|
1018
|
+
animation-direction: alternate;
|
|
1019
|
+
}
|
|
1020
|
+
.c-animate-direction-alt-rev {
|
|
1021
|
+
animation-direction: alternate-reverse;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
380
1024
|
@media (prefers-reduced-motion: reduce) {
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
.c-animate-heartbeat,
|
|
388
|
-
.c-animate-float,
|
|
389
|
-
.c-animate-skeleton {
|
|
390
|
-
animation: none;
|
|
1025
|
+
*,
|
|
1026
|
+
*::before,
|
|
1027
|
+
*::after {
|
|
1028
|
+
animation-duration: 0.01ms !important;
|
|
1029
|
+
animation-iteration-count: 1 !important;
|
|
1030
|
+
transition-duration: 0.01ms !important;
|
|
391
1031
|
}
|
|
392
1032
|
}
|