@mdsfe/mds-ui 0.4.0-rc.2 → 0.4.0-rc.3

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.
Files changed (63) hide show
  1. package/dist/badge.js +2 -2
  2. package/dist/drawer.js +2 -2
  3. package/dist/mds-ui.min.js +2 -2
  4. package/dist/notification.js +2 -2
  5. package/dist/style/affix.css +1 -10
  6. package/dist/style/alert.css +1 -138
  7. package/dist/style/anchor.css +1 -58
  8. package/dist/style/avatar.css +1 -73
  9. package/dist/style/backtop.css +1 -34
  10. package/dist/style/badge.css +1 -141
  11. package/dist/style/bordershadow.css +1 -42
  12. package/dist/style/breadcrumb.css +1 -37
  13. package/dist/style/button.css +1 -2172
  14. package/dist/style/card.css +1 -156
  15. package/dist/style/carousel.css +1 -217
  16. package/dist/style/cascader.css +1 -214
  17. package/dist/style/cascaderpanel.css +1 -122
  18. package/dist/style/checkbox.css +1 -186
  19. package/dist/style/col.css +1 -2607
  20. package/dist/style/collapse.css +1 -79
  21. package/dist/style/color.css +1 -622
  22. package/dist/style/datepicker.css +1 -542
  23. package/dist/style/divider.css +1 -47
  24. package/dist/style/drawer.css +1 -2465
  25. package/dist/style/dropdown.css +1 -274
  26. package/dist/style/empty.css +1 -49
  27. package/dist/style/font.css +1 -45
  28. package/dist/style/form.css +1 -148
  29. package/dist/style/icon.css +1 -25
  30. package/dist/style/input.css +1 -760
  31. package/dist/style/inputnumber.css +1 -314
  32. package/dist/style/layout.css +1 -58
  33. package/dist/style/list.css +1 -141
  34. package/dist/style/loading.css +1 -2329
  35. package/dist/style/menu.css +1 -658
  36. package/dist/style/message.css +1 -191
  37. package/dist/style/modal.css +1 -123
  38. package/dist/style/notification.css +1 -192
  39. package/dist/style/pagination.css +1 -1190
  40. package/dist/style/popconfirm.css +1 -65
  41. package/dist/style/popover.css +1 -138
  42. package/dist/style/progress.css +1 -179
  43. package/dist/style/radio.css +1 -255
  44. package/dist/style/rate.css +1 -81
  45. package/dist/style/row.css +1 -2607
  46. package/dist/style/select.css +1 -221
  47. package/dist/style/slider.css +1 -80
  48. package/dist/style/slottable.css +1 -296
  49. package/dist/style/steps.css +1 -586
  50. package/dist/style/switch.css +1 -110
  51. package/dist/style/table.css +1 -2778
  52. package/dist/style/tabs.css +1 -518
  53. package/dist/style/tag.css +1 -421
  54. package/dist/style/text.css +1 -122
  55. package/dist/style/timeline.css +1 -88
  56. package/dist/style/timepicker.css +1 -393
  57. package/dist/style/tooltip.css +1 -161
  58. package/dist/style/transfer.css +1 -206
  59. package/dist/style/transition.css +1 -1413
  60. package/dist/style/tree.css +1 -84
  61. package/dist/style/typography.css +1 -126
  62. package/dist/style/upload.css +1 -320
  63. package/package.json +1 -1
