@mdsfe/mds-ui 0.4.0-rc.2 → 0.4.0-rc.4
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/dist/badge.js +2 -2
- package/dist/drawer.js +2 -2
- package/dist/mds-ui.min.js +2 -2
- package/dist/notification.js +2 -2
- package/dist/style/affix.css +1 -10
- package/dist/style/alert.css +1 -138
- package/dist/style/anchor.css +1 -58
- package/dist/style/avatar.css +1 -73
- package/dist/style/backtop.css +1 -34
- package/dist/style/badge.css +1 -141
- package/dist/style/bordershadow.css +1 -42
- package/dist/style/breadcrumb.css +1 -37
- package/dist/style/button.css +1 -2172
- package/dist/style/card.css +1 -156
- package/dist/style/carousel.css +1 -217
- package/dist/style/cascader.css +1 -214
- package/dist/style/cascaderpanel.css +1 -122
- package/dist/style/checkbox.css +1 -186
- package/dist/style/col.css +1 -2607
- package/dist/style/collapse.css +1 -79
- package/dist/style/color.css +1 -622
- package/dist/style/datepicker.css +1 -542
- package/dist/style/divider.css +1 -47
- package/dist/style/drawer.css +1 -2465
- package/dist/style/dropdown.css +1 -274
- package/dist/style/empty.css +1 -49
- package/dist/style/font.css +1 -45
- package/dist/style/form.css +1 -148
- package/dist/style/icon.css +1 -25
- package/dist/style/input.css +1 -760
- package/dist/style/inputnumber.css +1 -314
- package/dist/style/layout.css +1 -58
- package/dist/style/list.css +1 -141
- package/dist/style/loading.css +1 -2329
- package/dist/style/menu.css +1 -658
- package/dist/style/message.css +1 -191
- package/dist/style/modal.css +1 -123
- package/dist/style/notification.css +1 -192
- package/dist/style/pagination.css +1 -1190
- package/dist/style/popconfirm.css +1 -65
- package/dist/style/popover.css +1 -138
- package/dist/style/progress.css +1 -179
- package/dist/style/radio.css +1 -255
- package/dist/style/rate.css +1 -81
- package/dist/style/row.css +1 -2607
- package/dist/style/select.css +1 -221
- package/dist/style/slider.css +1 -80
- package/dist/style/slottable.css +1 -296
- package/dist/style/steps.css +1 -586
- package/dist/style/switch.css +1 -110
- package/dist/style/table.css +1 -2778
- package/dist/style/tabs.css +1 -518
- package/dist/style/tag.css +1 -421
- package/dist/style/text.css +1 -122
- package/dist/style/timeline.css +1 -88
- package/dist/style/timepicker.css +1 -393
- package/dist/style/tooltip.css +1 -161
- package/dist/style/transfer.css +1 -206
- package/dist/style/transition.css +1 -1413
- package/dist/style/tree.css +1 -84
- package/dist/style/typography.css +1 -126
- package/dist/style/upload.css +1 -320
- package/package.json +5 -1
|
@@ -2,1416 +2,4 @@
|
|
|
2
2
|
* Animate.less v2.0 (https://github.com/codeworksdev/animate.less)
|
|
3
3
|
* Copyright (c) 2014-2018 CODEWORKS <support@codeworksnyc.com>
|
|
4
4
|
* Licensed under the MIT license
|
|
5
|
-
*/
|
|
6
|
-
/*
|
|
7
|
-
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
|
|
8
|
-
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
|
|
9
|
-
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
|
|
10
|
-
*/
|
|
11
|
-
/*
|
|
12
|
-
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
|
|
13
|
-
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
|
|
14
|
-
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
|
|
15
|
-
*/
|
|
16
|
-
.animated {
|
|
17
|
-
animation-fill-mode: both;
|
|
18
|
-
animation-duration: 1s;
|
|
19
|
-
animation-delay: 0s;
|
|
20
|
-
animation-iteration-count: 1;
|
|
21
|
-
}
|
|
22
|
-
.animated.infinite {
|
|
23
|
-
animation-iteration-count: infinite;
|
|
24
|
-
}
|
|
25
|
-
.animated.bounce {
|
|
26
|
-
animation-name: bounce;
|
|
27
|
-
transform-origin: center bottom;
|
|
28
|
-
}
|
|
29
|
-
.animated.bounceIn {
|
|
30
|
-
animation-name: bounceIn;
|
|
31
|
-
animation-duration: 0.75s;
|
|
32
|
-
}
|
|
33
|
-
.animated.bounceInDown {
|
|
34
|
-
animation-name: bounceInDown;
|
|
35
|
-
}
|
|
36
|
-
.animated.bounceInLeft {
|
|
37
|
-
animation-name: bounceInLeft;
|
|
38
|
-
}
|
|
39
|
-
.animated.bounceInRight {
|
|
40
|
-
animation-name: bounceInRight;
|
|
41
|
-
}
|
|
42
|
-
.animated.bounceInUp {
|
|
43
|
-
animation-name: bounceInUp;
|
|
44
|
-
}
|
|
45
|
-
.animated.bounceOut {
|
|
46
|
-
animation-name: bounceOut;
|
|
47
|
-
animation-duration: 0.75s;
|
|
48
|
-
}
|
|
49
|
-
.animated.bounceOutDown {
|
|
50
|
-
animation-name: bounceOutDown;
|
|
51
|
-
}
|
|
52
|
-
.animated.bounceOutLeft {
|
|
53
|
-
animation-name: bounceOutLeft;
|
|
54
|
-
}
|
|
55
|
-
.animated.bounceOutRight {
|
|
56
|
-
animation-name: bounceOutRight;
|
|
57
|
-
}
|
|
58
|
-
.animated.bounceOutUp {
|
|
59
|
-
animation-name: bounceOutUp;
|
|
60
|
-
}
|
|
61
|
-
.animated.fadeIn {
|
|
62
|
-
animation-name: fadeIn;
|
|
63
|
-
}
|
|
64
|
-
.animated.fadeInDown {
|
|
65
|
-
animation-name: fadeInDown;
|
|
66
|
-
}
|
|
67
|
-
.animated.fadeInDownBig {
|
|
68
|
-
animation-name: fadeInDownBig;
|
|
69
|
-
}
|
|
70
|
-
.animated.fadeInLeft {
|
|
71
|
-
animation-name: fadeInLeft;
|
|
72
|
-
}
|
|
73
|
-
.animated.fadeInLeftBig {
|
|
74
|
-
animation-name: fadeInLeftBig;
|
|
75
|
-
}
|
|
76
|
-
.animated.fadeInRight {
|
|
77
|
-
animation-name: fadeInRight;
|
|
78
|
-
}
|
|
79
|
-
.animated.fadeInRightBig {
|
|
80
|
-
animation-name: fadeInRightBig;
|
|
81
|
-
}
|
|
82
|
-
.animated.fadeInUp {
|
|
83
|
-
animation-name: fadeInUp;
|
|
84
|
-
}
|
|
85
|
-
.animated.fadeInUpBig {
|
|
86
|
-
animation-name: fadeInUpBig;
|
|
87
|
-
}
|
|
88
|
-
.animated.fadeOut {
|
|
89
|
-
animation-name: fadeOut;
|
|
90
|
-
}
|
|
91
|
-
.animated.fadeOutDown {
|
|
92
|
-
animation-name: fadeOutDown;
|
|
93
|
-
}
|
|
94
|
-
.animated.fadeOutDownBig {
|
|
95
|
-
animation-name: fadeOutDownBig;
|
|
96
|
-
}
|
|
97
|
-
.animated.fadeOutLeft {
|
|
98
|
-
animation-name: fadeOutLeft;
|
|
99
|
-
}
|
|
100
|
-
.animated.fadeOutLeftBig {
|
|
101
|
-
animation-name: fadeOutLeftBig;
|
|
102
|
-
}
|
|
103
|
-
.animated.fadeOutRight {
|
|
104
|
-
animation-name: fadeOutRight;
|
|
105
|
-
}
|
|
106
|
-
.animated.fadeOutRightBig {
|
|
107
|
-
animation-name: fadeOutRightBig;
|
|
108
|
-
}
|
|
109
|
-
.animated.fadeOutUp {
|
|
110
|
-
animation-name: fadeOutUp;
|
|
111
|
-
}
|
|
112
|
-
.animated.fadeOutUpBig {
|
|
113
|
-
animation-name: fadeOutUpBig;
|
|
114
|
-
}
|
|
115
|
-
.animated.flash {
|
|
116
|
-
animation-name: flash;
|
|
117
|
-
}
|
|
118
|
-
.animated.flashmin {
|
|
119
|
-
animation-name: flashmin;
|
|
120
|
-
}
|
|
121
|
-
.animated.flip {
|
|
122
|
-
animation-name: flip;
|
|
123
|
-
backface-visibility: visible;
|
|
124
|
-
}
|
|
125
|
-
.animated.flipInX {
|
|
126
|
-
animation-name: flipInX;
|
|
127
|
-
backface-visibility: visible;
|
|
128
|
-
}
|
|
129
|
-
.animated.flipInY {
|
|
130
|
-
animation-name: flipInY;
|
|
131
|
-
backface-visibility: visible;
|
|
132
|
-
}
|
|
133
|
-
.animated.flipOutX {
|
|
134
|
-
animation-name: flipOutX;
|
|
135
|
-
backface-visibility: visible;
|
|
136
|
-
animation-duration: 0.75s;
|
|
137
|
-
}
|
|
138
|
-
.animated.flipOutY {
|
|
139
|
-
animation-name: flipOutY;
|
|
140
|
-
backface-visibility: visible;
|
|
141
|
-
animation-duration: 0.75s;
|
|
142
|
-
}
|
|
143
|
-
.animated.headShake {
|
|
144
|
-
animation-name: headShake;
|
|
145
|
-
animation-timing-function: ease-in-out;
|
|
146
|
-
}
|
|
147
|
-
.animated.hinge {
|
|
148
|
-
animation-name: hinge;
|
|
149
|
-
animation-duration: 2s;
|
|
150
|
-
}
|
|
151
|
-
.animated.jackInTheBox {
|
|
152
|
-
animation-name: jackInTheBox;
|
|
153
|
-
}
|
|
154
|
-
.animated.jello {
|
|
155
|
-
animation-name: jello;
|
|
156
|
-
transform-origin: center;
|
|
157
|
-
}
|
|
158
|
-
.animated.lightSpeedIn {
|
|
159
|
-
animation-name: lightSpeedIn;
|
|
160
|
-
animation-timing-function: ease-out;
|
|
161
|
-
}
|
|
162
|
-
.animated.lightSpeedOut {
|
|
163
|
-
animation-name: lightSpeedOut;
|
|
164
|
-
animation-timing-function: ease-in;
|
|
165
|
-
}
|
|
166
|
-
.animated.pulse {
|
|
167
|
-
animation-name: pulse;
|
|
168
|
-
}
|
|
169
|
-
.animated.rollIn {
|
|
170
|
-
animation-name: rollIn;
|
|
171
|
-
}
|
|
172
|
-
.animated.rollOut {
|
|
173
|
-
animation-name: rollOut;
|
|
174
|
-
}
|
|
175
|
-
.animated.rotate {
|
|
176
|
-
animation-name: rotate;
|
|
177
|
-
}
|
|
178
|
-
.animated.rotateCC {
|
|
179
|
-
animation-name: rotateCC;
|
|
180
|
-
}
|
|
181
|
-
.animated.rotateIn {
|
|
182
|
-
animation-name: rotateIn;
|
|
183
|
-
}
|
|
184
|
-
.animated.rotateInDownLeft {
|
|
185
|
-
animation-name: rotateInDownLeft;
|
|
186
|
-
}
|
|
187
|
-
.animated.rotateInDownRight {
|
|
188
|
-
animation-name: rotateInDownRight;
|
|
189
|
-
}
|
|
190
|
-
.animated.rotateInUpLeft {
|
|
191
|
-
animation-name: rotateInUpLeft;
|
|
192
|
-
}
|
|
193
|
-
.animated.rotateInUpRight {
|
|
194
|
-
animation-name: rotateInUpRight;
|
|
195
|
-
}
|
|
196
|
-
.animated.rotateOut {
|
|
197
|
-
animation-name: rotateOut;
|
|
198
|
-
}
|
|
199
|
-
.animated.rotateOutDownLeft {
|
|
200
|
-
animation-name: rotateOutDownLeft;
|
|
201
|
-
}
|
|
202
|
-
.animated.rotateOutDownRight {
|
|
203
|
-
animation-name: rotateOutDownRight;
|
|
204
|
-
}
|
|
205
|
-
.animated.rotateOutUpLeft {
|
|
206
|
-
animation-name: rotateOutUpLeft;
|
|
207
|
-
}
|
|
208
|
-
.animated.rotateOutUpRight {
|
|
209
|
-
animation-name: rotateOutUpRight;
|
|
210
|
-
}
|
|
211
|
-
.animated.rotateZoomIn {
|
|
212
|
-
animation-name: rotateZoomIn;
|
|
213
|
-
}
|
|
214
|
-
.animated.rotateZoomInCC {
|
|
215
|
-
animation-name: rotateZoomInCC;
|
|
216
|
-
}
|
|
217
|
-
.animated.rotateZoomOut {
|
|
218
|
-
animation-name: rotateZoomOut;
|
|
219
|
-
}
|
|
220
|
-
.animated.rotateZoomOutCC {
|
|
221
|
-
animation-name: rotateZoomOutCC;
|
|
222
|
-
}
|
|
223
|
-
.animated.rubberBand {
|
|
224
|
-
animation-name: rubberBand;
|
|
225
|
-
}
|
|
226
|
-
.animated.shake {
|
|
227
|
-
animation-name: shake;
|
|
228
|
-
}
|
|
229
|
-
.animated.slideInDown {
|
|
230
|
-
animation-name: slideInDown;
|
|
231
|
-
}
|
|
232
|
-
.animated.slideInLeft {
|
|
233
|
-
animation-name: slideInLeft;
|
|
234
|
-
}
|
|
235
|
-
.animated.slideInRight {
|
|
236
|
-
animation-name: slideInRight;
|
|
237
|
-
}
|
|
238
|
-
.animated.slideInUp {
|
|
239
|
-
animation-name: slideInUp;
|
|
240
|
-
}
|
|
241
|
-
.animated.slideOutDown {
|
|
242
|
-
animation-name: slideOutDown;
|
|
243
|
-
}
|
|
244
|
-
.animated.slideOutLeft {
|
|
245
|
-
animation-name: slideOutLeft;
|
|
246
|
-
}
|
|
247
|
-
.animated.slideOutRight {
|
|
248
|
-
animation-name: slideOutRight;
|
|
249
|
-
}
|
|
250
|
-
.animated.slideOutUp {
|
|
251
|
-
animation-name: slideOutUp;
|
|
252
|
-
}
|
|
253
|
-
.animated.swing {
|
|
254
|
-
animation-name: swing;
|
|
255
|
-
transform-origin: top center;
|
|
256
|
-
}
|
|
257
|
-
.animated.tada {
|
|
258
|
-
animation-name: tada;
|
|
259
|
-
}
|
|
260
|
-
.animated.wobble {
|
|
261
|
-
animation-name: wobble;
|
|
262
|
-
}
|
|
263
|
-
.animated.zoomIn {
|
|
264
|
-
animation-name: zoomIn;
|
|
265
|
-
}
|
|
266
|
-
.animated.zoomInDown {
|
|
267
|
-
animation-name: zoomInDown;
|
|
268
|
-
}
|
|
269
|
-
.animated.zoomInLeft {
|
|
270
|
-
animation-name: zoomInLeft;
|
|
271
|
-
}
|
|
272
|
-
.animated.zoomInRight {
|
|
273
|
-
animation-name: zoomInRight;
|
|
274
|
-
}
|
|
275
|
-
.animated.zoomInUp {
|
|
276
|
-
animation-name: zoomInUp;
|
|
277
|
-
}
|
|
278
|
-
.animated.zoomOut {
|
|
279
|
-
animation-name: zoomOut;
|
|
280
|
-
}
|
|
281
|
-
.animated.zoomOutDown {
|
|
282
|
-
animation-name: zoomOutDown;
|
|
283
|
-
}
|
|
284
|
-
.animated.zoomOutLeft {
|
|
285
|
-
animation-name: zoomOutLeft;
|
|
286
|
-
}
|
|
287
|
-
.animated.zoomOutRight {
|
|
288
|
-
animation-name: zoomOutRight;
|
|
289
|
-
}
|
|
290
|
-
.animated.zoomOutUp {
|
|
291
|
-
animation-name: zoomOutUp;
|
|
292
|
-
}
|
|
293
|
-
/*
|
|
294
|
-
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
|
|
295
|
-
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
|
|
296
|
-
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
|
|
297
|
-
*/
|
|
298
|
-
@keyframes bounce {
|
|
299
|
-
from,
|
|
300
|
-
20%,
|
|
301
|
-
53%,
|
|
302
|
-
80%,
|
|
303
|
-
to {
|
|
304
|
-
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
305
|
-
transform: translate3d(0, 0, 0);
|
|
306
|
-
}
|
|
307
|
-
40%,
|
|
308
|
-
43% {
|
|
309
|
-
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
310
|
-
transform: translate3d(0, -30px, 0);
|
|
311
|
-
}
|
|
312
|
-
70% {
|
|
313
|
-
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
|
314
|
-
transform: translate3d(0, -15px, 0);
|
|
315
|
-
}
|
|
316
|
-
90% {
|
|
317
|
-
transform: translate3d(0, -4px, 0);
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
@keyframes bounceIn {
|
|
321
|
-
from,
|
|
322
|
-
20%,
|
|
323
|
-
40%,
|
|
324
|
-
60%,
|
|
325
|
-
80%,
|
|
326
|
-
to {
|
|
327
|
-
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
328
|
-
}
|
|
329
|
-
from {
|
|
330
|
-
opacity: 0;
|
|
331
|
-
transform: scale3d(0.3, 0.3, 0.3);
|
|
332
|
-
}
|
|
333
|
-
20% {
|
|
334
|
-
transform: scale3d(1.1, 1.1, 1.1);
|
|
335
|
-
}
|
|
336
|
-
40% {
|
|
337
|
-
transform: scale3d(0.9, 0.9, 0.9);
|
|
338
|
-
}
|
|
339
|
-
60% {
|
|
340
|
-
opacity: 1;
|
|
341
|
-
transform: scale3d(1.03, 1.03, 1.03);
|
|
342
|
-
}
|
|
343
|
-
80% {
|
|
344
|
-
transform: scale3d(0.97, 0.97, 0.97);
|
|
345
|
-
}
|
|
346
|
-
to {
|
|
347
|
-
opacity: 1;
|
|
348
|
-
transform: scale3d(1, 1, 1);
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
@keyframes bounceInDown {
|
|
352
|
-
from,
|
|
353
|
-
60%,
|
|
354
|
-
75%,
|
|
355
|
-
90%,
|
|
356
|
-
to {
|
|
357
|
-
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
358
|
-
}
|
|
359
|
-
from {
|
|
360
|
-
opacity: 0;
|
|
361
|
-
transform: translate3d(0, -3000px, 0);
|
|
362
|
-
}
|
|
363
|
-
60% {
|
|
364
|
-
opacity: 1;
|
|
365
|
-
transform: translate3d(0, 25px, 0);
|
|
366
|
-
}
|
|
367
|
-
75% {
|
|
368
|
-
transform: translate3d(0, -10px, 0);
|
|
369
|
-
}
|
|
370
|
-
90% {
|
|
371
|
-
transform: translate3d(0, 5px, 0);
|
|
372
|
-
}
|
|
373
|
-
to {
|
|
374
|
-
transform: translate3d(0, 0, 0);
|
|
375
|
-
}
|
|
376
|
-
}
|
|
377
|
-
@keyframes bounceInLeft {
|
|
378
|
-
from,
|
|
379
|
-
60%,
|
|
380
|
-
75%,
|
|
381
|
-
90%,
|
|
382
|
-
to {
|
|
383
|
-
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
384
|
-
}
|
|
385
|
-
from {
|
|
386
|
-
opacity: 0;
|
|
387
|
-
transform: translate3d(-3000px, 0, 0);
|
|
388
|
-
}
|
|
389
|
-
60% {
|
|
390
|
-
opacity: 1;
|
|
391
|
-
transform: translate3d(25px, 0, 0);
|
|
392
|
-
}
|
|
393
|
-
75% {
|
|
394
|
-
transform: translate3d(-10px, 0, 0);
|
|
395
|
-
}
|
|
396
|
-
90% {
|
|
397
|
-
transform: translate3d(5px, 0, 0);
|
|
398
|
-
}
|
|
399
|
-
to {
|
|
400
|
-
transform: translate3d(0, 0, 0);
|
|
401
|
-
}
|
|
402
|
-
}
|
|
403
|
-
@keyframes bounceInRight {
|
|
404
|
-
from,
|
|
405
|
-
60%,
|
|
406
|
-
75%,
|
|
407
|
-
90%,
|
|
408
|
-
to {
|
|
409
|
-
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
410
|
-
}
|
|
411
|
-
from {
|
|
412
|
-
opacity: 0;
|
|
413
|
-
transform: translate3d(3000px, 0, 0);
|
|
414
|
-
}
|
|
415
|
-
60% {
|
|
416
|
-
opacity: 1;
|
|
417
|
-
transform: translate3d(-25px, 0, 0);
|
|
418
|
-
}
|
|
419
|
-
75% {
|
|
420
|
-
transform: translate3d(10px, 0, 0);
|
|
421
|
-
}
|
|
422
|
-
90% {
|
|
423
|
-
transform: translate3d(-5px, 0, 0);
|
|
424
|
-
}
|
|
425
|
-
to {
|
|
426
|
-
transform: translate3d(0, 0, 0);
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
@keyframes bounceInUp {
|
|
430
|
-
from,
|
|
431
|
-
60%,
|
|
432
|
-
75%,
|
|
433
|
-
90%,
|
|
434
|
-
to {
|
|
435
|
-
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
436
|
-
}
|
|
437
|
-
from {
|
|
438
|
-
opacity: 0;
|
|
439
|
-
transform: translate3d(0, 3000px, 0);
|
|
440
|
-
}
|
|
441
|
-
60% {
|
|
442
|
-
opacity: 1;
|
|
443
|
-
transform: translate3d(0, -20px, 0);
|
|
444
|
-
}
|
|
445
|
-
75% {
|
|
446
|
-
transform: translate3d(0, 10px, 0);
|
|
447
|
-
}
|
|
448
|
-
90% {
|
|
449
|
-
transform: translate3d(0, -5px, 0);
|
|
450
|
-
}
|
|
451
|
-
to {
|
|
452
|
-
transform: translate3d(0, 0, 0);
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
@keyframes bounceOut {
|
|
456
|
-
20% {
|
|
457
|
-
transform: scale3d(0.9, 0.9, 0.9);
|
|
458
|
-
}
|
|
459
|
-
50%,
|
|
460
|
-
55% {
|
|
461
|
-
opacity: 1;
|
|
462
|
-
transform: scale3d(1.1, 1.1, 1.1);
|
|
463
|
-
}
|
|
464
|
-
to {
|
|
465
|
-
opacity: 0;
|
|
466
|
-
transform: scale3d(0.3, 0.3, 0.3);
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
@keyframes bounceOutDown {
|
|
470
|
-
20% {
|
|
471
|
-
transform: translate3d(0, 10px, 0);
|
|
472
|
-
}
|
|
473
|
-
40%,
|
|
474
|
-
45% {
|
|
475
|
-
opacity: 1;
|
|
476
|
-
transform: translate3d(0, -20px, 0);
|
|
477
|
-
}
|
|
478
|
-
to {
|
|
479
|
-
opacity: 0;
|
|
480
|
-
transform: translate3d(0, 2000px, 0);
|
|
481
|
-
}
|
|
482
|
-
}
|
|
483
|
-
@keyframes bounceOutLeft {
|
|
484
|
-
20% {
|
|
485
|
-
opacity: 1;
|
|
486
|
-
transform: translate3d(20px, 0, 0);
|
|
487
|
-
}
|
|
488
|
-
to {
|
|
489
|
-
opacity: 0;
|
|
490
|
-
transform: translate3d(-2000px, 0, 0);
|
|
491
|
-
}
|
|
492
|
-
}
|
|
493
|
-
@keyframes bounceOutRight {
|
|
494
|
-
20% {
|
|
495
|
-
opacity: 1;
|
|
496
|
-
transform: translate3d(-20px, 0, 0);
|
|
497
|
-
}
|
|
498
|
-
to {
|
|
499
|
-
opacity: 0;
|
|
500
|
-
transform: translate3d(2000px, 0, 0);
|
|
501
|
-
}
|
|
502
|
-
}
|
|
503
|
-
@keyframes bounceOutUp {
|
|
504
|
-
20% {
|
|
505
|
-
transform: translate3d(0, -10px, 0);
|
|
506
|
-
}
|
|
507
|
-
40%,
|
|
508
|
-
45% {
|
|
509
|
-
opacity: 1;
|
|
510
|
-
transform: translate3d(0, 20px, 0);
|
|
511
|
-
}
|
|
512
|
-
to {
|
|
513
|
-
opacity: 0;
|
|
514
|
-
transform: translate3d(0, -2000px, 0);
|
|
515
|
-
}
|
|
516
|
-
}
|
|
517
|
-
@keyframes fadeIn {
|
|
518
|
-
from {
|
|
519
|
-
opacity: 0;
|
|
520
|
-
}
|
|
521
|
-
to {
|
|
522
|
-
opacity: 1;
|
|
523
|
-
}
|
|
524
|
-
}
|
|
525
|
-
@keyframes fadeInDown {
|
|
526
|
-
from {
|
|
527
|
-
opacity: 0;
|
|
528
|
-
transform: translate3d(0, -100%, 0);
|
|
529
|
-
}
|
|
530
|
-
to {
|
|
531
|
-
opacity: 1;
|
|
532
|
-
transform: translate3d(0, 0, 0);
|
|
533
|
-
}
|
|
534
|
-
}
|
|
535
|
-
@keyframes fadeInDownBig {
|
|
536
|
-
from {
|
|
537
|
-
opacity: 0;
|
|
538
|
-
transform: translate3d(0, -2000px, 0);
|
|
539
|
-
}
|
|
540
|
-
to {
|
|
541
|
-
opacity: 1;
|
|
542
|
-
transform: translate3d(0, 0, 0);
|
|
543
|
-
}
|
|
544
|
-
}
|
|
545
|
-
@keyframes fadeInLeft {
|
|
546
|
-
from {
|
|
547
|
-
opacity: 0;
|
|
548
|
-
transform: translate3d(-100%, 0, 0);
|
|
549
|
-
}
|
|
550
|
-
to {
|
|
551
|
-
opacity: 1;
|
|
552
|
-
transform: translate3d(0, 0, 0);
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
@keyframes fadeInLeftBig {
|
|
556
|
-
from {
|
|
557
|
-
opacity: 0;
|
|
558
|
-
transform: translate3d(-2000px, 0, 0);
|
|
559
|
-
}
|
|
560
|
-
to {
|
|
561
|
-
opacity: 1;
|
|
562
|
-
transform: translate3d(0, 0, 0);
|
|
563
|
-
}
|
|
564
|
-
}
|
|
565
|
-
@keyframes fadeInRight {
|
|
566
|
-
from {
|
|
567
|
-
opacity: 0;
|
|
568
|
-
transform: translate3d(100%, 0, 0);
|
|
569
|
-
}
|
|
570
|
-
to {
|
|
571
|
-
opacity: 1;
|
|
572
|
-
transform: translate3d(0, 0, 0);
|
|
573
|
-
}
|
|
574
|
-
}
|
|
575
|
-
@keyframes fadeInRightBig {
|
|
576
|
-
from {
|
|
577
|
-
opacity: 0;
|
|
578
|
-
transform: translate3d(2000px, 0, 0);
|
|
579
|
-
}
|
|
580
|
-
to {
|
|
581
|
-
opacity: 1;
|
|
582
|
-
transform: translate3d(0, 0, 0);
|
|
583
|
-
}
|
|
584
|
-
}
|
|
585
|
-
@keyframes fadeInUp {
|
|
586
|
-
from {
|
|
587
|
-
opacity: 0;
|
|
588
|
-
transform: translate3d(0, 100%, 0);
|
|
589
|
-
}
|
|
590
|
-
to {
|
|
591
|
-
opacity: 1;
|
|
592
|
-
transform: translate3d(0, 0, 0);
|
|
593
|
-
}
|
|
594
|
-
}
|
|
595
|
-
@keyframes fadeInUpBig {
|
|
596
|
-
from {
|
|
597
|
-
opacity: 0;
|
|
598
|
-
transform: translate3d(0, 2000px, 0);
|
|
599
|
-
}
|
|
600
|
-
to {
|
|
601
|
-
opacity: 1;
|
|
602
|
-
transform: translate3d(0, 0, 0);
|
|
603
|
-
}
|
|
604
|
-
}
|
|
605
|
-
@keyframes fadeOut {
|
|
606
|
-
from {
|
|
607
|
-
opacity: 1;
|
|
608
|
-
}
|
|
609
|
-
to {
|
|
610
|
-
opacity: 0;
|
|
611
|
-
}
|
|
612
|
-
}
|
|
613
|
-
@keyframes fadeOutDown {
|
|
614
|
-
from {
|
|
615
|
-
opacity: 1;
|
|
616
|
-
}
|
|
617
|
-
to {
|
|
618
|
-
opacity: 0;
|
|
619
|
-
transform: translate3d(0, 100%, 0);
|
|
620
|
-
}
|
|
621
|
-
}
|
|
622
|
-
@keyframes fadeOutDownBig {
|
|
623
|
-
from {
|
|
624
|
-
opacity: 1;
|
|
625
|
-
}
|
|
626
|
-
to {
|
|
627
|
-
opacity: 0;
|
|
628
|
-
transform: translate3d(0, 2000px, 0);
|
|
629
|
-
}
|
|
630
|
-
}
|
|
631
|
-
@keyframes fadeOutLeft {
|
|
632
|
-
from {
|
|
633
|
-
opacity: 1;
|
|
634
|
-
}
|
|
635
|
-
to {
|
|
636
|
-
opacity: 0;
|
|
637
|
-
transform: translate3d(-100%, 0, 0);
|
|
638
|
-
}
|
|
639
|
-
}
|
|
640
|
-
@keyframes fadeOutLeftBig {
|
|
641
|
-
from {
|
|
642
|
-
opacity: 1;
|
|
643
|
-
}
|
|
644
|
-
to {
|
|
645
|
-
opacity: 0;
|
|
646
|
-
transform: translate3d(-2000px, 0, 0);
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
@keyframes fadeOutRight {
|
|
650
|
-
from {
|
|
651
|
-
opacity: 1;
|
|
652
|
-
}
|
|
653
|
-
to {
|
|
654
|
-
opacity: 0;
|
|
655
|
-
transform: translate3d(100%, 0, 0);
|
|
656
|
-
}
|
|
657
|
-
}
|
|
658
|
-
@keyframes fadeOutRightBig {
|
|
659
|
-
from {
|
|
660
|
-
opacity: 1;
|
|
661
|
-
}
|
|
662
|
-
to {
|
|
663
|
-
opacity: 0;
|
|
664
|
-
transform: translate3d(2000px, 0, 0);
|
|
665
|
-
}
|
|
666
|
-
}
|
|
667
|
-
@keyframes fadeOutUp {
|
|
668
|
-
from {
|
|
669
|
-
opacity: 1;
|
|
670
|
-
}
|
|
671
|
-
to {
|
|
672
|
-
opacity: 0;
|
|
673
|
-
transform: translate3d(0, -100%, 0);
|
|
674
|
-
}
|
|
675
|
-
}
|
|
676
|
-
@keyframes fadeOutUpBig {
|
|
677
|
-
from {
|
|
678
|
-
opacity: 1;
|
|
679
|
-
}
|
|
680
|
-
to {
|
|
681
|
-
opacity: 0;
|
|
682
|
-
transform: translate3d(0, -2000px, 0);
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
@keyframes flash {
|
|
686
|
-
from,
|
|
687
|
-
50%,
|
|
688
|
-
to {
|
|
689
|
-
opacity: 1;
|
|
690
|
-
}
|
|
691
|
-
25%,
|
|
692
|
-
75% {
|
|
693
|
-
opacity: 0;
|
|
694
|
-
}
|
|
695
|
-
}
|
|
696
|
-
@keyframes flashmin {
|
|
697
|
-
from,
|
|
698
|
-
50%,
|
|
699
|
-
to {
|
|
700
|
-
opacity: 1;
|
|
701
|
-
}
|
|
702
|
-
25%,
|
|
703
|
-
75% {
|
|
704
|
-
opacity: 0.33;
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
@keyframes flip {
|
|
708
|
-
from {
|
|
709
|
-
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
|
|
710
|
-
animation-timing-function: ease-out;
|
|
711
|
-
}
|
|
712
|
-
40% {
|
|
713
|
-
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
|
|
714
|
-
animation-timing-function: ease-out;
|
|
715
|
-
}
|
|
716
|
-
50% {
|
|
717
|
-
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
|
|
718
|
-
animation-timing-function: ease-in;
|
|
719
|
-
}
|
|
720
|
-
80% {
|
|
721
|
-
transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
|
|
722
|
-
animation-timing-function: ease-in;
|
|
723
|
-
}
|
|
724
|
-
to {
|
|
725
|
-
transform: perspective(400px);
|
|
726
|
-
animation-timing-function: ease-in;
|
|
727
|
-
}
|
|
728
|
-
}
|
|
729
|
-
@keyframes flipInX {
|
|
730
|
-
from {
|
|
731
|
-
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
732
|
-
animation-timing-function: ease-in;
|
|
733
|
-
opacity: 0;
|
|
734
|
-
}
|
|
735
|
-
40% {
|
|
736
|
-
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
737
|
-
animation-timing-function: ease-in;
|
|
738
|
-
}
|
|
739
|
-
60% {
|
|
740
|
-
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
|
741
|
-
opacity: 1;
|
|
742
|
-
}
|
|
743
|
-
80% {
|
|
744
|
-
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
|
745
|
-
}
|
|
746
|
-
to {
|
|
747
|
-
transform: perspective(400px);
|
|
748
|
-
}
|
|
749
|
-
}
|
|
750
|
-
@keyframes flipInY {
|
|
751
|
-
from {
|
|
752
|
-
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
|
753
|
-
animation-timing-function: ease-in;
|
|
754
|
-
opacity: 0;
|
|
755
|
-
}
|
|
756
|
-
40% {
|
|
757
|
-
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
|
|
758
|
-
animation-timing-function: ease-in;
|
|
759
|
-
}
|
|
760
|
-
60% {
|
|
761
|
-
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
|
|
762
|
-
opacity: 1;
|
|
763
|
-
}
|
|
764
|
-
80% {
|
|
765
|
-
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
|
|
766
|
-
}
|
|
767
|
-
to {
|
|
768
|
-
transform: perspective(400px);
|
|
769
|
-
}
|
|
770
|
-
}
|
|
771
|
-
@keyframes flipOutX {
|
|
772
|
-
from {
|
|
773
|
-
transform: perspective(400px);
|
|
774
|
-
}
|
|
775
|
-
30% {
|
|
776
|
-
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
777
|
-
opacity: 1;
|
|
778
|
-
}
|
|
779
|
-
to {
|
|
780
|
-
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
781
|
-
opacity: 0;
|
|
782
|
-
}
|
|
783
|
-
}
|
|
784
|
-
@keyframes flipOutY {
|
|
785
|
-
from {
|
|
786
|
-
transform: perspective(400px);
|
|
787
|
-
}
|
|
788
|
-
30% {
|
|
789
|
-
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
|
|
790
|
-
opacity: 1;
|
|
791
|
-
}
|
|
792
|
-
to {
|
|
793
|
-
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
|
794
|
-
opacity: 0;
|
|
795
|
-
}
|
|
796
|
-
}
|
|
797
|
-
@keyframes headShake {
|
|
798
|
-
from {
|
|
799
|
-
transform: translateX(0);
|
|
800
|
-
}
|
|
801
|
-
6.5% {
|
|
802
|
-
transform: translateX(-6px) rotateY(-9deg);
|
|
803
|
-
}
|
|
804
|
-
18.5% {
|
|
805
|
-
transform: translateX(5px) rotateY(7deg);
|
|
806
|
-
}
|
|
807
|
-
31.5% {
|
|
808
|
-
transform: translateX(-3px) rotateY(-5deg);
|
|
809
|
-
}
|
|
810
|
-
43.5% {
|
|
811
|
-
transform: translateX(2px) rotateY(3deg);
|
|
812
|
-
}
|
|
813
|
-
50% {
|
|
814
|
-
transform: translateX(0);
|
|
815
|
-
}
|
|
816
|
-
}
|
|
817
|
-
@keyframes hinge {
|
|
818
|
-
from {
|
|
819
|
-
transform-origin: top left;
|
|
820
|
-
animation-timing-function: ease-in-out;
|
|
821
|
-
}
|
|
822
|
-
20%,
|
|
823
|
-
60% {
|
|
824
|
-
transform-origin: top left;
|
|
825
|
-
animation-timing-function: ease-in-out;
|
|
826
|
-
transform: rotate3d(0, 0, 1, 80deg);
|
|
827
|
-
}
|
|
828
|
-
40%,
|
|
829
|
-
80% {
|
|
830
|
-
transform-origin: top left;
|
|
831
|
-
animation-timing-function: ease-in-out;
|
|
832
|
-
transform: rotate3d(0, 0, 1, 60deg);
|
|
833
|
-
opacity: 1;
|
|
834
|
-
}
|
|
835
|
-
to {
|
|
836
|
-
transform: translate3d(0, 700px, 0);
|
|
837
|
-
opacity: 0;
|
|
838
|
-
}
|
|
839
|
-
}
|
|
840
|
-
@keyframes jackInTheBox {
|
|
841
|
-
from {
|
|
842
|
-
opacity: 0;
|
|
843
|
-
transform: scale(0.1) rotate(30deg);
|
|
844
|
-
transform-origin: center bottom;
|
|
845
|
-
}
|
|
846
|
-
50% {
|
|
847
|
-
transform: rotate(-10deg);
|
|
848
|
-
}
|
|
849
|
-
70% {
|
|
850
|
-
transform: rotate(3deg);
|
|
851
|
-
}
|
|
852
|
-
to {
|
|
853
|
-
opacity: 1;
|
|
854
|
-
transform: scale(1);
|
|
855
|
-
}
|
|
856
|
-
}
|
|
857
|
-
@keyframes jello {
|
|
858
|
-
from,
|
|
859
|
-
11.1% {
|
|
860
|
-
transform: translate3d(0, 0, 0);
|
|
861
|
-
}
|
|
862
|
-
22.2% {
|
|
863
|
-
transform: skewX(-12.5deg) skewY(-12.5deg);
|
|
864
|
-
}
|
|
865
|
-
33.3% {
|
|
866
|
-
transform: skewX(6.25deg) skewY(6.25deg);
|
|
867
|
-
}
|
|
868
|
-
44.4% {
|
|
869
|
-
transform: skewX(-3.125deg) skewY(-3.125deg);
|
|
870
|
-
}
|
|
871
|
-
55.5% {
|
|
872
|
-
transform: skewX(1.5625deg) skewY(1.5625deg);
|
|
873
|
-
}
|
|
874
|
-
66.6% {
|
|
875
|
-
transform: skewX(-0.78125deg) skewY(-0.78125deg);
|
|
876
|
-
}
|
|
877
|
-
77.7% {
|
|
878
|
-
transform: skewX(0.390625deg) skewY(0.390625deg);
|
|
879
|
-
}
|
|
880
|
-
88.8% {
|
|
881
|
-
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
|
|
882
|
-
}
|
|
883
|
-
}
|
|
884
|
-
@keyframes lightSpeedIn {
|
|
885
|
-
from {
|
|
886
|
-
transform: translate3d(100%, 0, 0) skewX(-30deg);
|
|
887
|
-
opacity: 0;
|
|
888
|
-
}
|
|
889
|
-
60% {
|
|
890
|
-
transform: skewX(20deg);
|
|
891
|
-
opacity: 1;
|
|
892
|
-
}
|
|
893
|
-
80% {
|
|
894
|
-
transform: skewX(-5deg);
|
|
895
|
-
opacity: 1;
|
|
896
|
-
}
|
|
897
|
-
to {
|
|
898
|
-
transform: translate3d(0, 0, 0);
|
|
899
|
-
opacity: 1;
|
|
900
|
-
}
|
|
901
|
-
}
|
|
902
|
-
@keyframes lightSpeedOut {
|
|
903
|
-
from {
|
|
904
|
-
opacity: 1;
|
|
905
|
-
}
|
|
906
|
-
to {
|
|
907
|
-
opacity: 0;
|
|
908
|
-
transform: translate3d(100%, 0, 0) skewX(30deg);
|
|
909
|
-
}
|
|
910
|
-
}
|
|
911
|
-
@keyframes pulse {
|
|
912
|
-
from {
|
|
913
|
-
transform: scale3d(1, 1, 1);
|
|
914
|
-
}
|
|
915
|
-
50% {
|
|
916
|
-
transform: scale3d(1.05, 1.05, 1.05);
|
|
917
|
-
}
|
|
918
|
-
to {
|
|
919
|
-
transform: scale3d(1, 1, 1);
|
|
920
|
-
}
|
|
921
|
-
}
|
|
922
|
-
@keyframes rollIn {
|
|
923
|
-
from {
|
|
924
|
-
opacity: 0;
|
|
925
|
-
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
|
|
926
|
-
}
|
|
927
|
-
to {
|
|
928
|
-
opacity: 1;
|
|
929
|
-
transform: translate3d(0, 0, 0);
|
|
930
|
-
}
|
|
931
|
-
}
|
|
932
|
-
@keyframes rollOut {
|
|
933
|
-
from {
|
|
934
|
-
opacity: 1;
|
|
935
|
-
}
|
|
936
|
-
to {
|
|
937
|
-
opacity: 0;
|
|
938
|
-
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
|
|
939
|
-
}
|
|
940
|
-
}
|
|
941
|
-
@keyframes rotate {
|
|
942
|
-
from {
|
|
943
|
-
transform-origin: center;
|
|
944
|
-
transform: rotate(-360deg);
|
|
945
|
-
}
|
|
946
|
-
to {
|
|
947
|
-
transform-origin: center;
|
|
948
|
-
transform: rotate(0deg);
|
|
949
|
-
}
|
|
950
|
-
}
|
|
951
|
-
@keyframes rotateCC {
|
|
952
|
-
from {
|
|
953
|
-
transform-origin: center;
|
|
954
|
-
transform: rotate(360deg);
|
|
955
|
-
}
|
|
956
|
-
to {
|
|
957
|
-
transform-origin: center;
|
|
958
|
-
transform: rotate(0deg);
|
|
959
|
-
}
|
|
960
|
-
}
|
|
961
|
-
@keyframes rotateIn {
|
|
962
|
-
from {
|
|
963
|
-
opacity: 0;
|
|
964
|
-
transform-origin: center;
|
|
965
|
-
transform: rotate3d(0, 0, 1, -200deg);
|
|
966
|
-
}
|
|
967
|
-
to {
|
|
968
|
-
opacity: 1;
|
|
969
|
-
transform-origin: center;
|
|
970
|
-
transform: translate3d(0, 0, 0);
|
|
971
|
-
}
|
|
972
|
-
}
|
|
973
|
-
@keyframes rotateInDownLeft {
|
|
974
|
-
from {
|
|
975
|
-
opacity: 0;
|
|
976
|
-
transform-origin: left bottom;
|
|
977
|
-
transform: rotate3d(0, 0, 1, -45deg);
|
|
978
|
-
}
|
|
979
|
-
to {
|
|
980
|
-
opacity: 1;
|
|
981
|
-
transform-origin: left bottom;
|
|
982
|
-
transform: translate3d(0, 0, 0);
|
|
983
|
-
}
|
|
984
|
-
}
|
|
985
|
-
@keyframes rotateInDownRight {
|
|
986
|
-
from {
|
|
987
|
-
opacity: 0;
|
|
988
|
-
transform-origin: right bottom;
|
|
989
|
-
transform: rotate3d(0, 0, 1, 45deg);
|
|
990
|
-
}
|
|
991
|
-
to {
|
|
992
|
-
opacity: 1;
|
|
993
|
-
transform-origin: right bottom;
|
|
994
|
-
transform: translate3d(0, 0, 0);
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
@keyframes rotateInUpLeft {
|
|
998
|
-
from {
|
|
999
|
-
opacity: 0;
|
|
1000
|
-
transform-origin: left bottom;
|
|
1001
|
-
transform: rotate3d(0, 0, 1, 45deg);
|
|
1002
|
-
}
|
|
1003
|
-
to {
|
|
1004
|
-
opacity: 1;
|
|
1005
|
-
transform-origin: left bottom;
|
|
1006
|
-
transform: translate3d(0, 0, 0);
|
|
1007
|
-
}
|
|
1008
|
-
}
|
|
1009
|
-
@keyframes rotateInUpRight {
|
|
1010
|
-
from {
|
|
1011
|
-
opacity: 0;
|
|
1012
|
-
transform-origin: right bottom;
|
|
1013
|
-
transform: rotate3d(0, 0, 1, -90deg);
|
|
1014
|
-
}
|
|
1015
|
-
to {
|
|
1016
|
-
opacity: 1;
|
|
1017
|
-
transform-origin: right bottom;
|
|
1018
|
-
transform: translate3d(0, 0, 0);
|
|
1019
|
-
}
|
|
1020
|
-
}
|
|
1021
|
-
@keyframes rotateOut {
|
|
1022
|
-
from {
|
|
1023
|
-
opacity: 1;
|
|
1024
|
-
transform-origin: center;
|
|
1025
|
-
}
|
|
1026
|
-
to {
|
|
1027
|
-
opacity: 0;
|
|
1028
|
-
transform-origin: center;
|
|
1029
|
-
transform: rotate3d(0, 0, 1, 200deg);
|
|
1030
|
-
}
|
|
1031
|
-
}
|
|
1032
|
-
@keyframes rotateOutDownLeft {
|
|
1033
|
-
from {
|
|
1034
|
-
opacity: 1;
|
|
1035
|
-
transform-origin: left bottom;
|
|
1036
|
-
}
|
|
1037
|
-
to {
|
|
1038
|
-
opacity: 0;
|
|
1039
|
-
transform-origin: left bottom;
|
|
1040
|
-
transform: rotate3d(0, 0, 1, 45deg);
|
|
1041
|
-
}
|
|
1042
|
-
}
|
|
1043
|
-
@keyframes rotateOutDownRight {
|
|
1044
|
-
from {
|
|
1045
|
-
opacity: 1;
|
|
1046
|
-
transform-origin: right bottom;
|
|
1047
|
-
}
|
|
1048
|
-
to {
|
|
1049
|
-
opacity: 0;
|
|
1050
|
-
transform-origin: right bottom;
|
|
1051
|
-
transform: rotate3d(0, 0, 1, -45deg);
|
|
1052
|
-
}
|
|
1053
|
-
}
|
|
1054
|
-
@keyframes rotateOutUpLeft {
|
|
1055
|
-
from {
|
|
1056
|
-
opacity: 1;
|
|
1057
|
-
transform-origin: left bottom;
|
|
1058
|
-
}
|
|
1059
|
-
to {
|
|
1060
|
-
opacity: 0;
|
|
1061
|
-
transform-origin: left bottom;
|
|
1062
|
-
transform: rotate3d(0, 0, 1, -45deg);
|
|
1063
|
-
}
|
|
1064
|
-
}
|
|
1065
|
-
@keyframes rotateOutUpRight {
|
|
1066
|
-
from {
|
|
1067
|
-
opacity: 1;
|
|
1068
|
-
transform-origin: right bottom;
|
|
1069
|
-
}
|
|
1070
|
-
to {
|
|
1071
|
-
opacity: 0;
|
|
1072
|
-
transform-origin: right bottom;
|
|
1073
|
-
transform: rotate3d(0, 0, 1, 90deg);
|
|
1074
|
-
}
|
|
1075
|
-
}
|
|
1076
|
-
@keyframes rotateZoomIn {
|
|
1077
|
-
from {
|
|
1078
|
-
opacity: 0;
|
|
1079
|
-
transform-origin: center;
|
|
1080
|
-
transform: scale3d(0.3, 0.3, 0.3) rotate(-360deg);
|
|
1081
|
-
}
|
|
1082
|
-
to {
|
|
1083
|
-
opacity: 1;
|
|
1084
|
-
transform-origin: center;
|
|
1085
|
-
transform: scale3d(1, 1, 1) rotate(0deg);
|
|
1086
|
-
}
|
|
1087
|
-
}
|
|
1088
|
-
@keyframes rotateZoomInCC {
|
|
1089
|
-
from {
|
|
1090
|
-
opacity: 0;
|
|
1091
|
-
transform-origin: center;
|
|
1092
|
-
transform: scale3d(0.3, 0.3, 0.3) rotate(360deg);
|
|
1093
|
-
}
|
|
1094
|
-
to {
|
|
1095
|
-
opacity: 1;
|
|
1096
|
-
transform-origin: center;
|
|
1097
|
-
transform: scale3d(1, 1, 1) rotate(0deg);
|
|
1098
|
-
}
|
|
1099
|
-
}
|
|
1100
|
-
@keyframes rotateZoomOut {
|
|
1101
|
-
from {
|
|
1102
|
-
opacity: 1;
|
|
1103
|
-
transform-origin: center;
|
|
1104
|
-
transform: scale3d(1, 1, 1) rotate(0deg);
|
|
1105
|
-
}
|
|
1106
|
-
to {
|
|
1107
|
-
opacity: 0;
|
|
1108
|
-
transform-origin: center;
|
|
1109
|
-
transform: scale3d(0.3, 0.3, 0.3) rotate(360deg);
|
|
1110
|
-
}
|
|
1111
|
-
}
|
|
1112
|
-
@keyframes rotateZoomOutCC {
|
|
1113
|
-
from {
|
|
1114
|
-
opacity: 1;
|
|
1115
|
-
transform-origin: center;
|
|
1116
|
-
transform: scale3d(1, 1, 1) rotate(0deg);
|
|
1117
|
-
}
|
|
1118
|
-
to {
|
|
1119
|
-
opacity: 0;
|
|
1120
|
-
transform-origin: center;
|
|
1121
|
-
transform: scale3d(0.3, 0.3, 0.3) rotate(-360deg);
|
|
1122
|
-
}
|
|
1123
|
-
}
|
|
1124
|
-
@keyframes rubberBand {
|
|
1125
|
-
from {
|
|
1126
|
-
transform: scale3d(1, 1, 1);
|
|
1127
|
-
}
|
|
1128
|
-
30% {
|
|
1129
|
-
transform: scale3d(1.25, 0.75, 1);
|
|
1130
|
-
}
|
|
1131
|
-
40% {
|
|
1132
|
-
transform: scale3d(0.75, 1.25, 1);
|
|
1133
|
-
}
|
|
1134
|
-
50% {
|
|
1135
|
-
transform: scale3d(1.15, 0.85, 1);
|
|
1136
|
-
}
|
|
1137
|
-
65% {
|
|
1138
|
-
transform: scale3d(0.95, 1.05, 1);
|
|
1139
|
-
}
|
|
1140
|
-
75% {
|
|
1141
|
-
transform: scale3d(1.05, 0.95, 1);
|
|
1142
|
-
}
|
|
1143
|
-
to {
|
|
1144
|
-
transform: scale3d(1, 1, 1);
|
|
1145
|
-
}
|
|
1146
|
-
}
|
|
1147
|
-
@keyframes shake {
|
|
1148
|
-
from,
|
|
1149
|
-
100% {
|
|
1150
|
-
transform: translate3d(0, 0, 0);
|
|
1151
|
-
}
|
|
1152
|
-
10%,
|
|
1153
|
-
30%,
|
|
1154
|
-
50%,
|
|
1155
|
-
70%,
|
|
1156
|
-
90% {
|
|
1157
|
-
transform: translate3d(-10px, 0, 0);
|
|
1158
|
-
}
|
|
1159
|
-
20%,
|
|
1160
|
-
40%,
|
|
1161
|
-
60%,
|
|
1162
|
-
80% {
|
|
1163
|
-
transform: translate3d(10px, 0, 0);
|
|
1164
|
-
}
|
|
1165
|
-
}
|
|
1166
|
-
@keyframes slideInDown {
|
|
1167
|
-
from {
|
|
1168
|
-
transform: translate3d(0, -100%, 0);
|
|
1169
|
-
visibility: visible;
|
|
1170
|
-
}
|
|
1171
|
-
to {
|
|
1172
|
-
transform: translate3d(0, 0, 0);
|
|
1173
|
-
}
|
|
1174
|
-
}
|
|
1175
|
-
@keyframes slideInLeft {
|
|
1176
|
-
from {
|
|
1177
|
-
transform: translate3d(-100%, 0, 0);
|
|
1178
|
-
visibility: visible;
|
|
1179
|
-
}
|
|
1180
|
-
to {
|
|
1181
|
-
transform: translate3d(0, 0, 0);
|
|
1182
|
-
}
|
|
1183
|
-
}
|
|
1184
|
-
@keyframes slideInRight {
|
|
1185
|
-
from {
|
|
1186
|
-
transform: translate3d(100%, 0, 0);
|
|
1187
|
-
visibility: visible;
|
|
1188
|
-
}
|
|
1189
|
-
to {
|
|
1190
|
-
transform: translate3d(0, 0, 0);
|
|
1191
|
-
}
|
|
1192
|
-
}
|
|
1193
|
-
@keyframes slideInUp {
|
|
1194
|
-
from {
|
|
1195
|
-
transform: translate3d(0, 100%, 0);
|
|
1196
|
-
visibility: visible;
|
|
1197
|
-
}
|
|
1198
|
-
to {
|
|
1199
|
-
transform: translate3d(0, 0, 0);
|
|
1200
|
-
}
|
|
1201
|
-
}
|
|
1202
|
-
@keyframes slideOutDown {
|
|
1203
|
-
from {
|
|
1204
|
-
transform: translate3d(0, 0, 0);
|
|
1205
|
-
}
|
|
1206
|
-
to {
|
|
1207
|
-
visibility: hidden;
|
|
1208
|
-
transform: translate3d(0, 100%, 0);
|
|
1209
|
-
}
|
|
1210
|
-
}
|
|
1211
|
-
@keyframes slideOutLeft {
|
|
1212
|
-
from {
|
|
1213
|
-
transform: translate3d(0, 0, 0);
|
|
1214
|
-
}
|
|
1215
|
-
to {
|
|
1216
|
-
visibility: hidden;
|
|
1217
|
-
transform: translate3d(-100%, 0, 0);
|
|
1218
|
-
}
|
|
1219
|
-
}
|
|
1220
|
-
@keyframes slideOutRight {
|
|
1221
|
-
from {
|
|
1222
|
-
transform: translate3d(0, 0, 0);
|
|
1223
|
-
}
|
|
1224
|
-
to {
|
|
1225
|
-
visibility: hidden;
|
|
1226
|
-
transform: translate3d(100%, 0, 0);
|
|
1227
|
-
}
|
|
1228
|
-
}
|
|
1229
|
-
@keyframes slideOutUp {
|
|
1230
|
-
from {
|
|
1231
|
-
transform: translate3d(0, 0, 0);
|
|
1232
|
-
}
|
|
1233
|
-
to {
|
|
1234
|
-
transform: translate3d(0, -100%, 0);
|
|
1235
|
-
visibility: hidden;
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
@keyframes swing {
|
|
1239
|
-
20% {
|
|
1240
|
-
transform: rotate3d(0, 0, 1, 15deg);
|
|
1241
|
-
}
|
|
1242
|
-
40% {
|
|
1243
|
-
transform: rotate3d(0, 0, 1, -10deg);
|
|
1244
|
-
}
|
|
1245
|
-
60% {
|
|
1246
|
-
transform: rotate3d(0, 0, 1, 5deg);
|
|
1247
|
-
}
|
|
1248
|
-
80% {
|
|
1249
|
-
transform: rotate3d(0, 0, 1, -5deg);
|
|
1250
|
-
}
|
|
1251
|
-
to {
|
|
1252
|
-
transform: rotate3d(0, 0, 1, 0deg);
|
|
1253
|
-
}
|
|
1254
|
-
}
|
|
1255
|
-
@keyframes tada {
|
|
1256
|
-
from {
|
|
1257
|
-
transform: scale3d(1, 1, 1);
|
|
1258
|
-
}
|
|
1259
|
-
10%,
|
|
1260
|
-
20% {
|
|
1261
|
-
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
|
|
1262
|
-
}
|
|
1263
|
-
30%,
|
|
1264
|
-
50%,
|
|
1265
|
-
70%,
|
|
1266
|
-
90% {
|
|
1267
|
-
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
|
|
1268
|
-
}
|
|
1269
|
-
40%,
|
|
1270
|
-
60%,
|
|
1271
|
-
80% {
|
|
1272
|
-
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
|
|
1273
|
-
}
|
|
1274
|
-
to {
|
|
1275
|
-
transform: scale3d(1, 1, 1);
|
|
1276
|
-
}
|
|
1277
|
-
}
|
|
1278
|
-
@keyframes wobble {
|
|
1279
|
-
from {
|
|
1280
|
-
transform: translate3d(0, 0, 0);
|
|
1281
|
-
}
|
|
1282
|
-
15% {
|
|
1283
|
-
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
|
|
1284
|
-
}
|
|
1285
|
-
30% {
|
|
1286
|
-
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
|
|
1287
|
-
}
|
|
1288
|
-
45% {
|
|
1289
|
-
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
|
|
1290
|
-
}
|
|
1291
|
-
60% {
|
|
1292
|
-
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
|
|
1293
|
-
}
|
|
1294
|
-
75% {
|
|
1295
|
-
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
|
|
1296
|
-
}
|
|
1297
|
-
to {
|
|
1298
|
-
transform: translate3d(0, 0, 0);
|
|
1299
|
-
}
|
|
1300
|
-
}
|
|
1301
|
-
@keyframes zoomIn {
|
|
1302
|
-
from {
|
|
1303
|
-
opacity: 0;
|
|
1304
|
-
transform: scale3d(0.3, 0.3, 0.3);
|
|
1305
|
-
}
|
|
1306
|
-
50% {
|
|
1307
|
-
opacity: 1;
|
|
1308
|
-
}
|
|
1309
|
-
}
|
|
1310
|
-
@keyframes zoomInDown {
|
|
1311
|
-
from {
|
|
1312
|
-
opacity: 0;
|
|
1313
|
-
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
|
|
1314
|
-
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
|
1315
|
-
}
|
|
1316
|
-
60% {
|
|
1317
|
-
opacity: 1;
|
|
1318
|
-
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
|
|
1319
|
-
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
1320
|
-
}
|
|
1321
|
-
}
|
|
1322
|
-
@keyframes zoomInLeft {
|
|
1323
|
-
from {
|
|
1324
|
-
opacity: 0;
|
|
1325
|
-
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
|
|
1326
|
-
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
|
1327
|
-
}
|
|
1328
|
-
60% {
|
|
1329
|
-
opacity: 1;
|
|
1330
|
-
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
|
|
1331
|
-
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
1332
|
-
}
|
|
1333
|
-
}
|
|
1334
|
-
@keyframes zoomInRight {
|
|
1335
|
-
from {
|
|
1336
|
-
opacity: 0;
|
|
1337
|
-
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
|
|
1338
|
-
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
|
1339
|
-
}
|
|
1340
|
-
60% {
|
|
1341
|
-
opacity: 1;
|
|
1342
|
-
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
|
|
1343
|
-
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
1344
|
-
}
|
|
1345
|
-
}
|
|
1346
|
-
@keyframes zoomInUp {
|
|
1347
|
-
from {
|
|
1348
|
-
opacity: 0;
|
|
1349
|
-
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
|
|
1350
|
-
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
|
1351
|
-
}
|
|
1352
|
-
60% {
|
|
1353
|
-
opacity: 1;
|
|
1354
|
-
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
|
|
1355
|
-
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
1356
|
-
}
|
|
1357
|
-
}
|
|
1358
|
-
@keyframes zoomOut {
|
|
1359
|
-
from {
|
|
1360
|
-
opacity: 1;
|
|
1361
|
-
}
|
|
1362
|
-
50% {
|
|
1363
|
-
opacity: 0;
|
|
1364
|
-
transform: scale3d(0.3, 0.3, 0.3);
|
|
1365
|
-
}
|
|
1366
|
-
to {
|
|
1367
|
-
opacity: 0;
|
|
1368
|
-
}
|
|
1369
|
-
}
|
|
1370
|
-
@keyframes zoomOutDown {
|
|
1371
|
-
40% {
|
|
1372
|
-
opacity: 1;
|
|
1373
|
-
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
|
|
1374
|
-
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
|
1375
|
-
}
|
|
1376
|
-
to {
|
|
1377
|
-
opacity: 0;
|
|
1378
|
-
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
|
|
1379
|
-
transform-origin: center bottom;
|
|
1380
|
-
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
1381
|
-
}
|
|
1382
|
-
}
|
|
1383
|
-
@keyframes zoomOutLeft {
|
|
1384
|
-
40% {
|
|
1385
|
-
opacity: 1;
|
|
1386
|
-
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
|
|
1387
|
-
}
|
|
1388
|
-
to {
|
|
1389
|
-
opacity: 0;
|
|
1390
|
-
transform: scale(0.1) translate3d(-2000px, 0, 0);
|
|
1391
|
-
transform-origin: left center;
|
|
1392
|
-
}
|
|
1393
|
-
}
|
|
1394
|
-
@keyframes zoomOutRight {
|
|
1395
|
-
40% {
|
|
1396
|
-
opacity: 1;
|
|
1397
|
-
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
|
|
1398
|
-
}
|
|
1399
|
-
to {
|
|
1400
|
-
opacity: 0;
|
|
1401
|
-
transform: scale(0.1) translate3d(2000px, 0, 0);
|
|
1402
|
-
transform-origin: right center;
|
|
1403
|
-
}
|
|
1404
|
-
}
|
|
1405
|
-
@keyframes zoomOutUp {
|
|
1406
|
-
40% {
|
|
1407
|
-
opacity: 1;
|
|
1408
|
-
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
|
|
1409
|
-
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
|
1410
|
-
}
|
|
1411
|
-
to {
|
|
1412
|
-
opacity: 0;
|
|
1413
|
-
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
|
|
1414
|
-
transform-origin: center bottom;
|
|
1415
|
-
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
|
|
1416
|
-
}
|
|
1417
|
-
}
|
|
5
|
+
*/.animated{animation-fill-mode:both;animation-duration:1s;animation-delay:0s;animation-iteration-count:1}.animated.infinite{animation-iteration-count:infinite}.animated.bounce{animation-name:bounce;transform-origin:center bottom}.animated.bounceIn{animation-name:bounceIn;animation-duration:.75s}.animated.bounceInDown{animation-name:bounceInDown}.animated.bounceInLeft{animation-name:bounceInLeft}.animated.bounceInRight{animation-name:bounceInRight}.animated.bounceInUp{animation-name:bounceInUp}.animated.bounceOut{animation-name:bounceOut;animation-duration:.75s}.animated.bounceOutDown{animation-name:bounceOutDown}.animated.bounceOutLeft{animation-name:bounceOutLeft}.animated.bounceOutRight{animation-name:bounceOutRight}.animated.bounceOutUp{animation-name:bounceOutUp}.animated.fadeIn{animation-name:fadeIn}.animated.fadeInDown{animation-name:fadeInDown}.animated.fadeInDownBig{animation-name:fadeInDownBig}.animated.fadeInLeft{animation-name:fadeInLeft}.animated.fadeInLeftBig{animation-name:fadeInLeftBig}.animated.fadeInRight{animation-name:fadeInRight}.animated.fadeInRightBig{animation-name:fadeInRightBig}.animated.fadeInUp{animation-name:fadeInUp}.animated.fadeInUpBig{animation-name:fadeInUpBig}.animated.fadeOut{animation-name:fadeOut}.animated.fadeOutDown{animation-name:fadeOutDown}.animated.fadeOutDownBig{animation-name:fadeOutDownBig}.animated.fadeOutLeft{animation-name:fadeOutLeft}.animated.fadeOutLeftBig{animation-name:fadeOutLeftBig}.animated.fadeOutRight{animation-name:fadeOutRight}.animated.fadeOutRightBig{animation-name:fadeOutRightBig}.animated.fadeOutUp{animation-name:fadeOutUp}.animated.fadeOutUpBig{animation-name:fadeOutUpBig}.animated.flash{animation-name:flash}.animated.flashmin{animation-name:flashmin}.animated.flip{animation-name:flip;backface-visibility:visible}.animated.flipInX{animation-name:flipInX;backface-visibility:visible}.animated.flipInY{animation-name:flipInY;backface-visibility:visible}.animated.flipOutX{animation-name:flipOutX}.animated.flipOutX,.animated.flipOutY{backface-visibility:visible;animation-duration:.75s}.animated.flipOutY{animation-name:flipOutY}.animated.headShake{animation-name:headShake;animation-timing-function:ease-in-out}.animated.hinge{animation-name:hinge;animation-duration:2s}.animated.jackInTheBox{animation-name:jackInTheBox}.animated.jello{animation-name:jello;transform-origin:center}.animated.lightSpeedIn{animation-name:lightSpeedIn;animation-timing-function:ease-out}.animated.lightSpeedOut{animation-name:lightSpeedOut;animation-timing-function:ease-in}.animated.pulse{animation-name:pulse}.animated.rollIn{animation-name:rollIn}.animated.rollOut{animation-name:rollOut}.animated.rotate{animation-name:rotate}.animated.rotateCC{animation-name:rotateCC}.animated.rotateIn{animation-name:rotateIn}.animated.rotateInDownLeft{animation-name:rotateInDownLeft}.animated.rotateInDownRight{animation-name:rotateInDownRight}.animated.rotateInUpLeft{animation-name:rotateInUpLeft}.animated.rotateInUpRight{animation-name:rotateInUpRight}.animated.rotateOut{animation-name:rotateOut}.animated.rotateOutDownLeft{animation-name:rotateOutDownLeft}.animated.rotateOutDownRight{animation-name:rotateOutDownRight}.animated.rotateOutUpLeft{animation-name:rotateOutUpLeft}.animated.rotateOutUpRight{animation-name:rotateOutUpRight}.animated.rotateZoomIn{animation-name:rotateZoomIn}.animated.rotateZoomInCC{animation-name:rotateZoomInCC}.animated.rotateZoomOut{animation-name:rotateZoomOut}.animated.rotateZoomOutCC{animation-name:rotateZoomOutCC}.animated.rubberBand{animation-name:rubberBand}.animated.shake{animation-name:shake}.animated.slideInDown{animation-name:slideInDown}.animated.slideInLeft{animation-name:slideInLeft}.animated.slideInRight{animation-name:slideInRight}.animated.slideInUp{animation-name:slideInUp}.animated.slideOutDown{animation-name:slideOutDown}.animated.slideOutLeft{animation-name:slideOutLeft}.animated.slideOutRight{animation-name:slideOutRight}.animated.slideOutUp{animation-name:slideOutUp}.animated.swing{animation-name:swing;transform-origin:top center}.animated.tada{animation-name:tada}.animated.wobble{animation-name:wobble}.animated.zoomIn{animation-name:zoomIn}.animated.zoomInDown{animation-name:zoomInDown}.animated.zoomInLeft{animation-name:zoomInLeft}.animated.zoomInRight{animation-name:zoomInRight}.animated.zoomInUp{animation-name:zoomInUp}.animated.zoomOut{animation-name:zoomOut}.animated.zoomOutDown{animation-name:zoomOutDown}.animated.zoomOutLeft{animation-name:zoomOutLeft}.animated.zoomOutRight{animation-name:zoomOutRight}.animated.zoomOutUp{animation-name:zoomOutUp}@keyframes bounce{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{transform:translate3d(0,-4px,0)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flashmin{0%,50%,to{opacity:1}25%,75%{opacity:.33}}@keyframes flip{0%{transform:perspective(400px) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95);animation-timing-function:ease-in}to{transform:perspective(400px);animation-timing-function:ease-in}}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}@keyframes hinge{0%{transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform-origin:top left;animation-timing-function:ease-in-out;transform:rotate(80deg)}40%,80%{transform-origin:top left;animation-timing-function:ease-in-out;transform:rotate(60deg);opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}@keyframes jello{0%,11.1%{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes lightSpeedIn{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg);opacity:1}to{transform:translateZ(0);opacity:1}}@keyframes lightSpeedOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) skewX(30deg)}}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rotate{0%{transform-origin:center;transform:rotate(-1turn)}to{transform-origin:center;transform:rotate(0deg)}}@keyframes rotateCC{0%{transform-origin:center;transform:rotate(1turn)}to{transform-origin:center;transform:rotate(0deg)}}@keyframes rotateIn{0%{opacity:0;transform-origin:center;transform:rotate(-200deg)}to{opacity:1;transform-origin:center;transform:translateZ(0)}}@keyframes rotateInDownLeft{0%{opacity:0;transform-origin:left bottom;transform:rotate(-45deg)}to{opacity:1;transform-origin:left bottom;transform:translateZ(0)}}@keyframes rotateInDownRight{0%{opacity:0;transform-origin:right bottom;transform:rotate(45deg)}to{opacity:1;transform-origin:right bottom;transform:translateZ(0)}}@keyframes rotateInUpLeft{0%{opacity:0;transform-origin:left bottom;transform:rotate(45deg)}to{opacity:1;transform-origin:left bottom;transform:translateZ(0)}}@keyframes rotateInUpRight{0%{opacity:0;transform-origin:right bottom;transform:rotate(-90deg)}to{opacity:1;transform-origin:right bottom;transform:translateZ(0)}}@keyframes rotateOut{0%{opacity:1;transform-origin:center}to{opacity:0;transform-origin:center;transform:rotate(200deg)}}@keyframes rotateOutDownLeft{0%{opacity:1;transform-origin:left bottom}to{opacity:0;transform-origin:left bottom;transform:rotate(45deg)}}@keyframes rotateOutDownRight{0%{opacity:1;transform-origin:right bottom}to{opacity:0;transform-origin:right bottom;transform:rotate(-45deg)}}@keyframes rotateOutUpLeft{0%{opacity:1;transform-origin:left bottom}to{opacity:0;transform-origin:left bottom;transform:rotate(-45deg)}}@keyframes rotateOutUpRight{0%{opacity:1;transform-origin:right bottom}to{opacity:0;transform-origin:right bottom;transform:rotate(90deg)}}@keyframes rotateZoomIn{0%{opacity:0;transform-origin:center;transform:scale3d(.3,.3,.3) rotate(-1turn)}to{opacity:1;transform-origin:center;transform:scaleX(1) rotate(0deg)}}@keyframes rotateZoomInCC{0%{opacity:0;transform-origin:center;transform:scale3d(.3,.3,.3) rotate(1turn)}to{opacity:1;transform-origin:center;transform:scaleX(1) rotate(0deg)}}@keyframes rotateZoomOut{0%{opacity:1;transform-origin:center;transform:scaleX(1) rotate(0deg)}to{opacity:0;transform-origin:center;transform:scale3d(.3,.3,.3) rotate(1turn)}}@keyframes rotateZoomOutCC{0%{opacity:1;transform-origin:center;transform:scaleX(1) rotate(0deg)}to{opacity:0;transform-origin:center;transform:scale3d(.3,.3,.3) rotate(-1turn)}}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}@keyframes shake{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}@keyframes slideOutUp{0%{transform:translateZ(0)}to{transform:translate3d(0,-100%,0);visibility:hidden}}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}
|