@quasar/extras 2.0.0 → 2.0.2
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 +8 -8
- package/exports/fontawesome-v7/fa-brands-400.woff2 +0 -0
- package/exports/fontawesome-v7/fa-regular-400.woff2 +0 -0
- package/exports/fontawesome-v7/fa-solid-900.woff2 +0 -0
- package/exports/fontawesome-v7/fa-v4compatibility.woff2 +0 -0
- package/exports/fontawesome-v7/fontawesome-v7.css +624 -39
- package/exports/fontawesome-v7/icons.json +17 -0
- package/exports/fontawesome-v7/index.d.ts +18 -1
- package/exports/fontawesome-v7/index.js +28 -11
- package/exports/material-symbols-outlined/icons.json +13 -3
- package/exports/material-symbols-outlined/index.d.ts +13 -3
- package/exports/material-symbols-outlined/index.js +15 -5
- package/exports/material-symbols-outlined/web-font/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsLjBuVY.woff2 +0 -0
- package/exports/material-symbols-outlined/web-font/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHeel.woff +0 -0
- package/exports/material-symbols-rounded/icons.json +13 -3
- package/exports/material-symbols-rounded/index.d.ts +13 -3
- package/exports/material-symbols-rounded/index.js +15 -5
- package/exports/material-symbols-rounded/web-font/sykg-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjzaqkNCeE.woff2 +0 -0
- package/exports/material-symbols-rounded/web-font/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIekXxE.woff +0 -0
- package/exports/material-symbols-sharp/icons.json +13 -3
- package/exports/material-symbols-sharp/index.d.ts +13 -3
- package/exports/material-symbols-sharp/index.js +15 -5
- package/exports/material-symbols-sharp/web-font/gNMVW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4aWHSSmlN.woff2 +0 -0
- package/exports/material-symbols-sharp/web-font/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLozCN.woff +0 -0
- package/package.json +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Font Awesome Free 7.
|
|
2
|
+
* Font Awesome Free 7.3.0 by @fontawesome - https://fontawesome.com
|
|
3
3
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
4
4
|
* Copyright 2026 Fonticons, Inc.
|
|
5
5
|
*/
|
|
@@ -135,6 +135,18 @@
|
|
|
135
135
|
--fa-width: 1.25em;
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
+
.fa-canvas-square {
|
|
139
|
+
padding-block: 0.125em;
|
|
140
|
+
margin-block-end: -0.125em;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.fa-canvas-roomy {
|
|
144
|
+
padding-block: 0.25em;
|
|
145
|
+
padding-inline: 0.125em;
|
|
146
|
+
margin-block-end: -0.25em;
|
|
147
|
+
box-sizing: content-box;
|
|
148
|
+
}
|
|
149
|
+
|
|
138
150
|
.fa-ul {
|
|
139
151
|
list-style-type: none;
|
|
140
152
|
margin-inline-start: var(--fa-li-margin, 2.5em);
|
|
@@ -207,7 +219,7 @@
|
|
|
207
219
|
animation-direction: var(--fa-animation-direction, normal);
|
|
208
220
|
animation-duration: var(--fa-animation-duration, 1s);
|
|
209
221
|
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
210
|
-
animation-timing-function: var(--fa-animation-timing,
|
|
222
|
+
animation-timing-function: var(--fa-animation-timing, ease-in-out);
|
|
211
223
|
}
|
|
212
224
|
|
|
213
225
|
.fa-beat-fade {
|
|
@@ -216,13 +228,22 @@
|
|
|
216
228
|
animation-direction: var(--fa-animation-direction, normal);
|
|
217
229
|
animation-duration: var(--fa-animation-duration, 1s);
|
|
218
230
|
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
219
|
-
animation-timing-function: var(--fa-animation-timing,
|
|
231
|
+
animation-timing-function: var(--fa-animation-timing, ease-in-out);
|
|
220
232
|
}
|
|
221
233
|
|
|
222
234
|
.fa-flip {
|
|
223
235
|
animation-name: fa-flip;
|
|
224
236
|
animation-delay: var(--fa-animation-delay, 0s);
|
|
225
237
|
animation-direction: var(--fa-animation-direction, normal);
|
|
238
|
+
animation-duration: var(--fa-animation-duration, 1.5s);
|
|
239
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
240
|
+
animation-timing-function: var(--fa-animation-timing, ease-in-out);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.fa-flip-360 {
|
|
244
|
+
animation-name: fa-flip-360;
|
|
245
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
246
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
226
247
|
animation-duration: var(--fa-animation-duration, 1s);
|
|
227
248
|
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
228
249
|
animation-timing-function: var(--fa-animation-timing, ease-in-out);
|
|
@@ -232,9 +253,9 @@
|
|
|
232
253
|
animation-name: fa-shake;
|
|
233
254
|
animation-delay: var(--fa-animation-delay, 0s);
|
|
234
255
|
animation-direction: var(--fa-animation-direction, normal);
|
|
235
|
-
animation-duration: var(--fa-animation-duration,
|
|
256
|
+
animation-duration: var(--fa-animation-duration, 0.75s);
|
|
236
257
|
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
237
|
-
animation-timing-function: var(--fa-animation-timing,
|
|
258
|
+
animation-timing-function: var(--fa-animation-timing, ease-in-out);
|
|
238
259
|
}
|
|
239
260
|
|
|
240
261
|
.fa-spin {
|
|
@@ -259,97 +280,272 @@
|
|
|
259
280
|
animation-timing-function: var(--fa-animation-timing, steps(8));
|
|
260
281
|
}
|
|
261
282
|
|
|
283
|
+
.fa-spin-snap {
|
|
284
|
+
animation-name: fa-spin-snap;
|
|
285
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
286
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
287
|
+
animation-duration: var(--fa-animation-duration, 3s);
|
|
288
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
289
|
+
animation-timing-function: var(--fa-animation-timing, linear);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.fa-spin-snap-4 {
|
|
293
|
+
animation-name: fa-spin-snap-4;
|
|
294
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
295
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
296
|
+
animation-duration: var(--fa-animation-duration, 2.4s);
|
|
297
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
298
|
+
animation-timing-function: var(--fa-animation-timing, linear);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.fa-spin-snap-8 {
|
|
302
|
+
animation-name: fa-spin-snap-8;
|
|
303
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
304
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
305
|
+
animation-duration: var(--fa-animation-duration, 4s);
|
|
306
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
307
|
+
animation-timing-function: var(--fa-animation-timing, linear);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.fa-buzz {
|
|
311
|
+
animation-name: fa-buzz;
|
|
312
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
313
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
314
|
+
animation-duration: var(--fa-animation-duration, 0.6s);
|
|
315
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
316
|
+
animation-timing-function: var(--fa-animation-timing, linear);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.fa-wag {
|
|
320
|
+
animation-name: fa-wag;
|
|
321
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
322
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
323
|
+
animation-duration: var(--fa-animation-duration, 0.9s);
|
|
324
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
325
|
+
animation-timing-function: var(--fa-animation-timing, ease-out);
|
|
326
|
+
transform-origin: bottom center;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.fa-float {
|
|
330
|
+
animation-name: fa-float;
|
|
331
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
332
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
333
|
+
animation-duration: var(--fa-animation-duration, 3s);
|
|
334
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
335
|
+
animation-timing-function: var(--fa-animation-timing, ease-in-out);
|
|
336
|
+
will-change: transform;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.fa-swing {
|
|
340
|
+
animation-name: fa-swing;
|
|
341
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
342
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
343
|
+
animation-duration: var(--fa-animation-duration, 1.2s);
|
|
344
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
345
|
+
animation-timing-function: var(--fa-animation-timing, ease-out);
|
|
346
|
+
transform-origin: top center;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.fa-jello {
|
|
350
|
+
animation-name: fa-jello;
|
|
351
|
+
animation-delay: var(--fa-animation-delay, 0s);
|
|
352
|
+
animation-direction: var(--fa-animation-direction, normal);
|
|
353
|
+
animation-duration: var(--fa-animation-duration, 0.9s);
|
|
354
|
+
animation-iteration-count: var(--fa-animation-iteration-count, infinite);
|
|
355
|
+
animation-timing-function: var(--fa-animation-timing, ease-out);
|
|
356
|
+
}
|
|
357
|
+
|
|
262
358
|
@media (prefers-reduced-motion: reduce) {
|
|
263
359
|
.fa-beat,
|
|
264
360
|
.fa-bounce,
|
|
265
361
|
.fa-fade,
|
|
266
362
|
.fa-beat-fade,
|
|
267
363
|
.fa-flip,
|
|
364
|
+
.fa-flip-360,
|
|
268
365
|
.fa-pulse,
|
|
269
366
|
.fa-shake,
|
|
270
367
|
.fa-spin,
|
|
271
|
-
.fa-spin-pulse
|
|
368
|
+
.fa-spin-pulse,
|
|
369
|
+
.fa-buzz,
|
|
370
|
+
.fa-float,
|
|
371
|
+
.fa-jello,
|
|
372
|
+
.fa-spin-snap,
|
|
373
|
+
.fa-spin-snap-4,
|
|
374
|
+
.fa-spin-snap-8,
|
|
375
|
+
.fa-swing,
|
|
376
|
+
.fa-wag {
|
|
272
377
|
animation: none !important;
|
|
273
378
|
transition: none !important;
|
|
274
379
|
}
|
|
275
380
|
}
|
|
276
381
|
@keyframes fa-beat {
|
|
277
|
-
0
|
|
382
|
+
0% {
|
|
278
383
|
transform: scale(1);
|
|
279
384
|
}
|
|
385
|
+
25% {
|
|
386
|
+
transform: scale(calc(1.25 * var(--fa-beat-scale, 1.25)));
|
|
387
|
+
}
|
|
280
388
|
45% {
|
|
281
|
-
transform: scale(var(--fa-beat-scale, 1.
|
|
389
|
+
transform: scale(calc(1.22 * var(--fa-beat-scale, 1.22)));
|
|
390
|
+
}
|
|
391
|
+
65% {
|
|
392
|
+
transform: scale(calc(1.25 * var(--fa-beat-scale, 1.25)));
|
|
393
|
+
}
|
|
394
|
+
90% {
|
|
395
|
+
transform: scale(1);
|
|
282
396
|
}
|
|
283
397
|
}
|
|
284
398
|
@keyframes fa-bounce {
|
|
285
399
|
0% {
|
|
286
400
|
transform: scale(1, 1) translateY(0);
|
|
401
|
+
animation-timing-function: var(--fa-animation-timing);
|
|
287
402
|
}
|
|
288
|
-
|
|
289
|
-
transform: scale(var(--fa-bounce-start-scale-x, 1.
|
|
403
|
+
14% {
|
|
404
|
+
transform: scale(var(--fa-bounce-start-scale-x, 1.06), var(--fa-bounce-start-scale-y, 0.94)) translateY(var(--fa-bounce-anticipation, 3px));
|
|
405
|
+
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
|
|
290
406
|
}
|
|
291
|
-
|
|
292
|
-
transform: scale(var(--fa-bounce-jump-scale-x, 0.
|
|
407
|
+
32% {
|
|
408
|
+
transform: scale(var(--fa-bounce-jump-scale-x, 0.94), var(--fa-bounce-jump-scale-y, 1.12)) translateY(calc(-1 * var(--fa-bounce-height, 0.5em)));
|
|
409
|
+
animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
|
|
293
410
|
}
|
|
294
|
-
|
|
295
|
-
transform: scale(
|
|
411
|
+
52% {
|
|
412
|
+
transform: scale(1, 1) translateY(calc(-1 * var(--fa-bounce-height, 0.5em) * 1.1));
|
|
413
|
+
animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
|
|
296
414
|
}
|
|
297
|
-
|
|
298
|
-
transform: scale(
|
|
415
|
+
70% {
|
|
416
|
+
transform: scale(var(--fa-bounce-land-scale-x, 1.06), var(--fa-bounce-land-scale-y, 0.92)) translateY(0);
|
|
417
|
+
animation-timing-function: cubic-bezier(0.33, 0.33, 0.66, 1);
|
|
299
418
|
}
|
|
300
|
-
|
|
301
|
-
transform: scale(
|
|
419
|
+
85% {
|
|
420
|
+
transform: scale(0.98, 1.04) translateY(calc(-2px * var(--fa-bounce-rebound, 1)));
|
|
421
|
+
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);
|
|
302
422
|
}
|
|
303
423
|
100% {
|
|
304
424
|
transform: scale(1, 1) translateY(0);
|
|
305
425
|
}
|
|
306
426
|
}
|
|
307
427
|
@keyframes fa-fade {
|
|
308
|
-
|
|
428
|
+
0% {
|
|
429
|
+
opacity: 1;
|
|
430
|
+
transform: scale(1);
|
|
431
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);
|
|
432
|
+
}
|
|
433
|
+
40% {
|
|
309
434
|
opacity: var(--fa-fade-opacity, 0.4);
|
|
435
|
+
transform: scale(0.98);
|
|
436
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
437
|
+
}
|
|
438
|
+
100% {
|
|
439
|
+
opacity: 1;
|
|
440
|
+
transform: scale(1);
|
|
310
441
|
}
|
|
311
442
|
}
|
|
312
443
|
@keyframes fa-beat-fade {
|
|
313
|
-
0
|
|
444
|
+
0% {
|
|
314
445
|
opacity: var(--fa-beat-fade-opacity, 0.4);
|
|
315
446
|
transform: scale(1);
|
|
447
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);
|
|
316
448
|
}
|
|
317
|
-
|
|
449
|
+
25% {
|
|
450
|
+
opacity: calc(var(--fa-beat-fade-opacity, 0.4) + 0.4);
|
|
451
|
+
transform: scale(var(--fa-beat-fade-scale, 1.28));
|
|
452
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
453
|
+
}
|
|
454
|
+
45% {
|
|
318
455
|
opacity: 1;
|
|
319
|
-
transform: scale(var(--fa-beat-fade-scale, 1.
|
|
456
|
+
transform: scale(var(--fa-beat-fade-scale, 1.25));
|
|
457
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
458
|
+
}
|
|
459
|
+
65% {
|
|
460
|
+
opacity: calc(var(--fa-beat-fade-opacity, 0.4) + 0.4);
|
|
461
|
+
transform: scale(var(--fa-beat-fade-scale, 1.28));
|
|
462
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
463
|
+
}
|
|
464
|
+
100% {
|
|
465
|
+
opacity: var(--fa-beat-fade-opacity, 0.4);
|
|
466
|
+
transform: scale(1);
|
|
320
467
|
}
|
|
321
468
|
}
|
|
322
469
|
@keyframes fa-flip {
|
|
470
|
+
0% {
|
|
471
|
+
transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);
|
|
472
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);
|
|
473
|
+
}
|
|
474
|
+
8% {
|
|
475
|
+
transform: perspective(2em) scale(var(--fa-flip-anticipation-scale, 0.95)) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);
|
|
476
|
+
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
|
|
477
|
+
}
|
|
478
|
+
35% {
|
|
479
|
+
transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.6));
|
|
480
|
+
animation-timing-function: linear;
|
|
481
|
+
}
|
|
482
|
+
65% {
|
|
483
|
+
transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.5));
|
|
484
|
+
animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
|
|
485
|
+
}
|
|
486
|
+
92% {
|
|
487
|
+
transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * var(--fa-flip-overshoot, 1.04)));
|
|
488
|
+
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);
|
|
489
|
+
}
|
|
490
|
+
100% {
|
|
491
|
+
transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -360deg));
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
@keyframes fa-flip-360 {
|
|
495
|
+
0% {
|
|
496
|
+
transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);
|
|
497
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);
|
|
498
|
+
}
|
|
499
|
+
8% {
|
|
500
|
+
transform: perspective(2em) scale(var(--fa-flip-anticipation-scale, 0.95)) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);
|
|
501
|
+
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
|
|
502
|
+
}
|
|
323
503
|
50% {
|
|
324
|
-
transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -
|
|
504
|
+
transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.6));
|
|
505
|
+
animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
|
|
506
|
+
}
|
|
507
|
+
80% {
|
|
508
|
+
transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * var(--fa-flip-overshoot, 1.04)));
|
|
509
|
+
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);
|
|
510
|
+
}
|
|
511
|
+
100% {
|
|
512
|
+
transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -360deg));
|
|
325
513
|
}
|
|
326
514
|
}
|
|
327
515
|
@keyframes fa-shake {
|
|
328
516
|
0% {
|
|
329
|
-
transform: rotate(
|
|
517
|
+
transform: rotate(0deg);
|
|
518
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
|
|
330
519
|
}
|
|
331
|
-
|
|
332
|
-
transform: rotate(
|
|
520
|
+
8% {
|
|
521
|
+
transform: rotate(35deg) translateX(1px);
|
|
522
|
+
animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
|
|
333
523
|
}
|
|
334
|
-
|
|
335
|
-
transform: rotate(-
|
|
524
|
+
20% {
|
|
525
|
+
transform: rotate(-22deg) translateX(-1px);
|
|
526
|
+
animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
|
|
336
527
|
}
|
|
337
|
-
|
|
338
|
-
transform: rotate(
|
|
528
|
+
35% {
|
|
529
|
+
transform: rotate(15deg) translateX(1px);
|
|
530
|
+
animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
|
|
339
531
|
}
|
|
340
|
-
|
|
341
|
-
transform: rotate(-
|
|
532
|
+
50% {
|
|
533
|
+
transform: rotate(-9deg);
|
|
534
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
342
535
|
}
|
|
343
|
-
|
|
344
|
-
transform: rotate(
|
|
536
|
+
65% {
|
|
537
|
+
transform: rotate(5deg);
|
|
538
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
345
539
|
}
|
|
346
|
-
|
|
347
|
-
transform: rotate(-
|
|
540
|
+
78% {
|
|
541
|
+
transform: rotate(-3deg);
|
|
542
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
348
543
|
}
|
|
349
|
-
|
|
350
|
-
transform: rotate(
|
|
544
|
+
90% {
|
|
545
|
+
transform: rotate(1deg);
|
|
546
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
351
547
|
}
|
|
352
|
-
|
|
548
|
+
100% {
|
|
353
549
|
transform: rotate(0deg);
|
|
354
550
|
}
|
|
355
551
|
}
|
|
@@ -361,6 +557,327 @@
|
|
|
361
557
|
transform: rotate(360deg);
|
|
362
558
|
}
|
|
363
559
|
}
|
|
560
|
+
@keyframes fa-spin-snap {
|
|
561
|
+
0% {
|
|
562
|
+
transform: rotate(0deg);
|
|
563
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
564
|
+
}
|
|
565
|
+
12% {
|
|
566
|
+
transform: rotate(60deg);
|
|
567
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
568
|
+
}
|
|
569
|
+
16.67% {
|
|
570
|
+
transform: rotate(60deg);
|
|
571
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
572
|
+
}
|
|
573
|
+
28.67% {
|
|
574
|
+
transform: rotate(120deg);
|
|
575
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
576
|
+
}
|
|
577
|
+
33.33% {
|
|
578
|
+
transform: rotate(120deg);
|
|
579
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
580
|
+
}
|
|
581
|
+
45.33% {
|
|
582
|
+
transform: rotate(180deg);
|
|
583
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
584
|
+
}
|
|
585
|
+
50% {
|
|
586
|
+
transform: rotate(180deg);
|
|
587
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
588
|
+
}
|
|
589
|
+
62% {
|
|
590
|
+
transform: rotate(240deg);
|
|
591
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
592
|
+
}
|
|
593
|
+
66.67% {
|
|
594
|
+
transform: rotate(240deg);
|
|
595
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
596
|
+
}
|
|
597
|
+
78.67% {
|
|
598
|
+
transform: rotate(300deg);
|
|
599
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
600
|
+
}
|
|
601
|
+
83.33% {
|
|
602
|
+
transform: rotate(300deg);
|
|
603
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
604
|
+
}
|
|
605
|
+
95.33% {
|
|
606
|
+
transform: rotate(360deg);
|
|
607
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
608
|
+
}
|
|
609
|
+
100% {
|
|
610
|
+
transform: rotate(360deg);
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
@keyframes fa-spin-snap-4 {
|
|
614
|
+
0% {
|
|
615
|
+
transform: rotate(0deg);
|
|
616
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
617
|
+
}
|
|
618
|
+
15% {
|
|
619
|
+
transform: rotate(90deg);
|
|
620
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
621
|
+
}
|
|
622
|
+
25% {
|
|
623
|
+
transform: rotate(90deg);
|
|
624
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
625
|
+
}
|
|
626
|
+
40% {
|
|
627
|
+
transform: rotate(180deg);
|
|
628
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
629
|
+
}
|
|
630
|
+
50% {
|
|
631
|
+
transform: rotate(180deg);
|
|
632
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
633
|
+
}
|
|
634
|
+
65% {
|
|
635
|
+
transform: rotate(270deg);
|
|
636
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
637
|
+
}
|
|
638
|
+
75% {
|
|
639
|
+
transform: rotate(270deg);
|
|
640
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
641
|
+
}
|
|
642
|
+
90% {
|
|
643
|
+
transform: rotate(360deg);
|
|
644
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
645
|
+
}
|
|
646
|
+
100% {
|
|
647
|
+
transform: rotate(360deg);
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
@keyframes fa-spin-snap-8 {
|
|
651
|
+
0% {
|
|
652
|
+
transform: rotate(0deg);
|
|
653
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
654
|
+
}
|
|
655
|
+
9% {
|
|
656
|
+
transform: rotate(45deg);
|
|
657
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
658
|
+
}
|
|
659
|
+
12.5% {
|
|
660
|
+
transform: rotate(45deg);
|
|
661
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
662
|
+
}
|
|
663
|
+
21.5% {
|
|
664
|
+
transform: rotate(90deg);
|
|
665
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
666
|
+
}
|
|
667
|
+
25% {
|
|
668
|
+
transform: rotate(90deg);
|
|
669
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
670
|
+
}
|
|
671
|
+
34% {
|
|
672
|
+
transform: rotate(135deg);
|
|
673
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
674
|
+
}
|
|
675
|
+
37.5% {
|
|
676
|
+
transform: rotate(135deg);
|
|
677
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
678
|
+
}
|
|
679
|
+
46.5% {
|
|
680
|
+
transform: rotate(180deg);
|
|
681
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
682
|
+
}
|
|
683
|
+
50% {
|
|
684
|
+
transform: rotate(180deg);
|
|
685
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
686
|
+
}
|
|
687
|
+
59% {
|
|
688
|
+
transform: rotate(225deg);
|
|
689
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
690
|
+
}
|
|
691
|
+
62.5% {
|
|
692
|
+
transform: rotate(225deg);
|
|
693
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
694
|
+
}
|
|
695
|
+
71.5% {
|
|
696
|
+
transform: rotate(270deg);
|
|
697
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
698
|
+
}
|
|
699
|
+
75% {
|
|
700
|
+
transform: rotate(270deg);
|
|
701
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
702
|
+
}
|
|
703
|
+
84% {
|
|
704
|
+
transform: rotate(315deg);
|
|
705
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
706
|
+
}
|
|
707
|
+
87.5% {
|
|
708
|
+
transform: rotate(315deg);
|
|
709
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
710
|
+
}
|
|
711
|
+
96.5% {
|
|
712
|
+
transform: rotate(360deg);
|
|
713
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
714
|
+
}
|
|
715
|
+
100% {
|
|
716
|
+
transform: rotate(360deg);
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
@keyframes fa-buzz {
|
|
720
|
+
0% {
|
|
721
|
+
transform: translateX(0) rotate(0deg);
|
|
722
|
+
animation-timing-function: cubic-bezier(0.1, 0, 0.9, 1);
|
|
723
|
+
}
|
|
724
|
+
5% {
|
|
725
|
+
transform: translateX(var(--fa-buzz-distance, 4px)) rotate(0.5deg);
|
|
726
|
+
}
|
|
727
|
+
10% {
|
|
728
|
+
transform: translateX(calc(-1 * var(--fa-buzz-distance, 4px))) rotate(-0.5deg);
|
|
729
|
+
}
|
|
730
|
+
15% {
|
|
731
|
+
transform: translateX(var(--fa-buzz-distance, 4px)) rotate(0.3deg);
|
|
732
|
+
}
|
|
733
|
+
20% {
|
|
734
|
+
transform: translateX(calc(-1 * var(--fa-buzz-distance, 4px))) rotate(-0.3deg);
|
|
735
|
+
}
|
|
736
|
+
25% {
|
|
737
|
+
transform: translateX(calc(var(--fa-buzz-distance, 4px) * 0.7)) rotate(0.2deg);
|
|
738
|
+
}
|
|
739
|
+
30% {
|
|
740
|
+
transform: translateX(calc(-1 * var(--fa-buzz-distance, 4px) * 0.7)) rotate(-0.2deg);
|
|
741
|
+
}
|
|
742
|
+
35% {
|
|
743
|
+
transform: translateX(calc(var(--fa-buzz-distance, 4px) * 0.4)) rotate(0.1deg);
|
|
744
|
+
}
|
|
745
|
+
40% {
|
|
746
|
+
transform: translateX(0) rotate(0deg);
|
|
747
|
+
}
|
|
748
|
+
100% {
|
|
749
|
+
transform: translateX(0) rotate(0deg);
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
@keyframes fa-wag {
|
|
753
|
+
0% {
|
|
754
|
+
transform: rotate(0deg);
|
|
755
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);
|
|
756
|
+
}
|
|
757
|
+
12% {
|
|
758
|
+
transform: rotate(var(--fa-wag-angle, 12deg));
|
|
759
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
760
|
+
}
|
|
761
|
+
24% {
|
|
762
|
+
transform: rotate(2deg);
|
|
763
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);
|
|
764
|
+
}
|
|
765
|
+
36% {
|
|
766
|
+
transform: rotate(calc(var(--fa-wag-angle, 12deg) * 0.85));
|
|
767
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
768
|
+
}
|
|
769
|
+
48% {
|
|
770
|
+
transform: rotate(1deg);
|
|
771
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);
|
|
772
|
+
}
|
|
773
|
+
58% {
|
|
774
|
+
transform: rotate(calc(var(--fa-wag-angle, 12deg) * 0.6));
|
|
775
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
776
|
+
}
|
|
777
|
+
68% {
|
|
778
|
+
transform: rotate(0deg);
|
|
779
|
+
}
|
|
780
|
+
100% {
|
|
781
|
+
transform: rotate(0deg);
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
@keyframes fa-float {
|
|
785
|
+
0% {
|
|
786
|
+
transform: translateY(0) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));
|
|
787
|
+
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
|
|
788
|
+
}
|
|
789
|
+
15% {
|
|
790
|
+
transform: translateY(calc(-0.4 * var(--fa-float-height, 6px))) translateX(var(--fa-float-drift, 1px)) rotate(var(--fa-float-tilt, 1deg)) scale(1, 1);
|
|
791
|
+
animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
|
|
792
|
+
}
|
|
793
|
+
35% {
|
|
794
|
+
transform: translateY(calc(-1 * var(--fa-float-height, 6px))) translateX(0) rotate(0deg) scale(var(--fa-float-stretch-x, 0.98), var(--fa-float-stretch-y, 1.03));
|
|
795
|
+
animation-timing-function: cubic-bezier(0.5, 0, 0.5, 0);
|
|
796
|
+
}
|
|
797
|
+
50% {
|
|
798
|
+
transform: translateY(calc(-0.92 * var(--fa-float-height, 6px))) translateX(calc(-0.5 * var(--fa-float-drift, 1px))) rotate(calc(-0.5 * var(--fa-float-tilt, 1deg))) scale(0.995, 1.01);
|
|
799
|
+
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);
|
|
800
|
+
}
|
|
801
|
+
70% {
|
|
802
|
+
transform: translateY(calc(-0.3 * var(--fa-float-height, 6px))) translateX(calc(-1 * var(--fa-float-drift, 1px))) rotate(calc(-1 * var(--fa-float-tilt, 1deg))) scale(1, 1);
|
|
803
|
+
animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);
|
|
804
|
+
}
|
|
805
|
+
90% {
|
|
806
|
+
transform: translateY(calc(0.05 * var(--fa-float-height, 6px))) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));
|
|
807
|
+
animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);
|
|
808
|
+
}
|
|
809
|
+
100% {
|
|
810
|
+
transform: translateY(0) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
@keyframes fa-swing {
|
|
814
|
+
0% {
|
|
815
|
+
transform: rotate(0deg);
|
|
816
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
|
|
817
|
+
}
|
|
818
|
+
8% {
|
|
819
|
+
transform: rotate(var(--fa-swing-angle, 22deg));
|
|
820
|
+
animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
|
|
821
|
+
}
|
|
822
|
+
18% {
|
|
823
|
+
transform: rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.85));
|
|
824
|
+
animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
|
|
825
|
+
}
|
|
826
|
+
28% {
|
|
827
|
+
transform: rotate(calc(var(--fa-swing-angle, 22deg) * 0.65));
|
|
828
|
+
animation-timing-function: cubic-bezier(0.35, 0, 0.65, 1);
|
|
829
|
+
}
|
|
830
|
+
38% {
|
|
831
|
+
transform: rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.45));
|
|
832
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
833
|
+
}
|
|
834
|
+
48% {
|
|
835
|
+
transform: rotate(calc(var(--fa-swing-angle, 22deg) * 0.25));
|
|
836
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
837
|
+
}
|
|
838
|
+
56% {
|
|
839
|
+
transform: rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.1));
|
|
840
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
841
|
+
}
|
|
842
|
+
64% {
|
|
843
|
+
transform: rotate(0deg);
|
|
844
|
+
}
|
|
845
|
+
100% {
|
|
846
|
+
transform: rotate(0deg);
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
@keyframes fa-jello {
|
|
850
|
+
0% {
|
|
851
|
+
transform: scale(1, 1);
|
|
852
|
+
animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
|
|
853
|
+
}
|
|
854
|
+
12% {
|
|
855
|
+
transform: scale(var(--fa-jello-scale-x, 1.15), calc(2 - var(--fa-jello-scale-x, 1.15)));
|
|
856
|
+
animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
|
|
857
|
+
}
|
|
858
|
+
24% {
|
|
859
|
+
transform: scale(calc(2 - var(--fa-jello-scale-y, 1.12)), var(--fa-jello-scale-y, 1.12));
|
|
860
|
+
animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
|
|
861
|
+
}
|
|
862
|
+
36% {
|
|
863
|
+
transform: scale(calc(1 + (var(--fa-jello-scale-x, 1.15) - 1) * 0.5), calc(2 - (1 + (var(--fa-jello-scale-x, 1.15) - 1) * 0.5)));
|
|
864
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
865
|
+
}
|
|
866
|
+
48% {
|
|
867
|
+
transform: scale(calc(2 - (1 + (var(--fa-jello-scale-y, 1.12) - 1) * 0.3)), calc(1 + (var(--fa-jello-scale-y, 1.12) - 1) * 0.3));
|
|
868
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
|
|
869
|
+
}
|
|
870
|
+
58% {
|
|
871
|
+
transform: scale(1.02, 0.98);
|
|
872
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
873
|
+
}
|
|
874
|
+
68% {
|
|
875
|
+
transform: scale(1, 1);
|
|
876
|
+
}
|
|
877
|
+
100% {
|
|
878
|
+
transform: scale(1, 1);
|
|
879
|
+
}
|
|
880
|
+
}
|
|
364
881
|
.fa-rotate-90 {
|
|
365
882
|
transform: rotate(90deg);
|
|
366
883
|
}
|
|
@@ -6984,6 +7501,10 @@
|
|
|
6984
7501
|
--fa: "\f5bb";
|
|
6985
7502
|
}
|
|
6986
7503
|
|
|
7504
|
+
.fa-lotus {
|
|
7505
|
+
--fa: "\f5bb";
|
|
7506
|
+
}
|
|
7507
|
+
|
|
6987
7508
|
.fa-splotch {
|
|
6988
7509
|
--fa: "\f5bc";
|
|
6989
7510
|
}
|
|
@@ -8974,6 +9495,70 @@
|
|
|
8974
9495
|
--fa: "\e8ab";
|
|
8975
9496
|
}
|
|
8976
9497
|
|
|
9498
|
+
.fa-build-awesome {
|
|
9499
|
+
--fa: "\e8ac";
|
|
9500
|
+
}
|
|
9501
|
+
|
|
9502
|
+
.fa-codeberg {
|
|
9503
|
+
--fa: "\e8ad";
|
|
9504
|
+
}
|
|
9505
|
+
|
|
9506
|
+
.fa-devpost {
|
|
9507
|
+
--fa: "\e8ae";
|
|
9508
|
+
}
|
|
9509
|
+
|
|
9510
|
+
.fa-internet-archive {
|
|
9511
|
+
--fa: "\e8b1";
|
|
9512
|
+
}
|
|
9513
|
+
|
|
9514
|
+
.fa-lets-encrypt {
|
|
9515
|
+
--fa: "\e8b2";
|
|
9516
|
+
}
|
|
9517
|
+
|
|
9518
|
+
.fa-matrix {
|
|
9519
|
+
--fa: "\e8b3";
|
|
9520
|
+
}
|
|
9521
|
+
|
|
9522
|
+
.fa-mattermost {
|
|
9523
|
+
--fa: "\e8b4";
|
|
9524
|
+
}
|
|
9525
|
+
|
|
9526
|
+
.fa-nextcloud {
|
|
9527
|
+
--fa: "\e8b5";
|
|
9528
|
+
}
|
|
9529
|
+
|
|
9530
|
+
.fa-roblox-creator-studio {
|
|
9531
|
+
--fa: "\e8b6";
|
|
9532
|
+
}
|
|
9533
|
+
|
|
9534
|
+
.fa-square-build-awesome-stroke {
|
|
9535
|
+
--fa: "\e8b7";
|
|
9536
|
+
}
|
|
9537
|
+
|
|
9538
|
+
.fa-substack {
|
|
9539
|
+
--fa: "\e8b8";
|
|
9540
|
+
}
|
|
9541
|
+
|
|
9542
|
+
.fa-tesla {
|
|
9543
|
+
--fa: "\e8b9";
|
|
9544
|
+
}
|
|
9545
|
+
|
|
9546
|
+
.fa-xrp {
|
|
9547
|
+
--fa: "\e8ba";
|
|
9548
|
+
}
|
|
9549
|
+
|
|
9550
|
+
.fa-xrpl {
|
|
9551
|
+
--fa: "\e8bb";
|
|
9552
|
+
}
|
|
9553
|
+
|
|
9554
|
+
.fa-youtube-shorts {
|
|
9555
|
+
--fa: "\e8bc";
|
|
9556
|
+
}
|
|
9557
|
+
|
|
9558
|
+
.fa-ror {
|
|
9559
|
+
--fa: "\e8bd";
|
|
9560
|
+
}
|
|
9561
|
+
|
|
8977
9562
|
.fa-square-twitter {
|
|
8978
9563
|
--fa: "\f081";
|
|
8979
9564
|
}
|