@@ -1,2465 +1 @@
1
- /**
2
- *
3
- * All animations must live in their own file
4
- * in the animations directory and be included
5
- * here.
6
- *
7
- */
8
- /**
9
- * Styles shared by multiple animations
10
- */
11
- /**
12
- * Dots
13
- */
14
- @-webkit-keyframes scale {
15
- 0% {
16
- -webkit-transform: scale(1);
17
- transform: scale(1);
18
- opacity: 1;
19
- }
20
- 45% {
21
- -webkit-transform: scale(0.1);
22
- transform: scale(0.1);
23
- opacity: 0.7;
24
- }
25
- 80% {
26
- -webkit-transform: scale(1);
27
- transform: scale(1);
28
- opacity: 1;
29
- }
30
- }
31
- @keyframes scale {
32
- 0% {
33
- -webkit-transform: scale(1);
34
- transform: scale(1);
35
- opacity: 1;
36
- }
37
- 45% {
38
- -webkit-transform: scale(0.1);
39
- transform: scale(0.1);
40
- opacity: 0.7;
41
- }
42
- 80% {
43
- -webkit-transform: scale(1);
44
- transform: scale(1);
45
- opacity: 1;
46
- }
47
- }
48
- .ball-pulse > div:nth-child(0) {
49
- -webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
50
- animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
51
- }
52
- .ball-pulse > div:nth-child(1) {
53
- -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
54
- animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
55
- }
56
- .ball-pulse > div:nth-child(2) {
57
- -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
58
- animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
59
- }
60
- .ball-pulse > div:nth-child(3) {
61
- -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
62
- animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
63
- }
64
- .ball-pulse > div {
65
- background-color: #fff;
66
- width: 15px;
67
- height: 15px;
68
- border-radius: 100%;
69
- margin: 2px;
70
- -webkit-animation-fill-mode: both;
71
- animation-fill-mode: both;
72
- display: inline-block;
73
- }
74
- @-webkit-keyframes ball-pulse-sync {
75
- 33% {
76
- -webkit-transform: translateY(10px);
77
- transform: translateY(10px);
78
- }
79
- 66% {
80
- -webkit-transform: translateY(-10px);
81
- transform: translateY(-10px);
82
- }
83
- 100% {
84
- -webkit-transform: translateY(0);
85
- transform: translateY(0);
86
- }
87
- }
88
- @keyframes ball-pulse-sync {
89
- 33% {
90
- -webkit-transform: translateY(10px);
91
- transform: translateY(10px);
92
- }
93
- 66% {
94
- -webkit-transform: translateY(-10px);
95
- transform: translateY(-10px);
96
- }
97
- 100% {
98
- -webkit-transform: translateY(0);
99
- transform: translateY(0);
100
- }
101
- }
102
- .ball-pulse-sync > div:nth-child(0) {
103
- -webkit-animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
104
- animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
105
- }
106
- .ball-pulse-sync > div:nth-child(1) {
107
- -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
108
- animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
109
- }
110
- .ball-pulse-sync > div:nth-child(2) {
111
- -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
112
- animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
113
- }
114
- .ball-pulse-sync > div:nth-child(3) {
115
- -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
116
- animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
117
- }
118
- .ball-pulse-sync > div {
119
- background-color: #fff;
120
- width: 15px;
121
- height: 15px;
122
- border-radius: 100%;
123
- margin: 2px;
124
- -webkit-animation-fill-mode: both;
125
- animation-fill-mode: both;
126
- display: inline-block;
127
- }
128
- @-webkit-keyframes ball-scale {
129
- 0% {
130
- -webkit-transform: scale(0);
131
- transform: scale(0);
132
- }
133
- 100% {
134
- -webkit-transform: scale(1);
135
- transform: scale(1);
136
- opacity: 0;
137
- }
138
- }
139
- @keyframes ball-scale {
140
- 0% {
141
- -webkit-transform: scale(0);
142
- transform: scale(0);
143
- }
144
- 100% {
145
- -webkit-transform: scale(1);
146
- transform: scale(1);
147
- opacity: 0;
148
- }
149
- }
150
- .ball-scale > div {
151
- background-color: #fff;
152
- width: 15px;
153
- height: 15px;
154
- border-radius: 100%;
155
- margin: 2px;
156
- -webkit-animation-fill-mode: both;
157
- animation-fill-mode: both;
158
- display: inline-block;
159
- height: 60px;
160
- width: 60px;
161
- -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
162
- animation: ball-scale 1s 0s ease-in-out infinite;
163
- }
164
- @keyframes ball-scale {
165
- 0% {
166
- -webkit-transform: scale(0);
167
- transform: scale(0);
168
- }
169
- 100% {
170
- -webkit-transform: scale(1);
171
- transform: scale(1);
172
- opacity: 0;
173
- }
174
- }
175
- .ball-scale > div {
176
- background-color: #fff;
177
- width: 15px;
178
- height: 15px;
179
- border-radius: 100%;
180
- margin: 2px;
181
- -webkit-animation-fill-mode: both;
182
- animation-fill-mode: both;
183
- display: inline-block;
184
- height: 60px;
185
- width: 60px;
186
- -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
187
- animation: ball-scale 1s 0s ease-in-out infinite;
188
- }
189
- .ball-scale-random {
190
- width: 37px;
191
- height: 40px;
192
- }
193
- .ball-scale-random > div {
194
- background-color: #fff;
195
- width: 15px;
196
- height: 15px;
197
- border-radius: 100%;
198
- margin: 2px;
199
- -webkit-animation-fill-mode: both;
200
- animation-fill-mode: both;
201
- position: absolute;
202
- display: inline-block;
203
- height: 30px;
204
- width: 30px;
205
- -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
206
- animation: ball-scale 1s 0s ease-in-out infinite;
207
- }
208
- .ball-scale-random > div:nth-child(1) {
209
- margin-left: -7px;
210
- -webkit-animation: ball-scale 1s 0.2s ease-in-out infinite;
211
- animation: ball-scale 1s 0.2s ease-in-out infinite;
212
- }
213
- .ball-scale-random > div:nth-child(3) {
214
- margin-left: -2px;
215
- margin-top: 9px;
216
- -webkit-animation: ball-scale 1s 0.5s ease-in-out infinite;
217
- animation: ball-scale 1s 0.5s ease-in-out infinite;
218
- }
219
- @-webkit-keyframes rotate {
220
- 0% {
221
- -webkit-transform: rotate(0deg);
222
- transform: rotate(0deg);
223
- }
224
- 50% {
225
- -webkit-transform: rotate(180deg);
226
- transform: rotate(180deg);
227
- }
228
- 100% {
229
- -webkit-transform: rotate(360deg);
230
- transform: rotate(360deg);
231
- }
232
- }
233
- @keyframes rotate {
234
- 0% {
235
- -webkit-transform: rotate(0deg);
236
- transform: rotate(0deg);
237
- }
238
- 50% {
239
- -webkit-transform: rotate(180deg);
240
- transform: rotate(180deg);
241
- }
242
- 100% {
243
- -webkit-transform: rotate(360deg);
244
- transform: rotate(360deg);
245
- }
246
- }
247
- .ball-rotate {
248
- position: relative;
249
- }
250
- .ball-rotate > div {
251
- background-color: #fff;
252
- width: 15px;
253
- height: 15px;
254
- border-radius: 100%;
255
- margin: 2px;
256
- -webkit-animation-fill-mode: both;
257
- animation-fill-mode: both;
258
- position: relative;
259
- }
260
- .ball-rotate > div:first-child {
261
- -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
262
- animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
263
- }
264
- .ball-rotate > div:before,
265
- .ball-rotate > div:after {
266
- background-color: inherit;
267
- width: 15px;
268
- height: 15px;
269
- border-radius: 100%;
270
- margin: 2px;
271
- content: "";
272
- position: absolute;
273
- opacity: 0.8;
274
- }
275
- .ball-rotate > div:before {
276
- top: 0px;
277
- left: -28px;
278
- }
279
- .ball-rotate > div:after {
280
- top: 0px;
281
- left: 25px;
282
- }
283
- @keyframes rotate {
284
- 0% {
285
- -webkit-transform: rotate(0deg) scale(1);
286
- transform: rotate(0deg) scale(1);
287
- }
288
- 50% {
289
- -webkit-transform: rotate(180deg) scale(0.6);
290
- transform: rotate(180deg) scale(0.6);
291
- }
292
- 100% {
293
- -webkit-transform: rotate(360deg) scale(1);
294
- transform: rotate(360deg) scale(1);
295
- }
296
- }
297
- .ball-clip-rotate > div {
298
- background-color: #fff;
299
- width: 15px;
300
- height: 15px;
301
- border-radius: 100%;
302
- margin: 2px;
303
- -webkit-animation-fill-mode: both;
304
- animation-fill-mode: both;
305
- border: 2px solid #fff;
306
- border-bottom-color: transparent !important;
307
- height: 25px;
308
- width: 25px;
309
- background: transparent !important;
310
- display: inline-block;
311
- -webkit-animation: rotate 0.75s 0s linear infinite;
312
- animation: rotate 0.75s 0s linear infinite;
313
- }
314
- @keyframes rotate {
315
- 0% {
316
- -webkit-transform: rotate(0deg) scale(1);
317
- transform: rotate(0deg) scale(1);
318
- }
319
- 50% {
320
- -webkit-transform: rotate(180deg) scale(0.6);
321
- transform: rotate(180deg) scale(0.6);
322
- }
323
- 100% {
324
- -webkit-transform: rotate(360deg) scale(1);
325
- transform: rotate(360deg) scale(1);
326
- }
327
- }
328
- @keyframes scale {
329
- 30% {
330
- -webkit-transform: scale(0.3);
331
- transform: scale(0.3);
332
- }
333
- 100% {
334
- -webkit-transform: scale(1);
335
- transform: scale(1);
336
- }
337
- }
338
- .ball-clip-rotate-pulse {
339
- position: relative;
340
- -webkit-transform: translateY(-15px);
341
- -ms-transform: translateY(-15px);
342
- transform: translateY(-15px);
343
- }
344
- .ball-clip-rotate-pulse > div {
345
- -webkit-animation-fill-mode: both;
346
- animation-fill-mode: both;
347
- position: absolute;
348
- top: 0px;
349
- left: 0px;
350
- border-radius: 100%;
351
- }
352
- .ball-clip-rotate-pulse > div:first-child {
353
- background: #fff;
354
- height: 16px;
355
- width: 16px;
356
- top: 7px;
357
- left: -7px;
358
- -webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
359
- animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
360
- }
361
- .ball-clip-rotate-pulse > div:last-child {
362
- position: absolute;
363
- border: 2px solid #fff;
364
- width: 30px;
365
- height: 30px;
366
- left: -14px;
367
- top: 0;
368
- background: transparent !important;
369
- border: 2px solid;
370
- border-top-color: #fff;
371
- border-right-color: transparent !important;
372
- border-bottom-color: #fff;
373
- border-left-color: transparent !important;
374
- -webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
375
- animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
376
- -webkit-animation-duration: 1s;
377
- animation-duration: 1s;
378
- }
379
- @keyframes rotate {
380
- 0% {
381
- -webkit-transform: rotate(0deg) scale(1);
382
- transform: rotate(0deg) scale(1);
383
- }
384
- 50% {
385
- -webkit-transform: rotate(180deg) scale(0.6);
386
- transform: rotate(180deg) scale(0.6);
387
- }
388
- 100% {
389
- -webkit-transform: rotate(360deg) scale(1);
390
- transform: rotate(360deg) scale(1);
391
- }
392
- }
393
- .ball-clip-rotate-multiple {
394
- position: relative;
395
- }
396
- .ball-clip-rotate-multiple > div {
397
- background-color: transparent !important;
398
- -webkit-animation-fill-mode: both;
399
- animation-fill-mode: both;
400
- position: absolute;
401
- left: -20px;
402
- top: -20px;
403
- border: 2px solid #fff;
404
- border-bottom-color: transparent !important;
405
- border-top-color: transparent !important;
406
- border-radius: 100%;
407
- height: 35px;
408
- width: 35px;
409
- -webkit-animation: rotate 1s 0s ease-in-out infinite;
410
- animation: rotate 1s 0s ease-in-out infinite;
411
- }
412
- .ball-clip-rotate-multiple > div:last-child {
413
- display: inline-block;
414
- top: -10px;
415
- left: -10px;
416
- width: 15px;
417
- height: 15px;
418
- border-color: #fff;
419
- border-bottom-color: transparent !important;
420
- border-top-color: transparent !important;
421
- background-color: transparent !important;
422
- -webkit-animation-duration: 0.5s;
423
- animation-duration: 0.5s;
424
- -webkit-animation-direction: reverse;
425
- animation-direction: reverse;
426
- }
427
- @-webkit-keyframes ball-scale-ripple {
428
- 0% {
429
- -webkit-transform: scale(0.1);
430
- transform: scale(0.1);
431
- opacity: 1;
432
- }
433
- 70% {
434
- -webkit-transform: scale(1);
435
- transform: scale(1);
436
- opacity: 0.7;
437
- }
438
- 100% {
439
- opacity: 0.0;
440
- }
441
- }
442
- @keyframes ball-scale-ripple {
443
- 0% {
444
- -webkit-transform: scale(0.1);
445
- transform: scale(0.1);
446
- opacity: 1;
447
- }
448
- 70% {
449
- -webkit-transform: scale(1);
450
- transform: scale(1);
451
- opacity: 0.7;
452
- }
453
- 100% {
454
- opacity: 0.0;
455
- }
456
- }
457
- .ball-scale-ripple > div {
458
- -webkit-animation-fill-mode: both;
459
- animation-fill-mode: both;
460
- height: 50px;
461
- width: 50px;
462
- border-radius: 100%;
463
- border: 2px solid #fff;
464
- background-color: transparent !important;
465
- -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
466
- animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
467
- }
468
- @-webkit-keyframes ball-scale-ripple-multiple {
469
- 0% {
470
- -webkit-transform: scale(0.1);
471
- transform: scale(0.1);
472
- opacity: 1;
473
- }
474
- 70% {
475
- -webkit-transform: scale(1);
476
- transform: scale(1);
477
- opacity: 0.7;
478
- }
479
- 100% {
480
- opacity: 0.0;
481
- }
482
- }
483
- @keyframes ball-scale-ripple-multiple {
484
- 0% {
485
- -webkit-transform: scale(0.1);
486
- transform: scale(0.1);
487
- opacity: 1;
488
- }
489
- 70% {
490
- -webkit-transform: scale(1);
491
- transform: scale(1);
492
- opacity: 0.7;
493
- }
494
- 100% {
495
- opacity: 0.0;
496
- }
497
- }
498
- .ball-scale-ripple-multiple {
499
- position: relative;
500
- -webkit-transform: translateY(-25px);
501
- -ms-transform: translateY(-25px);
502
- transform: translateY(-25px);
503
- }
504
- .ball-scale-ripple-multiple > div:nth-child(0) {
505
- -webkit-animation-delay: -0.8s;
506
- animation-delay: -0.8s;
507
- }
508
- .ball-scale-ripple-multiple > div:nth-child(1) {
509
- -webkit-animation-delay: -0.6s;
510
- animation-delay: -0.6s;
511
- }
512
- .ball-scale-ripple-multiple > div:nth-child(2) {
513
- -webkit-animation-delay: -0.4s;
514
- animation-delay: -0.4s;
515
- }
516
- .ball-scale-ripple-multiple > div:nth-child(3) {
517
- -webkit-animation-delay: -0.2s;
518
- animation-delay: -0.2s;
519
- }
520
- .ball-scale-ripple-multiple > div {
521
- -webkit-animation-fill-mode: both;
522
- animation-fill-mode: both;
523
- position: absolute;
524
- top: -2px;
525
- left: -26px;
526
- width: 50px;
527
- height: 50px;
528
- border-radius: 100%;
529
- border: 2px solid #fff;
530
- background-color: transparent !important;
531
- -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
532
- animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
533
- }
534
- @-webkit-keyframes ball-beat {
535
- 50% {
536
- opacity: 0.2;
537
- -webkit-transform: scale(0.75);
538
- transform: scale(0.75);
539
- }
540
- 100% {
541
- opacity: 1;
542
- -webkit-transform: scale(1);
543
- transform: scale(1);
544
- }
545
- }
546
- @keyframes ball-beat {
547
- 50% {
548
- opacity: 0.2;
549
- -webkit-transform: scale(0.75);
550
- transform: scale(0.75);
551
- }
552
- 100% {
553
- opacity: 1;
554
- -webkit-transform: scale(1);
555
- transform: scale(1);
556
- }
557
- }
558
- .ball-beat > div {
559
- background-color: #fff;
560
- width: 15px;
561
- height: 15px;
562
- border-radius: 100%;
563
- margin: 2px;
564
- -webkit-animation-fill-mode: both;
565
- animation-fill-mode: both;
566
- display: inline-block;
567
- -webkit-animation: ball-beat 0.7s 0s infinite linear;
568
- animation: ball-beat 0.7s 0s infinite linear;
569
- }
570
- .ball-beat > div:nth-child(2n-1) {
571
- -webkit-animation-delay: -0.35s !important;
572
- animation-delay: -0.35s !important;
573
- }
574
- @-webkit-keyframes ball-scale-multiple {
575
- 0% {
576
- -webkit-transform: scale(0);
577
- transform: scale(0);
578
- opacity: 0;
579
- }
580
- 5% {
581
- opacity: 1;
582
- }
583
- 100% {
584
- -webkit-transform: scale(1);
585
- transform: scale(1);
586
- opacity: 0;
587
- }
588
- }
589
- @keyframes ball-scale-multiple {
590
- 0% {
591
- -webkit-transform: scale(0);
592
- transform: scale(0);
593
- opacity: 0;
594
- }
595
- 5% {
596
- opacity: 1;
597
- }
598
- 100% {
599
- -webkit-transform: scale(1);
600
- transform: scale(1);
601
- opacity: 0;
602
- }
603
- }
604
- .ball-scale-multiple {
605
- position: relative;
606
- -webkit-transform: translateY(-30px);
607
- -ms-transform: translateY(-30px);
608
- transform: translateY(-30px);
609
- }
610
- .ball-scale-multiple > div:nth-child(2) {
611
- -webkit-animation-delay: -0.4s;
612
- animation-delay: -0.4s;
613
- }
614
- .ball-scale-multiple > div:nth-child(3) {
615
- -webkit-animation-delay: -0.2s;
616
- animation-delay: -0.2s;
617
- }
618
- .ball-scale-multiple > div {
619
- background-color: #fff;
620
- width: 15px;
621
- height: 15px;
622
- border-radius: 100%;
623
- margin: 2px;
624
- -webkit-animation-fill-mode: both;
625
- animation-fill-mode: both;
626
- position: absolute;
627
- left: -30px;
628
- top: 0px;
629
- opacity: 0;
630
- margin: 0;
631
- width: 60px;
632
- height: 60px;
633
- -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
634
- animation: ball-scale-multiple 1s 0s linear infinite;
635
- }
636
- @-webkit-keyframes ball-triangle-path-1 {
637
- 33% {
638
- -webkit-transform: translate(25px, -50px);
639
- transform: translate(25px, -50px);
640
- }
641
- 66% {
642
- -webkit-transform: translate(50px, 0px);
643
- transform: translate(50px, 0px);
644
- }
645
- 100% {
646
- -webkit-transform: translate(0px, 0px);
647
- transform: translate(0px, 0px);
648
- }
649
- }
650
- @keyframes ball-triangle-path-1 {
651
- 33% {
652
- -webkit-transform: translate(25px, -50px);
653
- transform: translate(25px, -50px);
654
- }
655
- 66% {
656
- -webkit-transform: translate(50px, 0px);
657
- transform: translate(50px, 0px);
658
- }
659
- 100% {
660
- -webkit-transform: translate(0px, 0px);
661
- transform: translate(0px, 0px);
662
- }
663
- }
664
- @-webkit-keyframes ball-triangle-path-2 {
665
- 33% {
666
- -webkit-transform: translate(25px, 50px);
667
- transform: translate(25px, 50px);
668
- }
669
- 66% {
670
- -webkit-transform: translate(-25px, 50px);
671
- transform: translate(-25px, 50px);
672
- }
673
- 100% {
674
- -webkit-transform: translate(0px, 0px);
675
- transform: translate(0px, 0px);
676
- }
677
- }
678
- @keyframes ball-triangle-path-2 {
679
- 33% {
680
- -webkit-transform: translate(25px, 50px);
681
- transform: translate(25px, 50px);
682
- }
683
- 66% {
684
- -webkit-transform: translate(-25px, 50px);
685
- transform: translate(-25px, 50px);
686
- }
687
- 100% {
688
- -webkit-transform: translate(0px, 0px);
689
- transform: translate(0px, 0px);
690
- }
691
- }
692
- @-webkit-keyframes ball-triangle-path-3 {
693
- 33% {
694
- -webkit-transform: translate(-50px, 0px);
695
- transform: translate(-50px, 0px);
696
- }
697
- 66% {
698
- -webkit-transform: translate(-25px, -50px);
699
- transform: translate(-25px, -50px);
700
- }
701
- 100% {
702
- -webkit-transform: translate(0px, 0px);
703
- transform: translate(0px, 0px);
704
- }
705
- }
706
- @keyframes ball-triangle-path-3 {
707
- 33% {
708
- -webkit-transform: translate(-50px, 0px);
709
- transform: translate(-50px, 0px);
710
- }
711
- 66% {
712
- -webkit-transform: translate(-25px, -50px);
713
- transform: translate(-25px, -50px);
714
- }
715
- 100% {
716
- -webkit-transform: translate(0px, 0px);
717
- transform: translate(0px, 0px);
718
- }
719
- }
720
- .ball-triangle-path {
721
- position: relative;
722
- -webkit-transform: translate(-29.994px, -37.50938px);
723
- -ms-transform: translate(-29.994px, -37.50938px);
724
- transform: translate(-29.994px, -37.50938px);
725
- }
726
- .ball-triangle-path > div:nth-child(1) {
727
- -webkit-animation-name: ball-triangle-path-1;
728
- animation-name: ball-triangle-path-1;
729
- -webkit-animation-delay: 0;
730
- animation-delay: 0;
731
- -webkit-animation-duration: 2s;
732
- animation-duration: 2s;
733
- -webkit-animation-timing-function: ease-in-out;
734
- animation-timing-function: ease-in-out;
735
- -webkit-animation-iteration-count: infinite;
736
- animation-iteration-count: infinite;
737
- }
738
- .ball-triangle-path > div:nth-child(2) {
739
- -webkit-animation-name: ball-triangle-path-2;
740
- animation-name: ball-triangle-path-2;
741
- -webkit-animation-delay: 0;
742
- animation-delay: 0;
743
- -webkit-animation-duration: 2s;
744
- animation-duration: 2s;
745
- -webkit-animation-timing-function: ease-in-out;
746
- animation-timing-function: ease-in-out;
747
- -webkit-animation-iteration-count: infinite;
748
- animation-iteration-count: infinite;
749
- }
750
- .ball-triangle-path > div:nth-child(3) {
751
- -webkit-animation-name: ball-triangle-path-3;
752
- animation-name: ball-triangle-path-3;
753
- -webkit-animation-delay: 0;
754
- animation-delay: 0;
755
- -webkit-animation-duration: 2s;
756
- animation-duration: 2s;
757
- -webkit-animation-timing-function: ease-in-out;
758
- animation-timing-function: ease-in-out;
759
- -webkit-animation-iteration-count: infinite;
760
- animation-iteration-count: infinite;
761
- }
762
- .ball-triangle-path > div {
763
- -webkit-animation-fill-mode: both;
764
- animation-fill-mode: both;
765
- position: absolute;
766
- width: 10px;
767
- height: 10px;
768
- border-radius: 100%;
769
- border: 1px solid #fff;
770
- background-color: transparent !important;
771
- }
772
- .ball-triangle-path > div:nth-of-type(1) {
773
- top: 50px;
774
- }
775
- .ball-triangle-path > div:nth-of-type(2) {
776
- left: 25px;
777
- }
778
- .ball-triangle-path > div:nth-of-type(3) {
779
- top: 50px;
780
- left: 50px;
781
- }
782
- @-webkit-keyframes ball-pulse-rise-even {
783
- 0% {
784
- -webkit-transform: scale(1.1);
785
- transform: scale(1.1);
786
- }
787
- 25% {
788
- -webkit-transform: translateY(-30px);
789
- transform: translateY(-30px);
790
- }
791
- 50% {
792
- -webkit-transform: scale(0.4);
793
- transform: scale(0.4);
794
- }
795
- 75% {
796
- -webkit-transform: translateY(30px);
797
- transform: translateY(30px);
798
- }
799
- 100% {
800
- -webkit-transform: translateY(0);
801
- transform: translateY(0);
802
- -webkit-transform: scale(1);
803
- transform: scale(1);
804
- }
805
- }
806
- @keyframes ball-pulse-rise-even {
807
- 0% {
808
- -webkit-transform: scale(1.1);
809
- transform: scale(1.1);
810
- }
811
- 25% {
812
- -webkit-transform: translateY(-30px);
813
- transform: translateY(-30px);
814
- }
815
- 50% {
816
- -webkit-transform: scale(0.4);
817
- transform: scale(0.4);
818
- }
819
- 75% {
820
- -webkit-transform: translateY(30px);
821
- transform: translateY(30px);
822
- }
823
- 100% {
824
- -webkit-transform: translateY(0);
825
- transform: translateY(0);
826
- -webkit-transform: scale(1);
827
- transform: scale(1);
828
- }
829
- }
830
- @-webkit-keyframes ball-pulse-rise-odd {
831
- 0% {
832
- -webkit-transform: scale(0.4);
833
- transform: scale(0.4);
834
- }
835
- 25% {
836
- -webkit-transform: translateY(30px);
837
- transform: translateY(30px);
838
- }
839
- 50% {
840
- -webkit-transform: scale(1.1);
841
- transform: scale(1.1);
842
- }
843
- 75% {
844
- -webkit-transform: translateY(-30px);
845
- transform: translateY(-30px);
846
- }
847
- 100% {
848
- -webkit-transform: translateY(0);
849
- transform: translateY(0);
850
- -webkit-transform: scale(0.75);
851
- transform: scale(0.75);
852
- }
853
- }
854
- @keyframes ball-pulse-rise-odd {
855
- 0% {
856
- -webkit-transform: scale(0.4);
857
- transform: scale(0.4);
858
- }
859
- 25% {
860
- -webkit-transform: translateY(30px);
861
- transform: translateY(30px);
862
- }
863
- 50% {
864
- -webkit-transform: scale(1.1);
865
- transform: scale(1.1);
866
- }
867
- 75% {
868
- -webkit-transform: translateY(-30px);
869
- transform: translateY(-30px);
870
- }
871
- 100% {
872
- -webkit-transform: translateY(0);
873
- transform: translateY(0);
874
- -webkit-transform: scale(0.75);
875
- transform: scale(0.75);
876
- }
877
- }
878
- .ball-pulse-rise > div {
879
- background-color: #fff;
880
- width: 15px;
881
- height: 15px;
882
- border-radius: 100%;
883
- margin: 2px;
884
- -webkit-animation-fill-mode: both;
885
- animation-fill-mode: both;
886
- display: inline-block;
887
- -webkit-animation-duration: 1s;
888
- animation-duration: 1s;
889
- -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
890
- animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
891
- -webkit-animation-iteration-count: infinite;
892
- animation-iteration-count: infinite;
893
- -webkit-animation-delay: 0;
894
- animation-delay: 0;
895
- }
896
- .ball-pulse-rise > div:nth-child(2n) {
897
- -webkit-animation-name: ball-pulse-rise-even;
898
- animation-name: ball-pulse-rise-even;
899
- }
900
- .ball-pulse-rise > div:nth-child(2n-1) {
901
- -webkit-animation-name: ball-pulse-rise-odd;
902
- animation-name: ball-pulse-rise-odd;
903
- }
904
- @-webkit-keyframes ball-grid-beat {
905
- 50% {
906
- opacity: 0.7;
907
- }
908
- 100% {
909
- opacity: 1;
910
- }
911
- }
912
- @keyframes ball-grid-beat {
913
- 50% {
914
- opacity: 0.7;
915
- }
916
- 100% {
917
- opacity: 1;
918
- }
919
- }
920
- .ball-grid-beat {
921
- width: 57px;
922
- }
923
- .ball-grid-beat > div:nth-child(1) {
924
- -webkit-animation-delay: 0.44s;
925
- animation-delay: 0.44s;
926
- -webkit-animation-duration: 1.27s;
927
- animation-duration: 1.27s;
928
- }
929
- .ball-grid-beat > div:nth-child(2) {
930
- -webkit-animation-delay: 0.2s;
931
- animation-delay: 0.2s;
932
- -webkit-animation-duration: 1.52s;
933
- animation-duration: 1.52s;
934
- }
935
- .ball-grid-beat > div:nth-child(3) {
936
- -webkit-animation-delay: 0.14s;
937
- animation-delay: 0.14s;
938
- -webkit-animation-duration: 0.61s;
939
- animation-duration: 0.61s;
940
- }
941
- .ball-grid-beat > div:nth-child(4) {
942
- -webkit-animation-delay: 0.15s;
943
- animation-delay: 0.15s;
944
- -webkit-animation-duration: 0.82s;
945
- animation-duration: 0.82s;
946
- }
947
- .ball-grid-beat > div:nth-child(5) {
948
- -webkit-animation-delay: -0.01s;
949
- animation-delay: -0.01s;
950
- -webkit-animation-duration: 1.24s;
951
- animation-duration: 1.24s;
952
- }
953
- .ball-grid-beat > div:nth-child(6) {
954
- -webkit-animation-delay: -0.07s;
955
- animation-delay: -0.07s;
956
- -webkit-animation-duration: 1.35s;
957
- animation-duration: 1.35s;
958
- }
959
- .ball-grid-beat > div:nth-child(7) {
960
- -webkit-animation-delay: 0.29s;
961
- animation-delay: 0.29s;
962
- -webkit-animation-duration: 1.44s;
963
- animation-duration: 1.44s;
964
- }
965
- .ball-grid-beat > div:nth-child(8) {
966
- -webkit-animation-delay: 0.63s;
967
- animation-delay: 0.63s;
968
- -webkit-animation-duration: 1.19s;
969
- animation-duration: 1.19s;
970
- }
971
- .ball-grid-beat > div:nth-child(9) {
972
- -webkit-animation-delay: -0.18s;
973
- animation-delay: -0.18s;
974
- -webkit-animation-duration: 1.48s;
975
- animation-duration: 1.48s;
976
- }
977
- .ball-grid-beat > div {
978
- background-color: #fff;
979
- width: 15px;
980
- height: 15px;
981
- border-radius: 100%;
982
- margin: 2px;
983
- -webkit-animation-fill-mode: both;
984
- animation-fill-mode: both;
985
- display: inline-block;
986
- float: left;
987
- -webkit-animation-name: ball-grid-beat;
988
- animation-name: ball-grid-beat;
989
- -webkit-animation-iteration-count: infinite;
990
- animation-iteration-count: infinite;
991
- -webkit-animation-delay: 0;
992
- animation-delay: 0;
993
- }
994
- @-webkit-keyframes ball-grid-pulse {
995
- 0% {
996
- -webkit-transform: scale(1);
997
- transform: scale(1);
998
- }
999
- 50% {
1000
- -webkit-transform: scale(0.5);
1001
- transform: scale(0.5);
1002
- opacity: 0.7;
1003
- }
1004
- 100% {
1005
- -webkit-transform: scale(1);
1006
- transform: scale(1);
1007
- opacity: 1;
1008
- }
1009
- }
1010
- @keyframes ball-grid-pulse {
1011
- 0% {
1012
- -webkit-transform: scale(1);
1013
- transform: scale(1);
1014
- }
1015
- 50% {
1016
- -webkit-transform: scale(0.5);
1017
- transform: scale(0.5);
1018
- opacity: 0.7;
1019
- }
1020
- 100% {
1021
- -webkit-transform: scale(1);
1022
- transform: scale(1);
1023
- opacity: 1;
1024
- }
1025
- }
1026
- .ball-grid-pulse {
1027
- width: 57px;
1028
- }
1029
- .ball-grid-pulse > div:nth-child(1) {
1030
- -webkit-animation-delay: 0.58s;
1031
- animation-delay: 0.58s;
1032
- -webkit-animation-duration: 0.9s;
1033
- animation-duration: 0.9s;
1034
- }
1035
- .ball-grid-pulse > div:nth-child(2) {
1036
- -webkit-animation-delay: 0.01s;
1037
- animation-delay: 0.01s;
1038
- -webkit-animation-duration: 0.94s;
1039
- animation-duration: 0.94s;
1040
- }
1041
- .ball-grid-pulse > div:nth-child(3) {
1042
- -webkit-animation-delay: 0.25s;
1043
- animation-delay: 0.25s;
1044
- -webkit-animation-duration: 1.43s;
1045
- animation-duration: 1.43s;
1046
- }
1047
- .ball-grid-pulse > div:nth-child(4) {
1048
- -webkit-animation-delay: -0.03s;
1049
- animation-delay: -0.03s;
1050
- -webkit-animation-duration: 0.74s;
1051
- animation-duration: 0.74s;
1052
- }
1053
- .ball-grid-pulse > div:nth-child(5) {
1054
- -webkit-animation-delay: 0.21s;
1055
- animation-delay: 0.21s;
1056
- -webkit-animation-duration: 0.68s;
1057
- animation-duration: 0.68s;
1058
- }
1059
- .ball-grid-pulse > div:nth-child(6) {
1060
- -webkit-animation-delay: 0.25s;
1061
- animation-delay: 0.25s;
1062
- -webkit-animation-duration: 1.17s;
1063
- animation-duration: 1.17s;
1064
- }
1065
- .ball-grid-pulse > div:nth-child(7) {
1066
- -webkit-animation-delay: 0.46s;
1067
- animation-delay: 0.46s;
1068
- -webkit-animation-duration: 1.41s;
1069
- animation-duration: 1.41s;
1070
- }
1071
- .ball-grid-pulse > div:nth-child(8) {
1072
- -webkit-animation-delay: 0.02s;
1073
- animation-delay: 0.02s;
1074
- -webkit-animation-duration: 1.56s;
1075
- animation-duration: 1.56s;
1076
- }
1077
- .ball-grid-pulse > div:nth-child(9) {
1078
- -webkit-animation-delay: 0.13s;
1079
- animation-delay: 0.13s;
1080
- -webkit-animation-duration: 0.78s;
1081
- animation-duration: 0.78s;
1082
- }
1083
- .ball-grid-pulse > div {
1084
- background-color: #fff;
1085
- width: 15px;
1086
- height: 15px;
1087
- border-radius: 100%;
1088
- margin: 2px;
1089
- -webkit-animation-fill-mode: both;
1090
- animation-fill-mode: both;
1091
- display: inline-block;
1092
- float: left;
1093
- -webkit-animation-name: ball-grid-pulse;
1094
- animation-name: ball-grid-pulse;
1095
- -webkit-animation-iteration-count: infinite;
1096
- animation-iteration-count: infinite;
1097
- -webkit-animation-delay: 0;
1098
- animation-delay: 0;
1099
- }
1100
- @-webkit-keyframes ball-spin-fade-loader {
1101
- 50% {
1102
- opacity: 0.3;
1103
- -webkit-transform: scale(0.4);
1104
- transform: scale(0.4);
1105
- }
1106
- 100% {
1107
- opacity: 1;
1108
- -webkit-transform: scale(1);
1109
- transform: scale(1);
1110
- }
1111
- }
1112
- @keyframes ball-spin-fade-loader {
1113
- 50% {
1114
- opacity: 0.3;
1115
- -webkit-transform: scale(0.4);
1116
- transform: scale(0.4);
1117
- }
1118
- 100% {
1119
- opacity: 1;
1120
- -webkit-transform: scale(1);
1121
- transform: scale(1);
1122
- }
1123
- }
1124
- .ball-spin-fade-loader {
1125
- position: relative;
1126
- top: -10px;
1127
- left: -10px;
1128
- }
1129
- .ball-spin-fade-loader > div:nth-child(1) {
1130
- top: 25px;
1131
- left: 0;
1132
- -webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
1133
- animation: ball-spin-fade-loader 1s -0.96s infinite linear;
1134
- }
1135
- .ball-spin-fade-loader > div:nth-child(2) {
1136
- top: 17.04545px;
1137
- left: 17.04545px;
1138
- -webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
1139
- animation: ball-spin-fade-loader 1s -0.84s infinite linear;
1140
- }
1141
- .ball-spin-fade-loader > div:nth-child(3) {
1142
- top: 0;
1143
- left: 25px;
1144
- -webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
1145
- animation: ball-spin-fade-loader 1s -0.72s infinite linear;
1146
- }
1147
- .ball-spin-fade-loader > div:nth-child(4) {
1148
- top: -17.04545px;
1149
- left: 17.04545px;
1150
- -webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
1151
- animation: ball-spin-fade-loader 1s -0.6s infinite linear;
1152
- }
1153
- .ball-spin-fade-loader > div:nth-child(5) {
1154
- top: -25px;
1155
- left: 0;
1156
- -webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
1157
- animation: ball-spin-fade-loader 1s -0.48s infinite linear;
1158
- }
1159
- .ball-spin-fade-loader > div:nth-child(6) {
1160
- top: -17.04545px;
1161
- left: -17.04545px;
1162
- -webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
1163
- animation: ball-spin-fade-loader 1s -0.36s infinite linear;
1164
- }
1165
- .ball-spin-fade-loader > div:nth-child(7) {
1166
- top: 0;
1167
- left: -25px;
1168
- -webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
1169
- animation: ball-spin-fade-loader 1s -0.24s infinite linear;
1170
- }
1171
- .ball-spin-fade-loader > div:nth-child(8) {
1172
- top: 17.04545px;
1173
- left: -17.04545px;
1174
- -webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
1175
- animation: ball-spin-fade-loader 1s -0.12s infinite linear;
1176
- }
1177
- .ball-spin-fade-loader > div {
1178
- background-color: #fff;
1179
- width: 15px;
1180
- height: 15px;
1181
- border-radius: 100%;
1182
- margin: 2px;
1183
- -webkit-animation-fill-mode: both;
1184
- animation-fill-mode: both;
1185
- position: absolute;
1186
- }
1187
- @-webkit-keyframes ball-spin-loader {
1188
- 75% {
1189
- opacity: 0.2;
1190
- }
1191
- 100% {
1192
- opacity: 1;
1193
- }
1194
- }
1195
- @keyframes ball-spin-loader {
1196
- 75% {
1197
- opacity: 0.2;
1198
- }
1199
- 100% {
1200
- opacity: 1;
1201
- }
1202
- }
1203
- .ball-spin-loader {
1204
- position: relative;
1205
- }
1206
- .ball-spin-loader > span:nth-child(1) {
1207
- top: 45px;
1208
- left: 0;
1209
- -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
1210
- animation: ball-spin-loader 2s 0.9s infinite linear;
1211
- }
1212
- .ball-spin-loader > span:nth-child(2) {
1213
- top: 30.68182px;
1214
- left: 30.68182px;
1215
- -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
1216
- animation: ball-spin-loader 2s 1.8s infinite linear;
1217
- }
1218
- .ball-spin-loader > span:nth-child(3) {
1219
- top: 0;
1220
- left: 45px;
1221
- -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
1222
- animation: ball-spin-loader 2s 2.7s infinite linear;
1223
- }
1224
- .ball-spin-loader > span:nth-child(4) {
1225
- top: -30.68182px;
1226
- left: 30.68182px;
1227
- -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
1228
- animation: ball-spin-loader 2s 3.6s infinite linear;
1229
- }
1230
- .ball-spin-loader > span:nth-child(5) {
1231
- top: -45px;
1232
- left: 0;
1233
- -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
1234
- animation: ball-spin-loader 2s 4.5s infinite linear;
1235
- }
1236
- .ball-spin-loader > span:nth-child(6) {
1237
- top: -30.68182px;
1238
- left: -30.68182px;
1239
- -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
1240
- animation: ball-spin-loader 2s 5.4s infinite linear;
1241
- }
1242
- .ball-spin-loader > span:nth-child(7) {
1243
- top: 0;
1244
- left: -45px;
1245
- -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
1246
- animation: ball-spin-loader 2s 6.3s infinite linear;
1247
- }
1248
- .ball-spin-loader > span:nth-child(8) {
1249
- top: 30.68182px;
1250
- left: -30.68182px;
1251
- -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
1252
- animation: ball-spin-loader 2s 7.2s infinite linear;
1253
- }
1254
- .ball-spin-loader > div {
1255
- -webkit-animation-fill-mode: both;
1256
- animation-fill-mode: both;
1257
- position: absolute;
1258
- width: 15px;
1259
- height: 15px;
1260
- border-radius: 100%;
1261
- background: green;
1262
- }
1263
- @-webkit-keyframes ball-zig {
1264
- 33% {
1265
- -webkit-transform: translate(-15px, -30px);
1266
- transform: translate(-15px, -30px);
1267
- }
1268
- 66% {
1269
- -webkit-transform: translate(15px, -30px);
1270
- transform: translate(15px, -30px);
1271
- }
1272
- 100% {
1273
- -webkit-transform: translate(0, 0);
1274
- transform: translate(0, 0);
1275
- }
1276
- }
1277
- @keyframes ball-zig {
1278
- 33% {
1279
- -webkit-transform: translate(-15px, -30px);
1280
- transform: translate(-15px, -30px);
1281
- }
1282
- 66% {
1283
- -webkit-transform: translate(15px, -30px);
1284
- transform: translate(15px, -30px);
1285
- }
1286
- 100% {
1287
- -webkit-transform: translate(0, 0);
1288
- transform: translate(0, 0);
1289
- }
1290
- }
1291
- @-webkit-keyframes ball-zag {
1292
- 33% {
1293
- -webkit-transform: translate(15px, 30px);
1294
- transform: translate(15px, 30px);
1295
- }
1296
- 66% {
1297
- -webkit-transform: translate(-15px, 30px);
1298
- transform: translate(-15px, 30px);
1299
- }
1300
- 100% {
1301
- -webkit-transform: translate(0, 0);
1302
- transform: translate(0, 0);
1303
- }
1304
- }
1305
- @keyframes ball-zag {
1306
- 33% {
1307
- -webkit-transform: translate(15px, 30px);
1308
- transform: translate(15px, 30px);
1309
- }
1310
- 66% {
1311
- -webkit-transform: translate(-15px, 30px);
1312
- transform: translate(-15px, 30px);
1313
- }
1314
- 100% {
1315
- -webkit-transform: translate(0, 0);
1316
- transform: translate(0, 0);
1317
- }
1318
- }
1319
- .ball-zig-zag {
1320
- position: relative;
1321
- -webkit-transform: translate(-15px, -15px);
1322
- -ms-transform: translate(-15px, -15px);
1323
- transform: translate(-15px, -15px);
1324
- }
1325
- .ball-zig-zag > div {
1326
- background-color: #fff;
1327
- width: 15px;
1328
- height: 15px;
1329
- border-radius: 100%;
1330
- margin: 2px;
1331
- -webkit-animation-fill-mode: both;
1332
- animation-fill-mode: both;
1333
- position: absolute;
1334
- margin-left: 15px;
1335
- top: 4px;
1336
- left: -7px;
1337
- }
1338
- .ball-zig-zag > div:first-child {
1339
- -webkit-animation: ball-zig 0.7s 0s infinite linear;
1340
- animation: ball-zig 0.7s 0s infinite linear;
1341
- }
1342
- .ball-zig-zag > div:last-child {
1343
- -webkit-animation: ball-zag 0.7s 0s infinite linear;
1344
- animation: ball-zag 0.7s 0s infinite linear;
1345
- }
1346
- @-webkit-keyframes ball-zig-deflect {
1347
- 17% {
1348
- -webkit-transform: translate(-15px, -30px);
1349
- transform: translate(-15px, -30px);
1350
- }
1351
- 34% {
1352
- -webkit-transform: translate(15px, -30px);
1353
- transform: translate(15px, -30px);
1354
- }
1355
- 50% {
1356
- -webkit-transform: translate(0, 0);
1357
- transform: translate(0, 0);
1358
- }
1359
- 67% {
1360
- -webkit-transform: translate(15px, -30px);
1361
- transform: translate(15px, -30px);
1362
- }
1363
- 84% {
1364
- -webkit-transform: translate(-15px, -30px);
1365
- transform: translate(-15px, -30px);
1366
- }
1367
- 100% {
1368
- -webkit-transform: translate(0, 0);
1369
- transform: translate(0, 0);
1370
- }
1371
- }
1372
- @keyframes ball-zig-deflect {
1373
- 17% {
1374
- -webkit-transform: translate(-15px, -30px);
1375
- transform: translate(-15px, -30px);
1376
- }
1377
- 34% {
1378
- -webkit-transform: translate(15px, -30px);
1379
- transform: translate(15px, -30px);
1380
- }
1381
- 50% {
1382
- -webkit-transform: translate(0, 0);
1383
- transform: translate(0, 0);
1384
- }
1385
- 67% {
1386
- -webkit-transform: translate(15px, -30px);
1387
- transform: translate(15px, -30px);
1388
- }
1389
- 84% {
1390
- -webkit-transform: translate(-15px, -30px);
1391
- transform: translate(-15px, -30px);
1392
- }
1393
- 100% {
1394
- -webkit-transform: translate(0, 0);
1395
- transform: translate(0, 0);
1396
- }
1397
- }
1398
- @-webkit-keyframes ball-zag-deflect {
1399
- 17% {
1400
- -webkit-transform: translate(15px, 30px);
1401
- transform: translate(15px, 30px);
1402
- }
1403
- 34% {
1404
- -webkit-transform: translate(-15px, 30px);
1405
- transform: translate(-15px, 30px);
1406
- }
1407
- 50% {
1408
- -webkit-transform: translate(0, 0);
1409
- transform: translate(0, 0);
1410
- }
1411
- 67% {
1412
- -webkit-transform: translate(-15px, 30px);
1413
- transform: translate(-15px, 30px);
1414
- }
1415
- 84% {
1416
- -webkit-transform: translate(15px, 30px);
1417
- transform: translate(15px, 30px);
1418
- }
1419
- 100% {
1420
- -webkit-transform: translate(0, 0);
1421
- transform: translate(0, 0);
1422
- }
1423
- }
1424
- @keyframes ball-zag-deflect {
1425
- 17% {
1426
- -webkit-transform: translate(15px, 30px);
1427
- transform: translate(15px, 30px);
1428
- }
1429
- 34% {
1430
- -webkit-transform: translate(-15px, 30px);
1431
- transform: translate(-15px, 30px);
1432
- }
1433
- 50% {
1434
- -webkit-transform: translate(0, 0);
1435
- transform: translate(0, 0);
1436
- }
1437
- 67% {
1438
- -webkit-transform: translate(-15px, 30px);
1439
- transform: translate(-15px, 30px);
1440
- }
1441
- 84% {
1442
- -webkit-transform: translate(15px, 30px);
1443
- transform: translate(15px, 30px);
1444
- }
1445
- 100% {
1446
- -webkit-transform: translate(0, 0);
1447
- transform: translate(0, 0);
1448
- }
1449
- }
1450
- .ball-zig-zag-deflect {
1451
- position: relative;
1452
- -webkit-transform: translate(-15px, -15px);
1453
- -ms-transform: translate(-15px, -15px);
1454
- transform: translate(-15px, -15px);
1455
- }
1456
- .ball-zig-zag-deflect > div {
1457
- background-color: #fff;
1458
- width: 15px;
1459
- height: 15px;
1460
- border-radius: 100%;
1461
- margin: 2px;
1462
- -webkit-animation-fill-mode: both;
1463
- animation-fill-mode: both;
1464
- position: absolute;
1465
- margin-left: 15px;
1466
- top: 4px;
1467
- left: -7px;
1468
- }
1469
- .ball-zig-zag-deflect > div:first-child {
1470
- -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
1471
- animation: ball-zig-deflect 1.5s 0s infinite linear;
1472
- }
1473
- .ball-zig-zag-deflect > div:last-child {
1474
- -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
1475
- animation: ball-zag-deflect 1.5s 0s infinite linear;
1476
- }
1477
- /**
1478
- * Lines
1479
- */
1480
- @-webkit-keyframes line-scale {
1481
- 0% {
1482
- -webkit-transform: scaley(1);
1483
- transform: scaley(1);
1484
- }
1485
- 50% {
1486
- -webkit-transform: scaley(0.4);
1487
- transform: scaley(0.4);
1488
- }
1489
- 100% {
1490
- -webkit-transform: scaley(1);
1491
- transform: scaley(1);
1492
- }
1493
- }
1494
- @keyframes line-scale {
1495
- 0% {
1496
- -webkit-transform: scaley(1);
1497
- transform: scaley(1);
1498
- }
1499
- 50% {
1500
- -webkit-transform: scaley(0.4);
1501
- transform: scaley(0.4);
1502
- }
1503
- 100% {
1504
- -webkit-transform: scaley(1);
1505
- transform: scaley(1);
1506
- }
1507
- }
1508
- .line-scale > div:nth-child(1) {
1509
- -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1510
- animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1511
- }
1512
- .line-scale > div:nth-child(2) {
1513
- -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1514
- animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1515
- }
1516
- .line-scale > div:nth-child(3) {
1517
- -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1518
- animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1519
- }
1520
- .line-scale > div:nth-child(4) {
1521
- -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1522
- animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1523
- }
1524
- .line-scale > div:nth-child(5) {
1525
- -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1526
- animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1527
- }
1528
- .line-scale > div {
1529
- background-color: #fff;
1530
- width: 4px;
1531
- height: 35px;
1532
- border-radius: 2px;
1533
- margin: 2px;
1534
- -webkit-animation-fill-mode: both;
1535
- animation-fill-mode: both;
1536
- display: inline-block;
1537
- }
1538
- @-webkit-keyframes line-scale-party {
1539
- 0% {
1540
- -webkit-transform: scale(1);
1541
- transform: scale(1);
1542
- }
1543
- 50% {
1544
- -webkit-transform: scale(0.5);
1545
- transform: scale(0.5);
1546
- }
1547
- 100% {
1548
- -webkit-transform: scale(1);
1549
- transform: scale(1);
1550
- }
1551
- }
1552
- @keyframes line-scale-party {
1553
- 0% {
1554
- -webkit-transform: scale(1);
1555
- transform: scale(1);
1556
- }
1557
- 50% {
1558
- -webkit-transform: scale(0.5);
1559
- transform: scale(0.5);
1560
- }
1561
- 100% {
1562
- -webkit-transform: scale(1);
1563
- transform: scale(1);
1564
- }
1565
- }
1566
- .line-scale-party > div:nth-child(1) {
1567
- -webkit-animation-delay: -0.09s;
1568
- animation-delay: -0.09s;
1569
- -webkit-animation-duration: 0.83s;
1570
- animation-duration: 0.83s;
1571
- }
1572
- .line-scale-party > div:nth-child(2) {
1573
- -webkit-animation-delay: 0.33s;
1574
- animation-delay: 0.33s;
1575
- -webkit-animation-duration: 0.64s;
1576
- animation-duration: 0.64s;
1577
- }
1578
- .line-scale-party > div:nth-child(3) {
1579
- -webkit-animation-delay: 0.32s;
1580
- animation-delay: 0.32s;
1581
- -webkit-animation-duration: 0.39s;
1582
- animation-duration: 0.39s;
1583
- }
1584
- .line-scale-party > div:nth-child(4) {
1585
- -webkit-animation-delay: 0.47s;
1586
- animation-delay: 0.47s;
1587
- -webkit-animation-duration: 0.52s;
1588
- animation-duration: 0.52s;
1589
- }
1590
- .line-scale-party > div {
1591
- background-color: #fff;
1592
- width: 4px;
1593
- height: 35px;
1594
- border-radius: 2px;
1595
- margin: 2px;
1596
- -webkit-animation-fill-mode: both;
1597
- animation-fill-mode: both;
1598
- display: inline-block;
1599
- -webkit-animation-name: line-scale-party;
1600
- animation-name: line-scale-party;
1601
- -webkit-animation-iteration-count: infinite;
1602
- animation-iteration-count: infinite;
1603
- -webkit-animation-delay: 0;
1604
- animation-delay: 0;
1605
- }
1606
- @-webkit-keyframes line-scale-pulse-out {
1607
- 0% {
1608
- -webkit-transform: scaley(1);
1609
- transform: scaley(1);
1610
- }
1611
- 50% {
1612
- -webkit-transform: scaley(0.4);
1613
- transform: scaley(0.4);
1614
- }
1615
- 100% {
1616
- -webkit-transform: scaley(1);
1617
- transform: scaley(1);
1618
- }
1619
- }
1620
- @keyframes line-scale-pulse-out {
1621
- 0% {
1622
- -webkit-transform: scaley(1);
1623
- transform: scaley(1);
1624
- }
1625
- 50% {
1626
- -webkit-transform: scaley(0.4);
1627
- transform: scaley(0.4);
1628
- }
1629
- 100% {
1630
- -webkit-transform: scaley(1);
1631
- transform: scaley(1);
1632
- }
1633
- }
1634
- .line-scale-pulse-out > div {
1635
- background-color: #fff;
1636
- width: 4px;
1637
- height: 35px;
1638
- border-radius: 2px;
1639
- margin: 2px;
1640
- -webkit-animation-fill-mode: both;
1641
- animation-fill-mode: both;
1642
- display: inline-block;
1643
- -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
1644
- animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
1645
- }
1646
- .line-scale-pulse-out > div:nth-child(2),
1647
- .line-scale-pulse-out > div:nth-child(4) {
1648
- -webkit-animation-delay: -0.4s !important;
1649
- animation-delay: -0.4s !important;
1650
- }
1651
- .line-scale-pulse-out > div:nth-child(1),
1652
- .line-scale-pulse-out > div:nth-child(5) {
1653
- -webkit-animation-delay: -0.2s !important;
1654
- animation-delay: -0.2s !important;
1655
- }
1656
- @-webkit-keyframes line-scale-pulse-out-rapid {
1657
- 0% {
1658
- -webkit-transform: scaley(1);
1659
- transform: scaley(1);
1660
- }
1661
- 80% {
1662
- -webkit-transform: scaley(0.3);
1663
- transform: scaley(0.3);
1664
- }
1665
- 90% {
1666
- -webkit-transform: scaley(1);
1667
- transform: scaley(1);
1668
- }
1669
- }
1670
- @keyframes line-scale-pulse-out-rapid {
1671
- 0% {
1672
- -webkit-transform: scaley(1);
1673
- transform: scaley(1);
1674
- }
1675
- 80% {
1676
- -webkit-transform: scaley(0.3);
1677
- transform: scaley(0.3);
1678
- }
1679
- 90% {
1680
- -webkit-transform: scaley(1);
1681
- transform: scaley(1);
1682
- }
1683
- }
1684
- .line-scale-pulse-out-rapid > div {
1685
- background-color: #fff;
1686
- width: 4px;
1687
- height: 35px;
1688
- border-radius: 2px;
1689
- margin: 2px;
1690
- -webkit-animation-fill-mode: both;
1691
- animation-fill-mode: both;
1692
- display: inline-block;
1693
- -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
1694
- animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
1695
- }
1696
- .line-scale-pulse-out-rapid > div:nth-child(2),
1697
- .line-scale-pulse-out-rapid > div:nth-child(4) {
1698
- -webkit-animation-delay: -0.25s !important;
1699
- animation-delay: -0.25s !important;
1700
- }
1701
- .line-scale-pulse-out-rapid > div:nth-child(1),
1702
- .line-scale-pulse-out-rapid > div:nth-child(5) {
1703
- -webkit-animation-delay: 0s !important;
1704
- animation-delay: 0s !important;
1705
- }
1706
- @-webkit-keyframes line-spin-fade-loader {
1707
- 50% {
1708
- opacity: 0.3;
1709
- }
1710
- 100% {
1711
- opacity: 1;
1712
- }
1713
- }
1714
- @keyframes line-spin-fade-loader {
1715
- 50% {
1716
- opacity: 0.3;
1717
- }
1718
- 100% {
1719
- opacity: 1;
1720
- }
1721
- }
1722
- .line-spin-fade-loader {
1723
- position: relative;
1724
- top: -10px;
1725
- left: -4px;
1726
- }
1727
- .line-spin-fade-loader > div:nth-child(1) {
1728
- top: 20px;
1729
- left: 0;
1730
- -webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
1731
- animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
1732
- }
1733
- .line-spin-fade-loader > div:nth-child(2) {
1734
- top: 13.63636px;
1735
- left: 13.63636px;
1736
- -webkit-transform: rotate(-45deg);
1737
- -ms-transform: rotate(-45deg);
1738
- transform: rotate(-45deg);
1739
- -webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
1740
- animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
1741
- }
1742
- .line-spin-fade-loader > div:nth-child(3) {
1743
- top: 0;
1744
- left: 20px;
1745
- -webkit-transform: rotate(90deg);
1746
- -ms-transform: rotate(90deg);
1747
- transform: rotate(90deg);
1748
- -webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
1749
- animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
1750
- }
1751
- .line-spin-fade-loader > div:nth-child(4) {
1752
- top: -13.63636px;
1753
- left: 13.63636px;
1754
- -webkit-transform: rotate(45deg);
1755
- -ms-transform: rotate(45deg);
1756
- transform: rotate(45deg);
1757
- -webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
1758
- animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
1759
- }
1760
- .line-spin-fade-loader > div:nth-child(5) {
1761
- top: -20px;
1762
- left: 0;
1763
- -webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
1764
- animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
1765
- }
1766
- .line-spin-fade-loader > div:nth-child(6) {
1767
- top: -13.63636px;
1768
- left: -13.63636px;
1769
- -webkit-transform: rotate(-45deg);
1770
- -ms-transform: rotate(-45deg);
1771
- transform: rotate(-45deg);
1772
- -webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
1773
- animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
1774
- }
1775
- .line-spin-fade-loader > div:nth-child(7) {
1776
- top: 0;
1777
- left: -20px;
1778
- -webkit-transform: rotate(90deg);
1779
- -ms-transform: rotate(90deg);
1780
- transform: rotate(90deg);
1781
- -webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
1782
- animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
1783
- }
1784
- .line-spin-fade-loader > div:nth-child(8) {
1785
- top: 13.63636px;
1786
- left: -13.63636px;
1787
- -webkit-transform: rotate(45deg);
1788
- -ms-transform: rotate(45deg);
1789
- transform: rotate(45deg);
1790
- -webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
1791
- animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
1792
- }
1793
- .line-spin-fade-loader > div {
1794
- background-color: #fff;
1795
- width: 4px;
1796
- height: 35px;
1797
- border-radius: 2px;
1798
- margin: 2px;
1799
- -webkit-animation-fill-mode: both;
1800
- animation-fill-mode: both;
1801
- position: absolute;
1802
- width: 5px;
1803
- height: 15px;
1804
- }
1805
- /**
1806
- * Misc
1807
- */
1808
- @-webkit-keyframes triangle-skew-spin {
1809
- 25% {
1810
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
1811
- transform: perspective(100px) rotateX(180deg) rotateY(0);
1812
- }
1813
- 50% {
1814
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1815
- transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1816
- }
1817
- 75% {
1818
- -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
1819
- transform: perspective(100px) rotateX(0) rotateY(180deg);
1820
- }
1821
- 100% {
1822
- -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
1823
- transform: perspective(100px) rotateX(0) rotateY(0);
1824
- }
1825
- }
1826
- @keyframes triangle-skew-spin {
1827
- 25% {
1828
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
1829
- transform: perspective(100px) rotateX(180deg) rotateY(0);
1830
- }
1831
- 50% {
1832
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1833
- transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1834
- }
1835
- 75% {
1836
- -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
1837
- transform: perspective(100px) rotateX(0) rotateY(180deg);
1838
- }
1839
- 100% {
1840
- -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
1841
- transform: perspective(100px) rotateX(0) rotateY(0);
1842
- }
1843
- }
1844
- .triangle-skew-spin > div {
1845
- -webkit-animation-fill-mode: both;
1846
- animation-fill-mode: both;
1847
- width: 0;
1848
- height: 0;
1849
- border-left: 20px solid transparent !important;
1850
- border-right: 20px solid transparent !important;
1851
- border-bottom: 20px solid #fff;
1852
- background-color: transparent !important;
1853
- -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
1854
- animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
1855
- }
1856
- @-webkit-keyframes square-spin {
1857
- 25% {
1858
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
1859
- transform: perspective(100px) rotateX(180deg) rotateY(0);
1860
- }
1861
- 50% {
1862
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1863
- transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1864
- }
1865
- 75% {
1866
- -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
1867
- transform: perspective(100px) rotateX(0) rotateY(180deg);
1868
- }
1869
- 100% {
1870
- -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
1871
- transform: perspective(100px) rotateX(0) rotateY(0);
1872
- }
1873
- }
1874
- @keyframes square-spin {
1875
- 25% {
1876
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
1877
- transform: perspective(100px) rotateX(180deg) rotateY(0);
1878
- }
1879
- 50% {
1880
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1881
- transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1882
- }
1883
- 75% {
1884
- -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
1885
- transform: perspective(100px) rotateX(0) rotateY(180deg);
1886
- }
1887
- 100% {
1888
- -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
1889
- transform: perspective(100px) rotateX(0) rotateY(0);
1890
- }
1891
- }
1892
- .square-spin > div {
1893
- -webkit-animation-fill-mode: both;
1894
- animation-fill-mode: both;
1895
- width: 50px;
1896
- height: 50px;
1897
- background: #fff;
1898
- border: 1px solid red;
1899
- -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
1900
- animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
1901
- }
1902
- @-webkit-keyframes rotate_pacman_half_up {
1903
- 0% {
1904
- -webkit-transform: rotate(270deg);
1905
- transform: rotate(270deg);
1906
- }
1907
- 50% {
1908
- -webkit-transform: rotate(360deg);
1909
- transform: rotate(360deg);
1910
- }
1911
- 100% {
1912
- -webkit-transform: rotate(270deg);
1913
- transform: rotate(270deg);
1914
- }
1915
- }
1916
- @keyframes rotate_pacman_half_up {
1917
- 0% {
1918
- -webkit-transform: rotate(270deg);
1919
- transform: rotate(270deg);
1920
- }
1921
- 50% {
1922
- -webkit-transform: rotate(360deg);
1923
- transform: rotate(360deg);
1924
- }
1925
- 100% {
1926
- -webkit-transform: rotate(270deg);
1927
- transform: rotate(270deg);
1928
- }
1929
- }
1930
- @-webkit-keyframes rotate_pacman_half_down {
1931
- 0% {
1932
- -webkit-transform: rotate(90deg);
1933
- transform: rotate(90deg);
1934
- }
1935
- 50% {
1936
- -webkit-transform: rotate(0deg);
1937
- transform: rotate(0deg);
1938
- }
1939
- 100% {
1940
- -webkit-transform: rotate(90deg);
1941
- transform: rotate(90deg);
1942
- }
1943
- }
1944
- @keyframes rotate_pacman_half_down {
1945
- 0% {
1946
- -webkit-transform: rotate(90deg);
1947
- transform: rotate(90deg);
1948
- }
1949
- 50% {
1950
- -webkit-transform: rotate(0deg);
1951
- transform: rotate(0deg);
1952
- }
1953
- 100% {
1954
- -webkit-transform: rotate(90deg);
1955
- transform: rotate(90deg);
1956
- }
1957
- }
1958
- @-webkit-keyframes pacman-balls {
1959
- 75% {
1960
- opacity: 0.7;
1961
- }
1962
- 100% {
1963
- -webkit-transform: translate(-100px, -6.25px);
1964
- transform: translate(-100px, -6.25px);
1965
- }
1966
- }
1967
- @keyframes pacman-balls {
1968
- 75% {
1969
- opacity: 0.7;
1970
- }
1971
- 100% {
1972
- -webkit-transform: translate(-100px, -6.25px);
1973
- transform: translate(-100px, -6.25px);
1974
- }
1975
- }
1976
- .pacman {
1977
- position: relative;
1978
- }
1979
- .pacman > div:nth-child(2) {
1980
- -webkit-animation: pacman-balls 1s -0.99s infinite linear;
1981
- animation: pacman-balls 1s -0.99s infinite linear;
1982
- }
1983
- .pacman > div:nth-child(3) {
1984
- -webkit-animation: pacman-balls 1s -0.66s infinite linear;
1985
- animation: pacman-balls 1s -0.66s infinite linear;
1986
- }
1987
- .pacman > div:nth-child(4) {
1988
- -webkit-animation: pacman-balls 1s -0.33s infinite linear;
1989
- animation: pacman-balls 1s -0.33s infinite linear;
1990
- }
1991
- .pacman > div:nth-child(5) {
1992
- -webkit-animation: pacman-balls 1s 0s infinite linear;
1993
- animation: pacman-balls 1s 0s infinite linear;
1994
- }
1995
- .pacman > div:first-of-type {
1996
- width: 0px;
1997
- height: 0px;
1998
- border-right: 25px solid transparent !important;
1999
- border-top: 25px solid #fff;
2000
- border-left: 25px solid #fff;
2001
- border-bottom: 25px solid #fff;
2002
- border-radius: 25px;
2003
- background-color: transparent !important;
2004
- -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
2005
- animation: rotate_pacman_half_up 0.5s 0s infinite;
2006
- position: relative;
2007
- left: -30px;
2008
- }
2009
- .pacman > div:nth-child(2) {
2010
- width: 0px;
2011
- height: 0px;
2012
- border-right: 25px solid transparent !important;
2013
- border-top: 25px solid #fff;
2014
- border-left: 25px solid #fff;
2015
- border-bottom: 25px solid #fff;
2016
- border-radius: 25px;
2017
- background-color: transparent !important;
2018
- -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
2019
- animation: rotate_pacman_half_down 0.5s 0s infinite;
2020
- margin-top: -50px;
2021
- position: relative;
2022
- left: -30px;
2023
- }
2024
- .pacman > div:nth-child(3),
2025
- .pacman > div:nth-child(4),
2026
- .pacman > div:nth-child(5),
2027
- .pacman > div:nth-child(6) {
2028
- background-color: #fff;
2029
- width: 15px;
2030
- height: 15px;
2031
- border-radius: 100%;
2032
- margin: 2px;
2033
- width: 10px;
2034
- height: 10px;
2035
- position: absolute;
2036
- -webkit-transform: translate(0, -6.25px);
2037
- -ms-transform: translate(0, -6.25px);
2038
- transform: translate(0, -6.25px);
2039
- top: 25px;
2040
- left: 70px;
2041
- }
2042
- @-webkit-keyframes cube-transition {
2043
- 25% {
2044
- -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
2045
- transform: translateX(50px) scale(0.5) rotate(-90deg);
2046
- }
2047
- 50% {
2048
- -webkit-transform: translate(50px, 50px) rotate(-180deg);
2049
- transform: translate(50px, 50px) rotate(-180deg);
2050
- }
2051
- 75% {
2052
- -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
2053
- transform: translateY(50px) scale(0.5) rotate(-270deg);
2054
- }
2055
- 100% {
2056
- -webkit-transform: rotate(-360deg);
2057
- transform: rotate(-360deg);
2058
- }
2059
- }
2060
- @keyframes cube-transition {
2061
- 25% {
2062
- -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
2063
- transform: translateX(50px) scale(0.5) rotate(-90deg);
2064
- }
2065
- 50% {
2066
- -webkit-transform: translate(50px, 50px) rotate(-180deg);
2067
- transform: translate(50px, 50px) rotate(-180deg);
2068
- }
2069
- 75% {
2070
- -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
2071
- transform: translateY(50px) scale(0.5) rotate(-270deg);
2072
- }
2073
- 100% {
2074
- -webkit-transform: rotate(-360deg);
2075
- transform: rotate(-360deg);
2076
- }
2077
- }
2078
- .cube-transition {
2079
- position: relative;
2080
- -webkit-transform: translate(-25px, -25px);
2081
- -ms-transform: translate(-25px, -25px);
2082
- transform: translate(-25px, -25px);
2083
- }
2084
- .cube-transition > div {
2085
- -webkit-animation-fill-mode: both;
2086
- animation-fill-mode: both;
2087
- width: 10px;
2088
- height: 10px;
2089
- position: absolute;
2090
- top: -5px;
2091
- left: -5px;
2092
- background-color: #fff;
2093
- -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
2094
- animation: cube-transition 1.6s 0s infinite ease-in-out;
2095
- }
2096
- .cube-transition > div:last-child {
2097
- -webkit-animation-delay: -0.8s;
2098
- animation-delay: -0.8s;
2099
- }
2100
- @-webkit-keyframes spin-rotate {
2101
- 0% {
2102
- -webkit-transform: rotate(0deg);
2103
- transform: rotate(0deg);
2104
- }
2105
- 50% {
2106
- -webkit-transform: rotate(180deg);
2107
- transform: rotate(180deg);
2108
- }
2109
- 100% {
2110
- -webkit-transform: rotate(360deg);
2111
- transform: rotate(360deg);
2112
- }
2113
- }
2114
- @keyframes spin-rotate {
2115
- 0% {
2116
- -webkit-transform: rotate(0deg);
2117
- transform: rotate(0deg);
2118
- }
2119
- 50% {
2120
- -webkit-transform: rotate(180deg);
2121
- transform: rotate(180deg);
2122
- }
2123
- 100% {
2124
- -webkit-transform: rotate(360deg);
2125
- transform: rotate(360deg);
2126
- }
2127
- }
2128
- .semi-circle-spin {
2129
- position: relative;
2130
- width: 35px;
2131
- height: 35px;
2132
- overflow: hidden;
2133
- }
2134
- .semi-circle-spin > div {
2135
- position: absolute;
2136
- border-width: 0px;
2137
- border-radius: 100%;
2138
- -webkit-animation: spin-rotate 0.6s 0s infinite linear;
2139
- animation: spin-rotate 0.6s 0s infinite linear;
2140
- background-image: -webkit-linear-gradient(transparent 0%, transparent 30%, #fff 30%, #fff 100%);
2141
- background-image: linear-gradient(transparent 0%, transparent 30%, #fff 30%, #fff 100%);
2142
- width: 100%;
2143
- height: 100%;
2144
- }
2145
- @-webkit-keyframes bar-progress {
2146
- 0% {
2147
- -webkit-transform: scaleY(20%);
2148
- transform: scaleY(20%);
2149
- opacity: 1;
2150
- }
2151
- 25% {
2152
- -webkit-transform: translateX(6%) scaleY(10%);
2153
- transform: translateX(6%) scaleY(10%);
2154
- opacity: 0.7;
2155
- }
2156
- 50% {
2157
- -webkit-transform: translateX(20%) scaleY(20%);
2158
- transform: translateX(20%) scaleY(20%);
2159
- opacity: 1;
2160
- }
2161
- 75% {
2162
- -webkit-transform: translateX(6%) scaleY(10%);
2163
- transform: translateX(6%) scaleY(10%);
2164
- opacity: 0.7;
2165
- }
2166
- 100% {
2167
- -webkit-transform: scaleY(20%);
2168
- transform: scaleY(20%);
2169
- opacity: 1;
2170
- }
2171
- }
2172
- @keyframes bar-progress {
2173
- 0% {
2174
- -webkit-transform: scaleY(20%);
2175
- transform: scaleY(20%);
2176
- opacity: 1;
2177
- }
2178
- 25% {
2179
- -webkit-transform: translateX(6%) scaleY(10%);
2180
- transform: translateX(6%) scaleY(10%);
2181
- opacity: 0.7;
2182
- }
2183
- 50% {
2184
- -webkit-transform: translateX(20%) scaleY(20%);
2185
- transform: translateX(20%) scaleY(20%);
2186
- opacity: 1;
2187
- }
2188
- 75% {
2189
- -webkit-transform: translateX(6%) scaleY(10%);
2190
- transform: translateX(6%) scaleY(10%);
2191
- opacity: 0.7;
2192
- }
2193
- 100% {
2194
- -webkit-transform: scaleY(20%);
2195
- transform: scaleY(20%);
2196
- opacity: 1;
2197
- }
2198
- }
2199
- .bar-progress {
2200
- width: 30%;
2201
- height: 12px;
2202
- }
2203
- .bar-progress > div {
2204
- position: relative;
2205
- width: 20%;
2206
- height: 12px;
2207
- border-radius: 10px;
2208
- background-color: #fff;
2209
- -webkit-animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
2210
- animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
2211
- opacity: 1;
2212
- }
2213
- @-webkit-keyframes bar-swing {
2214
- 0% {
2215
- left: 0;
2216
- }
2217
- 50% {
2218
- left: 70%;
2219
- }
2220
- 100% {
2221
- left: 0;
2222
- }
2223
- }
2224
- @keyframes bar-swing {
2225
- 0% {
2226
- left: 0;
2227
- }
2228
- 50% {
2229
- left: 70%;
2230
- }
2231
- 100% {
2232
- left: 0;
2233
- }
2234
- }
2235
- .bar-swing {
2236
- width: 30%;
2237
- height: 8px;
2238
- }
2239
- .bar-swing > div {
2240
- position: relative;
2241
- width: 30%;
2242
- height: 8px;
2243
- border-radius: 10px;
2244
- background-color: #fff;
2245
- -webkit-animation: bar-swing 1.5s infinite;
2246
- animation: bar-swing 1.5s infinite;
2247
- }
2248
- @-webkit-keyframes bar-swing-container {
2249
- 0% {
2250
- left: 0;
2251
- -webkit-transform: translateX(0);
2252
- transform: translateX(0);
2253
- }
2254
- 50% {
2255
- left: 70%;
2256
- -webkit-transform: translateX(-4px);
2257
- transform: translateX(-4px);
2258
- }
2259
- 100% {
2260
- left: 0;
2261
- -webkit-transform: translateX(0);
2262
- transform: translateX(0);
2263
- }
2264
- }
2265
- @keyframes bar-swing-container {
2266
- 0% {
2267
- left: 0;
2268
- -webkit-transform: translateX(0);
2269
- transform: translateX(0);
2270
- }
2271
- 50% {
2272
- left: 70%;
2273
- -webkit-transform: translateX(-4px);
2274
- transform: translateX(-4px);
2275
- }
2276
- 100% {
2277
- left: 0;
2278
- -webkit-transform: translateX(0);
2279
- transform: translateX(0);
2280
- }
2281
- }
2282
- .bar-swing-container {
2283
- width: 20%;
2284
- height: 8px;
2285
- position: relative;
2286
- }
2287
- .bar-swing-container div:nth-child(1) {
2288
- position: absolute;
2289
- width: 100%;
2290
- background-color: rgba(255, 255, 255, 0.2);
2291
- height: 12px;
2292
- border-radius: 10px;
2293
- }
2294
- .bar-swing-container div:nth-child(2) {
2295
- position: absolute;
2296
- width: 30%;
2297
- height: 8px;
2298
- border-radius: 10px;
2299
- background-color: #fff;
2300
- -webkit-animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
2301
- animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
2302
- margin: 2px 2px 0;
2303
- }
2304
- /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2305
- /* stylelint-disable declaration-bang-space-before */
2306
- /* stylelint-disable declaration-bang-space-before */
2307
- .mds-drawer {
2308
- -webkit-box-sizing: border-box;
2309
- box-sizing: initial;
2310
- margin: 0;
2311
- padding: 0;
2312
- display: flex;
2313
- flex-direction: column;
2314
- color: rgba(0, 0, 0, 0.65);
2315
- background-color: #fff;
2316
- font-size: 14px;
2317
- font-variant: tabular-nums;
2318
- line-height: 1.5;
2319
- list-style: none;
2320
- -webkit-font-feature-settings: 'tnum';
2321
- font-feature-settings: 'tnum';
2322
- position: relative;
2323
- animation: HandleShow .3s;
2324
- }
2325
- .mds-drawer-mask {
2326
- position: fixed;
2327
- top: 0;
2328
- right: 0;
2329
- bottom: 0;
2330
- left: 0;
2331
- height: 100%;
2332
- background-color: rgba(0, 0, 0, 0.65);
2333
- animation: HandleShow .3s;
2334
- }
2335
- .mds-drawer-wrap {
2336
- position: fixed;
2337
- top: 0;
2338
- right: 0;
2339
- bottom: 0;
2340
- left: 0;
2341
- overflow: hidden;
2342
- outline: 0;
2343
- overflow-scrolling: touch;
2344
- animation: HandleShow .3s;
2345
- }
2346
- .mds-drawer-header {
2347
- display: flex;
2348
- padding: 20px;
2349
- border-bottom: 1px solid rgba(0, 0, 0, 0.15);
2350
- }
2351
- .mds-drawer-close {
2352
- color: #1E2631;
2353
- padding: 4px;
2354
- cursor: pointer;
2355
- }
2356
- .mds-drawer-close:hover {
2357
- opacity: 0.65;
2358
- }
2359
- .mds-drawer-title {
2360
- flex: auto;
2361
- color: #333;
2362
- font-weight: 500;
2363
- font-size: 18px;
2364
- line-height: 22px;
2365
- }
2366
- .mds-drawer-body {
2367
- flex: 1;
2368
- padding: 20px;
2369
- font-size: 14px;
2370
- line-height: 1.5;
2371
- word-wrap: break-word;
2372
- overflow: auto;
2373
- }
2374
- .mds-drawer-footer {
2375
- border-top: 1px solid #F0F2F5;
2376
- height: 68px;
2377
- padding: 0 20px;
2378
- display: flex;
2379
- align-items: center;
2380
- justify-content: flex-end;
2381
- }
2382
- .mds-drawer-top {
2383
- position: absolute;
2384
- top: 0;
2385
- left: 0;
2386
- right: 0;
2387
- }
2388
- .mds-drawer-right {
2389
- position: absolute;
2390
- top: 0;
2391
- bottom: 0;
2392
- right: 0;
2393
- }
2394
- .mds-drawer-bottom {
2395
- position: absolute;
2396
- left: 0;
2397
- right: 0;
2398
- bottom: 0;
2399
- }
2400
- .mds-drawer-left {
2401
- position: absolute;
2402
- top: 0;
2403
- bottom: 0;
2404
- left: 0;
2405
- }
2406
- .mds-drawer-loading {
2407
- position: absolute;
2408
- top: 0;
2409
- bottom: 0;
2410
- left: 0;
2411
- right: 0;
2412
- z-index: 99;
2413
- background: rgba(255, 255, 255, 0.9);
2414
- display: flex;
2415
- align-items: center;
2416
- justify-content: center;
2417
- }
2418
- .mds-drawer-loading .ball-spin-fade-loader {
2419
- transform: scale(0.7, 0.7);
2420
- }
2421
- .mds-drawer-loading .ball-spin-fade-loader > div {
2422
- background: #0364ff;
2423
- }
2424
- .demo-drawer-diy .mds-drawer-body {
2425
- padding: 0;
2426
- }
2427
- .demo-drawer-diy .mds-drawer-body .title {
2428
- padding-left: 20px;
2429
- color: #333;
2430
- font-weight: 500;
2431
- font-size: 18px;
2432
- line-height: 63px;
2433
- border-bottom: 1px solid rgba(0, 0, 0, 0.15);
2434
- }
2435
- .demo-drawer-diy .mds-drawer-body .content {
2436
- width: 100%;
2437
- padding: 20px;
2438
- }
2439
- .demo-drawer-diy .mds-drawer-body .content p {
2440
- color: #909399;
2441
- line-height: 40px;
2442
- }
2443
- .demo-drawer-diy .mds-drawer-body .content p span {
2444
- color: #606266;
2445
- }
2446
- .demo-drawer-diy .mds-drawer-body .content p .green {
2447
- color: #67C23A;
2448
- }
2449
- .demo-drawer-diy .mds-drawer-body .content p .image {
2450
- width: 100px;
2451
- height: 100px;
2452
- border-radius: 5px;
2453
- vertical-align: text-top;
2454
- }
2455
- @keyframes HandleShow {
2456
- 0% {
2457
- opacity: 0;
2458
- }
2459
- 100% {
2460
- opacity: 1;
2461
- }
2462
- }
2463
- /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2464
- /* stylelint-disable declaration-bang-space-before */
2465
- /* stylelint-disable declaration-bang-space-before */
1
+ @-webkit-keyframes ball-spin-fade-loader{50%{opacity:.3;-webkit-transform:scale(.4);transform:scale(.4)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-spin-fade-loader{50%{opacity:.3;-webkit-transform:scale(.4);transform:scale(.4)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.ball-spin-fade-loader{position:relative;top:-10px;left:-10px}.ball-spin-fade-loader>div:first-child{top:25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.96s infinite linear;animation:ball-spin-fade-loader 1s -.96s infinite linear}.ball-spin-fade-loader>div:nth-child(2){top:17.04545px;left:17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.84s infinite linear;animation:ball-spin-fade-loader 1s -.84s infinite linear}.ball-spin-fade-loader>div:nth-child(3){top:0;left:25px;-webkit-animation:ball-spin-fade-loader 1s -.72s infinite linear;animation:ball-spin-fade-loader 1s -.72s infinite linear}.ball-spin-fade-loader>div:nth-child(4){top:-17.04545px;left:17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.6s infinite linear;animation:ball-spin-fade-loader 1s -.6s infinite linear}.ball-spin-fade-loader>div:nth-child(5){top:-25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.48s infinite linear;animation:ball-spin-fade-loader 1s -.48s infinite linear}.ball-spin-fade-loader>div:nth-child(6){top:-17.04545px;left:-17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.36s infinite linear;animation:ball-spin-fade-loader 1s -.36s infinite linear}.ball-spin-fade-loader>div:nth-child(7){top:0;left:-25px;-webkit-animation:ball-spin-fade-loader 1s -.24s infinite linear;animation:ball-spin-fade-loader 1s -.24s infinite linear}.ball-spin-fade-loader>div:nth-child(8){top:17.04545px;left:-17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.12s infinite linear;animation:ball-spin-fade-loader 1s -.12s infinite linear}.ball-spin-fade-loader>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute}.mds-drawer{-webkit-box-sizing:border-box;box-sizing:initial;margin:0;padding:0;display:flex;flex-direction:column;color:rgba(0,0,0,.65);background-color:#fff;font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";position:relative;animation:HandleShow .3s}.mds-drawer-mask{height:100%;background-color:rgba(0,0,0,.65)}.mds-drawer-mask,.mds-drawer-wrap{position:fixed;top:0;right:0;bottom:0;left:0;animation:HandleShow .3s}.mds-drawer-wrap{overflow:hidden;outline:0;overflow-scrolling:touch}.mds-drawer-header{display:flex;padding:20px;border-bottom:1px solid rgba(0,0,0,.15)}.mds-drawer-close{color:#1e2631;padding:4px;cursor:pointer}.mds-drawer-close:hover{opacity:.65}.mds-drawer-title{flex:auto;color:#333;font-weight:500;font-size:18px;line-height:22px}.mds-drawer-body{flex:1;padding:20px;font-size:14px;line-height:1.5;word-wrap:break-word;overflow:auto}.mds-drawer-footer{border-top:1px solid #f0f2f5;height:68px;padding:0 20px;display:flex;align-items:center;justify-content:flex-end}.mds-drawer-top{position:absolute;top:0;left:0;right:0}.mds-drawer-right{position:absolute;top:0;bottom:0;right:0}.mds-drawer-bottom{position:absolute;left:0;right:0;bottom:0}.mds-drawer-left,.mds-drawer-loading{position:absolute;top:0;bottom:0;left:0}.mds-drawer-loading{right:0;z-index:99;background:hsla(0,0%,100%,.9);display:flex;align-items:center;justify-content:center}.mds-drawer-loading .ball-spin-fade-loader{transform:scale(.7)}.mds-drawer-loading .ball-spin-fade-loader>div{background:#0364ff}.demo-drawer-diy .mds-drawer-body{padding:0}.demo-drawer-diy .mds-drawer-body .title{padding-left:20px;color:#333;font-weight:500;font-size:18px;line-height:63px;border-bottom:1px solid rgba(0,0,0,.15)}.demo-drawer-diy .mds-drawer-body .content{width:100%;padding:20px}.demo-drawer-diy .mds-drawer-body .content p{color:#909399;line-height:40px}.demo-drawer-diy .mds-drawer-body .content p span{color:#606266}.demo-drawer-diy .mds-drawer-body .content p .green{color:#67c23a}.demo-drawer-diy .mds-drawer-body .content p .image{width:100px;height:100px;border-radius:5px;vertical-align:text-top}@keyframes HandleShow{0%{opacity:0}to{opacity:1}}