semantic-ui-sass 0.8.1.0 → 0.8.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/README.md +1 -1
  4. data/app/assets/javascripts/semantic-ui/dimmer.js +4 -2
  5. data/app/assets/javascripts/semantic-ui/modal.js +11 -6
  6. data/app/assets/javascripts/semantic-ui/popup.js +0 -1
  7. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +6 -2
  8. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +56 -73
  9. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +89 -53
  10. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +221 -316
  11. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +43 -88
  12. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +83 -23
  13. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +831 -187
  14. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +189 -191
  15. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +4 -22
  16. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +43 -20
  17. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1529 -472
  18. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +145 -152
  19. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +36 -63
  20. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +120 -175
  21. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +13 -11
  22. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +33 -115
  23. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +46 -101
  24. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +35 -65
  25. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +127 -170
  26. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +287 -269
  27. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +42 -129
  28. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +16 -49
  29. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +54 -107
  30. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +29 -22
  31. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +112 -147
  32. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +226 -230
  33. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +20 -28
  34. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +35 -78
  35. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +27 -44
  36. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +10 -41
  37. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +31 -60
  38. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +3 -3
  39. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +219 -451
  40. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +75 -79
  41. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +21 -23
  42. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +20 -8
  43. data/app/assets/stylesheets/semantic-ui/views/_item.scss +86 -43
  44. data/app/assets/stylesheets/semantic-ui/views/_list.scss +80 -53
  45. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +6 -1
  46. data/lib/semantic/ui/sass/version.rb +2 -2
  47. data/semantic-ui-sass.gemspec +1 -1
  48. data/spec/dummy/config/application.rb +1 -1
  49. data/spec/spec_helper.rb +0 -1
  50. data/tasks/converter.rb +7 -0
  51. metadata +4 -7
  52. data/spec/dummy/config/database.yml +0 -25
@@ -9,7 +9,6 @@
9
9
  *
10
10
  */
11
11
 
12
-
13
12
  /*******************************
14
13
  UI Tabs
15
14
  *******************************/
@@ -18,7 +17,6 @@
18
17
  display: none;
19
18
  }
20
19
 
21
-
22
20
  /*******************************
23
21
  States
24
22
  *******************************/
@@ -43,10 +41,12 @@
43
41
  min-height: 250px;
44
42
  text-indent: -10000px;
45
43
  }
44
+
46
45
  .ui.tab.loading * {
47
46
  position: relative !important;
48
47
  left: -10000px !important;
49
48
  }
49
+
50
50
  .ui.tab.loading:after {
51
51
  position: absolute;
52
52
  top: 50px;
@@ -60,4 +60,4 @@
60
60
  padding-top: 75px;
61
61
  background: image-url("semantic-ui/loader-large.gif") no-repeat 0px 0px;
62
62
  visibility: visible;
63
- }
63
+ }
@@ -12,27 +12,14 @@
12
12
  https://github.com/daneden/animate.css
13
13
  */
14
14
 
15
-
16
15
  .ui.transition {
17
16
  -webkit-animation-iteration-count: 1;
18
- -moz-animation-iteration-count: 1;
19
- -ms-animation-iteration-count: 1;
20
- -o-animation-iteration-count: 1;
21
17
  animation-iteration-count: 1;
22
-
23
18
  -webkit-animation-duration: 1s;
24
- -moz-animation-duration: 1s;
25
- -ms-animation-duration: 1s;
26
- -o-animation-duration: 1s;
27
19
  animation-duration: 1s;
28
-
29
- animation-timing-function: ease;
30
20
  -webkit-animation-timing-function: ease;
31
-
21
+ animation-timing-function: ease;
32
22
  -webkit-animation-fill-mode: both;
33
- -moz-animation-fill-mode: both;
34
- -ms-animation-fill-mode: both;
35
- -o-animation-fill-mode: both;
36
23
  animation-fill-mode: both;
37
24
  }
38
25
 
@@ -42,19 +29,15 @@
42
29
 
43
30
  .ui.animating.transition {
44
31
  -webkit-backface-visibility: hidden;
45
- -moz-backface-visibility: hidden;
46
32
  -ms-backface-visibility: hidden;
47
- -o-backface-visibility: hidden;
48
33
  backface-visibility: hidden;
49
-
50
34
  -webkit-transform: translateZ(0);
51
- -moz-transform: translateZ(0);
52
35
  -ms-transform: translateZ(0);
53
- -o-transform: translateZ(0);
54
36
  transform: translateZ(0);
55
37
  }
56
38
 
57
39
  /* Loading */
40
+
58
41
  .ui.loading.transition {
59
42
  position: absolute;
60
43
  top: -999999px;
@@ -62,22 +45,22 @@
62
45
  }
63
46
 
64
47
  /* Hidden */
48
+
65
49
  .ui.hidden.transition {
66
50
  display: none;
67
51
  }
68
52
 
69
53
  /* Visible */
54
+
70
55
  .ui.visible.transition {
71
56
  display: block;
72
57
  visibility: visible;
73
58
  }
74
59
 
75
60
  /* Disabled */
61
+
76
62
  .ui.disabled.transition {
77
63
  -webkit-animation-play-state: paused;
78
- -moz-animation-play-state: paused;
79
- -ms-animation-play-state: paused;
80
- -o-animation-play-state: paused;
81
64
  animation-play-state: paused;
82
65
  }
83
66
 
@@ -87,13 +70,9 @@
87
70
 
88
71
  .ui.looping.transition {
89
72
  -webkit-animation-iteration-count: infinite;
90
- -moz-animation-iteration-count: infinite;
91
- -ms-animation-iteration-count: infinite;
92
- -o-animation-iteration-count: infinite;
93
73
  animation-iteration-count: infinite;
94
74
  }
95
75
 
96
-
97
76
  /*******************************
98
77
  Types
99
78
  *******************************/
@@ -104,35 +83,31 @@
104
83
 
105
84
  .ui.flash.transition {
106
85
  -webkit-animation-name: flash;
107
- -moz-animation-name: flash;
108
- -o-animation-name: flash;
109
86
  animation-name: flash;
110
87
  }
88
+
111
89
  .ui.shake.transition {
112
90
  -webkit-animation-name: shake;
113
- -moz-animation-name: shake;
114
- -o-animation-name: shake;
115
91
  animation-name: shake;
116
92
  }
93
+
117
94
  .ui.bounce.transition {
118
95
  -webkit-animation-name: bounce;
119
- -moz-animation-name: bounce;
120
- -o-animation-name: bounce;
121
96
  animation-name: bounce;
122
97
  }
98
+
123
99
  .ui.tada.transition {
124
100
  -webkit-animation-name: tada;
125
- -moz-animation-name: tada;
126
- -o-animation-name: tada;
127
101
  animation-name: tada;
128
102
  }
103
+
129
104
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
105
+
130
106
  .ui.pulse.transition {
131
107
  -webkit-animation-name: pulse;
132
- -moz-animation-name: pulse;
133
- -o-animation-name: pulse;
134
108
  animation-name: pulse;
135
109
  }
110
+
136
111
  /*--------------
137
112
  Flips
138
113
  ---------------*/
@@ -140,32 +115,29 @@
140
115
  .ui.flip.transition.in,
141
116
  .ui.flip.transition.out {
142
117
  -webkit-perspective: 2000px;
118
+ -ms-perspective: 2000px;
143
119
  perspective: 2000px;
144
120
  }
121
+
145
122
  .ui.horizontal.flip.transition.in,
146
123
  .ui.horizontal.flip.transition.out {
147
124
  -webkit-animation-name: horizontalFlip;
148
- -moz-animation-name: horizontalFlip;
149
- -o-animation-name: horizontalFlip;
150
125
  animation-name: horizontalFlip;
151
126
  }
127
+
152
128
  .ui.horizontal.flip.transition.out {
153
129
  -webkit-animation-name: horizontalFlipOut;
154
- -moz-animation-name: horizontalFlipOut;
155
- -o-animation-name: horizontalFlipOut;
156
130
  animation-name: horizontalFlipOut;
157
131
  }
132
+
158
133
  .ui.vertical.flip.transition.in,
159
134
  .ui.vertical.flip.transition.out {
160
135
  -webkit-animation-name: verticalFlip;
161
- -moz-animation-name: verticalFlip;
162
- -o-animation-name: verticalFlip;
163
136
  animation-name: verticalFlip;
164
137
  }
138
+
165
139
  .ui.vertical.flip.transition.out {
166
140
  -webkit-animation-name: verticalFlipOut;
167
- -moz-animation-name: verticalFlipOut;
168
- -o-animation-name: verticalFlipOut;
169
141
  animation-name: verticalFlipOut;
170
142
  }
171
143
 
@@ -175,40 +147,31 @@
175
147
 
176
148
  .ui.fade.transition.in {
177
149
  -webkit-animation-name: fade;
178
- -moz-animation-name: fade;
179
- -o-animation-name: fade;
180
150
  animation-name: fade;
181
151
  }
152
+
182
153
  .ui.fade.transition.out {
183
154
  -webkit-animation-name: fadeOut;
184
- -moz-animation-name: fadeOut;
185
- -o-animation-name: fadeOut;
186
155
  animation-name: fadeOut;
187
156
  }
188
157
 
189
158
  .ui.fade.up.transition.in {
190
159
  -webkit-animation-name: fadeUp;
191
- -moz-animation-name: fadeUp;
192
- -o-animation-name: fadeUp;
193
160
  animation-name: fadeUp;
194
161
  }
162
+
195
163
  .ui.fade.up.transition.out {
196
164
  -webkit-animation-name: fadeUpOut;
197
- -moz-animation-name: fadeUpOut;
198
- -o-animation-name: fadeUpOut;
199
165
  animation-name: fadeUpOut;
200
166
  }
201
167
 
202
168
  .ui.fade.down.transition.in {
203
169
  -webkit-animation-name: fadeDown;
204
- -moz-animation-name: fadeDown;
205
- -o-animation-name: fadeDown;
206
170
  animation-name: fadeDown;
207
171
  }
172
+
208
173
  .ui.fade.down.transition.out {
209
174
  -webkit-animation-name: fadeDownOut;
210
- -moz-animation-name: fadeDownOut;
211
- -o-animation-name: fadeDownOut;
212
175
  animation-name: fadeDownOut;
213
176
  }
214
177
 
@@ -218,36 +181,28 @@
218
181
 
219
182
  .ui.scale.transition.in {
220
183
  -webkit-animation-name: scale;
221
- -moz-animation-name: scale;
222
- -o-animation-name: scale;
223
184
  animation-name: scale;
224
185
  }
186
+
225
187
  .ui.scale.transition.out {
226
188
  -webkit-animation-name: scaleOut;
227
- -moz-animation-name: scaleOut;
228
- -o-animation-name: scaleOut;
229
189
  animation-name: scaleOut;
230
190
  }
231
191
 
232
-
233
-
234
192
  /*--------------
235
193
  Slide
236
194
  ---------------*/
237
195
 
238
196
  .ui.slide.down.transition.in {
239
197
  -webkit-animation-name: slide;
240
- -moz-animation-name: slide;
241
- -o-animation-name: slide;
242
198
  animation-name: slide;
243
199
  transform-origin: 50% 0%;
244
200
  -ms-transform-origin: 50% 0%;
245
201
  -webkit-transform-origin: 50% 0%;
246
202
  }
203
+
247
204
  .ui.slide.down.transition.out {
248
205
  -webkit-animation-name: slideOut;
249
- -moz-animation-name: slideOut;
250
- -o-animation-name: slideOut;
251
206
  animation-name: slideOut;
252
207
  transform-origin: 50% 0%;
253
208
  -ms-transform-origin: 50% 0%;
@@ -256,82 +211,76 @@
256
211
 
257
212
  .ui.slide.up.transition.in {
258
213
  -webkit-animation-name: slide;
259
- -moz-animation-name: slide;
260
- -o-animation-name: slide;
261
214
  animation-name: slide;
262
215
  transform-origin: 50% 100%;
263
216
  -ms-transform-origin: 50% 100%;
264
217
  -webkit-transform-origin: 50% 100%;
265
218
  }
219
+
266
220
  .ui.slide.up.transition.out {
267
221
  -webkit-animation-name: slideOut;
268
- -moz-animation-name: slideOut;
269
- -o-animation-name: slideOut;
270
222
  animation-name: slideOut;
271
223
  transform-origin: 50% 100%;
272
224
  -ms-transform-origin: 50% 100%;
273
225
  -webkit-transform-origin: 50% 100%;
274
226
  }
275
227
 
276
-
277
- @-moz-keyframes slide {
278
- 0% {
279
- opacity: 0;
280
- -moz-transform: scaleY(0);
281
- }
282
- 100% {
283
- opacity: 1;
284
- -moz-transform: scaleY(1);
285
- }
286
- }
287
228
  @-webkit-keyframes slide {
288
229
  0% {
289
230
  opacity: 0;
290
231
  -webkit-transform: scaleY(0);
232
+ transform: scaleY(0);
291
233
  }
234
+
292
235
  100% {
293
236
  opacity: 1;
294
237
  -webkit-transform: scaleY(1);
238
+ transform: scaleY(1);
295
239
  }
296
240
  }
241
+
297
242
  @keyframes slide {
298
243
  0% {
299
244
  opacity: 0;
245
+ -webkit-transform: scaleY(0);
246
+ -ms-transform: scaleY(0);
300
247
  transform: scaleY(0);
301
248
  }
249
+
302
250
  100% {
303
251
  opacity: 1;
252
+ -webkit-transform: scaleY(1);
253
+ -ms-transform: scaleY(1);
304
254
  transform: scaleY(1);
305
255
  }
306
256
  }
307
257
 
308
- @-moz-keyframes slideOut {
309
- 0% {
310
- opacity: 1;
311
- -moz-transform: scaleY(1);
312
- }
313
- 100% {
314
- opacity: 0;
315
- -moz-transform: scaleY(0);
316
- }
317
- }
318
258
  @-webkit-keyframes slideOut {
319
259
  0% {
320
260
  opacity: 1;
321
261
  -webkit-transform: scaleY(1);
262
+ transform: scaleY(1);
322
263
  }
264
+
323
265
  100% {
324
266
  opacity: 0;
325
267
  -webkit-transform: scaleY(0);
268
+ transform: scaleY(0);
326
269
  }
327
270
  }
271
+
328
272
  @keyframes slideOut {
329
273
  0% {
330
274
  opacity: 1;
275
+ -webkit-transform: scaleY(1);
276
+ -ms-transform: scaleY(1);
331
277
  transform: scaleY(1);
332
278
  }
279
+
333
280
  100% {
334
281
  opacity: 0;
282
+ -webkit-transform: scaleY(0);
283
+ -ms-transform: scaleY(0);
335
284
  transform: scaleY(0);
336
285
  }
337
286
  }
@@ -345,428 +294,336 @@
345
294
  ---------------*/
346
295
 
347
296
  /* Flash */
297
+
348
298
  @-webkit-keyframes flash {
349
299
  0%, 50%, 100% {
350
300
  opacity: 1;
351
301
  }
302
+
352
303
  25%, 75% {
353
304
  opacity: 0;
354
305
  }
355
306
  }
356
- @-moz-keyframes flash {
357
- 0%, 50%, 100% {
358
- opacity: 1;
359
- }
360
- 25%, 75% {
361
- opacity: 0;
362
- }
363
- }
364
- @-o-keyframes flash {
365
- 0%, 50%, 100% {
366
- opacity: 1;
367
- }
368
- 25%, 75% {
369
- opacity: 0;
370
- }
371
- }
307
+
372
308
  @keyframes flash {
373
309
  0%, 50%, 100% {
374
310
  opacity: 1;
375
311
  }
312
+
376
313
  25%, 75% {
377
314
  opacity: 0;
378
315
  }
379
316
  }
380
317
 
381
318
  /* Shake */
319
+
382
320
  @-webkit-keyframes shake {
383
321
  0%, 100% {
384
322
  -webkit-transform: translateX(0);
323
+ transform: translateX(0);
385
324
  }
325
+
386
326
  10%, 30%, 50%, 70%, 90% {
387
327
  -webkit-transform: translateX(-10px);
328
+ transform: translateX(-10px);
388
329
  }
330
+
389
331
  20%, 40%, 60%, 80% {
390
332
  -webkit-transform: translateX(10px);
333
+ transform: translateX(10px);
391
334
  }
392
335
  }
393
- @-moz-keyframes shake {
394
- 0%, 100% {
395
- -moz-transform: translateX(0);
396
- }
397
- 10%, 30%, 50%, 70%, 90% {
398
- -moz-transform: translateX(-10px);
399
- }
400
- 20%, 40%, 60%, 80% {
401
- -moz-transform: translateX(10px);
402
- }
403
- }
404
- @-o-keyframes shake {
405
- 0%, 100% {
406
- -o-transform: translateX(0);
407
- }
408
- 10%, 30%, 50%, 70%, 90% {
409
- -o-transform: translateX(-10px);
410
- }
411
- 20%, 40%, 60%, 80% {
412
- -o-transform: translateX(10px);
413
- }
414
- }
336
+
415
337
  @keyframes shake {
416
338
  0%, 100% {
339
+ -webkit-transform: translateX(0);
340
+ -ms-transform: translateX(0);
417
341
  transform: translateX(0);
418
342
  }
343
+
419
344
  10%, 30%, 50%, 70%, 90% {
345
+ -webkit-transform: translateX(-10px);
346
+ -ms-transform: translateX(-10px);
420
347
  transform: translateX(-10px);
421
348
  }
349
+
422
350
  20%, 40%, 60%, 80% {
351
+ -webkit-transform: translateX(10px);
352
+ -ms-transform: translateX(10px);
423
353
  transform: translateX(10px);
424
354
  }
425
355
  }
426
356
 
427
357
  /* Bounce */
358
+
428
359
  @-webkit-keyframes bounce {
429
360
  0%, 20%, 50%, 80%, 100% {
430
361
  -webkit-transform: translateY(0);
362
+ transform: translateY(0);
431
363
  }
364
+
432
365
  40% {
433
366
  -webkit-transform: translateY(-30px);
367
+ transform: translateY(-30px);
434
368
  }
369
+
435
370
  60% {
436
371
  -webkit-transform: translateY(-15px);
372
+ transform: translateY(-15px);
437
373
  }
438
374
  }
439
- @-moz-keyframes bounce {
440
- 0%, 20%, 50%, 80%, 100% {
441
- -moz-transform: translateY(0);
442
- }
443
- 40% {
444
- -moz-transform: translateY(-30px);
445
- }
446
- 60% {
447
- -moz-transform: translateY(-15px);
448
- }
449
- }
450
- @-o-keyframes bounce {
451
- 0%, 20%, 50%, 80%, 100% {
452
- -o-transform: translateY(0);
453
- }
454
- 40% {
455
- -o-transform: translateY(-30px);
456
- }
457
- 60% {
458
- -o-transform: translateY(-15px);
459
- }
460
- }
375
+
461
376
  @keyframes bounce {
462
377
  0%, 20%, 50%, 80%, 100% {
378
+ -webkit-transform: translateY(0);
379
+ -ms-transform: translateY(0);
463
380
  transform: translateY(0);
464
381
  }
382
+
465
383
  40% {
384
+ -webkit-transform: translateY(-30px);
385
+ -ms-transform: translateY(-30px);
466
386
  transform: translateY(-30px);
467
387
  }
388
+
468
389
  60% {
390
+ -webkit-transform: translateY(-15px);
391
+ -ms-transform: translateY(-15px);
469
392
  transform: translateY(-15px);
470
393
  }
471
394
  }
472
395
 
473
396
  /* Tada */
397
+
474
398
  @-webkit-keyframes tada {
475
399
  0% {
476
- -webkit-transform: scale(1);
400
+ -webkit-transform: scale(1);
401
+ transform: scale(1);
477
402
  }
403
+
478
404
  10%, 20% {
479
405
  -webkit-transform: scale(0.9) rotate(-3deg);
406
+ transform: scale(0.9) rotate(-3deg);
480
407
  }
408
+
481
409
  30%, 50%, 70%, 90% {
482
410
  -webkit-transform: scale(1.1) rotate(3deg);
411
+ transform: scale(1.1) rotate(3deg);
483
412
  }
413
+
484
414
  40%, 60%, 80% {
485
415
  -webkit-transform: scale(1.1) rotate(-3deg);
416
+ transform: scale(1.1) rotate(-3deg);
486
417
  }
418
+
487
419
  100% {
488
420
  -webkit-transform: scale(1) rotate(0);
489
- }
490
- }
491
- @-moz-keyframes tada {
492
- 0% {
493
- -moz-transform: scale(1);
494
- }
495
- 10%, 20% {
496
- -moz-transform: scale(0.9) rotate(-3deg);
497
- }
498
- 30%, 50%, 70%, 90% {
499
- -moz-transform: scale(1.1) rotate(3deg);
500
- }
501
- 40%, 60%, 80% {
502
- -moz-transform: scale(1.1) rotate(-3deg);
503
- }
504
- 100% {
505
- -moz-transform: scale(1) rotate(0);
506
- }
507
- }
508
- @-o-keyframes tada {
509
- 0% {
510
- -o-transform: scale(1);
511
- }
512
- 10%, 20% {
513
- -o-transform: scale(0.9) rotate(-3deg);
514
- }
515
- 30%, 50%, 70%, 90% {
516
- -o-transform: scale(1.1) rotate(3deg);
517
- }
518
- 40%, 60%, 80% {
519
- -o-transform: scale(1.1) rotate(-3deg);
520
- }
521
- 100% {
522
- -o-transform: scale(1) rotate(0);
421
+ transform: scale(1) rotate(0);
523
422
  }
524
423
  }
525
424
 
526
425
  @keyframes tada {
527
426
  0% {
427
+ -webkit-transform: scale(1);
428
+ -ms-transform: scale(1);
528
429
  transform: scale(1);
529
430
  }
431
+
530
432
  10%, 20% {
433
+ -webkit-transform: scale(0.9) rotate(-3deg);
434
+ -ms-transform: scale(0.9) rotate(-3deg);
531
435
  transform: scale(0.9) rotate(-3deg);
532
436
  }
437
+
533
438
  30%, 50%, 70%, 90% {
439
+ -webkit-transform: scale(1.1) rotate(3deg);
440
+ -ms-transform: scale(1.1) rotate(3deg);
534
441
  transform: scale(1.1) rotate(3deg);
535
442
  }
443
+
536
444
  40%, 60%, 80% {
445
+ -webkit-transform: scale(1.1) rotate(-3deg);
446
+ -ms-transform: scale(1.1) rotate(-3deg);
537
447
  transform: scale(1.1) rotate(-3deg);
538
448
  }
449
+
539
450
  100% {
451
+ -webkit-transform: scale(1) rotate(0);
452
+ -ms-transform: scale(1) rotate(0);
540
453
  transform: scale(1) rotate(0);
541
454
  }
542
455
  }
543
456
 
457
+ /* Pulse */
458
+
544
459
  @-webkit-keyframes pulse {
545
460
  0% {
546
461
  -webkit-transform: scale(1);
462
+ transform: scale(1);
547
463
  opacity: 1;
548
464
  }
549
- 50% {
550
- -webkit-transform: scale(0.9);
551
- opacity: 0.7;
552
- }
553
- 100% {
554
- -webkit-transform: scale(1);
555
- opacity: 1;
556
- }
557
- }
558
465
 
559
- @-o-keyframes pulse {
560
- 0% {
561
- -o-transform: scale(1);
562
- opacity: 1;
563
- }
564
466
  50% {
565
- -o-transform: scale(0.9);
467
+ -webkit-transform: scale(0.9);
468
+ transform: scale(0.9);
566
469
  opacity: 0.7;
567
470
  }
568
- 100% {
569
- -o-transform: scale(1);
570
- opacity: 1;
571
- }
572
- }
573
471
 
574
- @-moz-keyframes pulse {
575
- 0% {
576
- -moz-transform: scale(1);
577
- opacity: 1;
578
- }
579
- 50% {
580
- -moz-transform: scale(0.9);
581
- opacity: 0.7;
582
- }
583
472
  100% {
584
- -moz-transform: scale(1);
473
+ -webkit-transform: scale(1);
474
+ transform: scale(1);
585
475
  opacity: 1;
586
476
  }
587
477
  }
588
478
 
589
479
  @keyframes pulse {
590
480
  0% {
481
+ -webkit-transform: scale(1);
482
+ -ms-transform: scale(1);
591
483
  transform: scale(1);
592
484
  opacity: 1;
593
485
  }
486
+
594
487
  50% {
488
+ -webkit-transform: scale(0.9);
489
+ -ms-transform: scale(0.9);
595
490
  transform: scale(0.9);
596
491
  opacity: 0.7;
597
492
  }
493
+
598
494
  100% {
495
+ -webkit-transform: scale(1);
496
+ -ms-transform: scale(1);
599
497
  transform: scale(1);
600
498
  opacity: 1;
601
499
  }
602
-
603
500
  }
604
501
 
605
-
606
502
  /*--------------
607
503
  Flips
608
504
  ---------------*/
609
505
 
610
506
  /* Horizontal */
507
+
611
508
  @-webkit-keyframes horizontalFlip {
612
509
  0% {
613
510
  -webkit-transform: rotateY(-90deg);
511
+ transform: rotateY(-90deg);
614
512
  opacity: 0;
615
513
  }
514
+
616
515
  100% {
617
516
  -webkit-transform: rotateY(0deg);
517
+ transform: rotateY(0deg);
618
518
  opacity: 1;
619
519
  }
620
520
  }
621
- @-moz-keyframes horizontalFlip {
622
- 0% {
623
- -moz-transform: rotateY(-90deg);
624
- opacity: 0;
625
- }
626
- 100% {
627
- -moz-transform: rotateY(0deg);
628
- opacity: 1;
629
- }
630
- }
631
- @-o-keyframes horizontalFlip {
632
- 0% {
633
- -o-transform: rotateY(-90deg);
634
- opacity: 0;
635
- }
636
- 100% {
637
- -o-transform: rotateY(0deg);
638
- opacity: 1;
639
- }
640
- }
521
+
641
522
  @keyframes horizontalFlip {
642
523
  0% {
524
+ -webkit-transform: rotateY(-90deg);
525
+ -ms-transform: rotateY(-90deg);
643
526
  transform: rotateY(-90deg);
644
527
  opacity: 0;
645
528
  }
529
+
646
530
  100% {
531
+ -webkit-transform: rotateY(0deg);
532
+ -ms-transform: rotateY(0deg);
647
533
  transform: rotateY(0deg);
648
534
  opacity: 1;
649
535
  }
650
536
  }
537
+
651
538
  /* Horizontal */
539
+
652
540
  @-webkit-keyframes horizontalFlipOut {
653
541
  0% {
654
542
  -webkit-transform: rotateY(0deg);
543
+ transform: rotateY(0deg);
655
544
  opacity: 0;
656
545
  }
546
+
657
547
  100% {
658
548
  -webkit-transform: rotateY(90deg);
549
+ transform: rotateY(90deg);
659
550
  opacity: 1;
660
551
  }
661
552
  }
662
- @-moz-keyframes horizontalFlipOut {
663
- 0% {
664
- -moz-transform: rotateY(0deg);
665
- opacity: 0;
666
- }
667
- 100% {
668
- -moz-transform: rotateY(90deg);
669
- opacity: 1;
670
- }
671
- }
672
- @-o-keyframes horizontalFlipOut {
673
- 0% {
674
- -o-transform: rotateY(0deg);
675
- opacity: 0;
676
- }
677
- 100% {
678
- -o-transform: rotateY(90deg);
679
- opacity: 1;
680
- }
681
- }
553
+
682
554
  @keyframes horizontalFlipOut {
683
555
  0% {
556
+ -webkit-transform: rotateY(0deg);
557
+ -ms-transform: rotateY(0deg);
684
558
  transform: rotateY(0deg);
685
559
  opacity: 0;
686
560
  }
561
+
687
562
  100% {
563
+ -webkit-transform: rotateY(90deg);
564
+ -ms-transform: rotateY(90deg);
688
565
  transform: rotateY(90deg);
689
566
  opacity: 1;
690
567
  }
691
568
  }
692
569
 
693
570
  /* Vertical */
571
+
694
572
  @-webkit-keyframes verticalFlip {
695
573
  0% {
696
574
  -webkit-transform: rotateX(-90deg);
575
+ transform: rotateX(-90deg);
697
576
  opacity: 0;
698
577
  }
578
+
699
579
  100% {
700
580
  -webkit-transform: rotateX(0deg);
581
+ transform: rotateX(0deg);
701
582
  opacity: 1;
702
583
  }
703
584
  }
704
- @-moz-keyframes verticalFlip {
705
- 0% {
706
- -moz-transform: rotateX(-90deg);
707
- opacity: 0;
708
- }
709
- 100% {
710
- -moz-transform: rotateX(0deg);
711
- opacity: 1;
712
- }
713
- }
714
- @-o-keyframes verticalFlip {
715
- 0% {
716
- -o-transform: rotateX(-90deg);
717
- opacity: 0;
718
- }
719
- 100% {
720
- -o-transform: rotateX(0deg);
721
- opacity: 1;
722
- }
723
- }
585
+
724
586
  @keyframes verticalFlip {
725
587
  0% {
588
+ -webkit-transform: rotateX(-90deg);
589
+ -ms-transform: rotateX(-90deg);
726
590
  transform: rotateX(-90deg);
727
591
  opacity: 0;
728
592
  }
593
+
729
594
  100% {
595
+ -webkit-transform: rotateX(0deg);
596
+ -ms-transform: rotateX(0deg);
730
597
  transform: rotateX(0deg);
731
598
  opacity: 1;
732
599
  }
733
600
  }
601
+
734
602
  @-webkit-keyframes verticalFlipOut {
735
603
  0% {
736
604
  -webkit-transform: rotateX(0deg);
605
+ transform: rotateX(0deg);
737
606
  opacity: 1;
738
607
  }
608
+
739
609
  100% {
740
610
  -webkit-transform: rotateX(-90deg);
611
+ transform: rotateX(-90deg);
741
612
  opacity: 0;
742
613
  }
743
614
  }
744
- @-moz-keyframes verticalFlipOut {
745
- 0% {
746
- -moz-transform: rotateX(0deg);
747
- opacity: 1;
748
- }
749
- 100% {
750
- -moz-transform: rotateX(-90deg);
751
- opacity: 0;
752
- }
753
- }
754
- @-o-keyframes verticalFlipOut {
755
- 0% {
756
- -o-transform: rotateX(0deg);
757
- opacity: 1;
758
- }
759
- 100% {
760
- -o-transform: rotateX(-90deg);
761
- opacity: 0;
762
- }
763
- }
615
+
764
616
  @keyframes verticalFlipOut {
765
617
  0% {
618
+ -webkit-transform: rotateX(0deg);
619
+ -ms-transform: rotateX(0deg);
766
620
  transform: rotateX(0deg);
767
621
  opacity: 1;
768
622
  }
623
+
769
624
  100% {
625
+ -webkit-transform: rotateX(-90deg);
626
+ -ms-transform: rotateX(-90deg);
770
627
  transform: rotateX(-90deg);
771
628
  opacity: 0;
772
629
  }
@@ -777,34 +634,22 @@
777
634
  ---------------*/
778
635
 
779
636
  /* Fade */
637
+
780
638
  @-webkit-keyframes fade {
781
639
  0% {
782
640
  opacity: 0;
783
641
  }
642
+
784
643
  100% {
785
644
  opacity: 1;
786
645
  }
787
646
  }
788
- @-moz-keyframes fade {
789
- 0% {
790
- opacity: 0;
791
- }
792
- 100% {
793
- opacity: 1;
794
- }
795
- }
796
- @-o-keyframes fade {
797
- 0% {
798
- opacity: 0;
799
- }
800
- 100% {
801
- opacity: 1;
802
- }
803
- }
647
+
804
648
  @keyframes fade {
805
649
  0% {
806
650
  opacity: 0;
807
651
  }
652
+
808
653
  100% {
809
654
  opacity: 1;
810
655
  }
@@ -814,73 +659,50 @@
814
659
  0% {
815
660
  opacity: 1;
816
661
  }
662
+
817
663
  100% {
818
664
  opacity: 0;
819
665
  }
820
666
  }
821
- @-moz-keyframes fadeOut {
822
- 0% {
823
- opacity: 1;
824
- }
825
- 100% {
826
- opacity: 0;
827
- }
828
- }
829
- @-o-keyframes fadeOut {
830
- 0% {
831
- opacity: 1;
832
- }
833
- 100% {
834
- opacity: 0;
835
- }
836
- }
667
+
837
668
  @keyframes fadeOut {
838
669
  0% {
839
670
  opacity: 1;
840
671
  }
672
+
841
673
  100% {
842
674
  opacity: 0;
843
675
  }
844
676
  }
845
677
 
846
678
  /* Fade Up */
679
+
847
680
  @-webkit-keyframes fadeUp {
848
681
  0% {
849
682
  opacity: 0;
850
683
  -webkit-transform: translateY(20px);
684
+ transform: translateY(20px);
851
685
  }
686
+
852
687
  100% {
853
688
  opacity: 1;
854
689
  -webkit-transform: translateY(0);
690
+ transform: translateY(0);
855
691
  }
856
692
  }
857
- @-moz-keyframes fadeUp {
858
- 0% {
859
- opacity: 0;
860
- -moz-transform: translateY(20px);
861
- }
862
- 100% {
863
- opacity: 1;
864
- -moz-transform: translateY(0);
865
- }
866
- }
867
- @-o-keyframes fadeUp {
868
- 0% {
869
- opacity: 0;
870
- -o-transform: translateY(20px);
871
- }
872
- 100% {
873
- opacity: 1;
874
- -o-transform: translateY(0);
875
- }
876
- }
693
+
877
694
  @keyframes fadeUp {
878
695
  0% {
879
696
  opacity: 0;
697
+ -webkit-transform: translateY(20px);
698
+ -ms-transform: translateY(20px);
880
699
  transform: translateY(20px);
881
700
  }
701
+
882
702
  100% {
883
703
  opacity: 1;
704
+ -webkit-transform: translateY(0);
705
+ -ms-transform: translateY(0);
884
706
  transform: translateY(0);
885
707
  }
886
708
  }
@@ -889,123 +711,90 @@
889
711
  0% {
890
712
  opacity: 1;
891
713
  -webkit-transform: translateY(0);
714
+ transform: translateY(0);
892
715
  }
716
+
893
717
  100% {
894
718
  opacity: 0;
895
719
  -webkit-transform: translateY(20px);
720
+ transform: translateY(20px);
896
721
  }
897
722
  }
898
- @-moz-keyframes fadeUpOut {
899
- 0% {
900
- opacity: 1;
901
- -moz-transform: translateY(0);
902
- }
903
- 100% {
904
- opacity: 0;
905
- -moz-transform: translateY(20px);
906
- }
907
- }
908
- @-o-keyframes fadeUpOut {
909
- 0% {
910
- opacity: 1;
911
- -o-transform: translateY(0);
912
- }
913
- 100% {
914
- opacity: 0;
915
- -o-transform: translateY(20px);
916
- }
917
- }
723
+
918
724
  @keyframes fadeUpOut {
919
725
  0% {
920
726
  opacity: 1;
727
+ -webkit-transform: translateY(0);
728
+ -ms-transform: translateY(0);
921
729
  transform: translateY(0);
922
730
  }
731
+
923
732
  100% {
924
733
  opacity: 0;
734
+ -webkit-transform: translateY(20px);
735
+ -ms-transform: translateY(20px);
925
736
  transform: translateY(20px);
926
737
  }
927
738
  }
928
739
 
929
740
  /* Fade Down */
741
+
930
742
  @-webkit-keyframes fadeDown {
931
743
  0% {
932
744
  opacity: 0;
933
745
  -webkit-transform: translateY(-20px);
746
+ transform: translateY(-20px);
934
747
  }
748
+
935
749
  100% {
936
750
  opacity: 1;
937
751
  -webkit-transform: translateY(0);
752
+ transform: translateY(0);
938
753
  }
939
754
  }
940
- @-moz-keyframes fadeDown {
941
- 0% {
942
- opacity: 0;
943
- -moz-transform: translateY(-20px);
944
- }
945
- 100% {
946
- opacity: 1;
947
- -moz-transform: translateY(0);
948
- }
949
- }
950
- @-o-keyframes fadeDown {
951
- 0% {
952
- opacity: 0;
953
- -o-transform: translateY(-20px);
954
- }
955
- 100% {
956
- opacity: 1;
957
- -o-transform: translateY(0);
958
- }
959
- }
755
+
960
756
  @keyframes fadeDown {
961
757
  0% {
962
758
  opacity: 0;
759
+ -webkit-transform: translateY(-20px);
760
+ -ms-transform: translateY(-20px);
963
761
  transform: translateY(-20px);
964
762
  }
763
+
965
764
  100% {
966
765
  opacity: 1;
766
+ -webkit-transform: translateY(0);
767
+ -ms-transform: translateY(0);
967
768
  transform: translateY(0);
968
769
  }
969
770
  }
970
771
 
971
-
972
772
  @-webkit-keyframes fadeDownOut {
973
773
  0% {
974
774
  opacity: 1;
975
775
  -webkit-transform: translateY(0);
776
+ transform: translateY(0);
976
777
  }
778
+
977
779
  100% {
978
780
  opacity: 0;
979
781
  -webkit-transform: translateY(-20px);
782
+ transform: translateY(-20px);
980
783
  }
981
784
  }
982
- @-moz-keyframes fadeDownOut {
983
- 0% {
984
- opacity: 1;
985
- -moz-transform: translateY(0);
986
- }
987
- 100% {
988
- opacity: 0;
989
- -moz-transform: translateY(-20px);
990
- }
991
- }
992
- @-o-keyframes fadeDownOut {
993
- 0% {
994
- opacity: 1;
995
- -o-transform: translateY(0);
996
- }
997
- 100% {
998
- opacity: 0;
999
- -o-transform: translateY(-20px);
1000
- }
1001
- }
785
+
1002
786
  @keyframes fadeDownOut {
1003
787
  0% {
1004
788
  opacity: 1;
789
+ -webkit-transform: translateY(0);
790
+ -ms-transform: translateY(0);
1005
791
  transform: translateY(0);
1006
792
  }
793
+
1007
794
  100% {
1008
795
  opacity: 0;
796
+ -webkit-transform: translateY(-20px);
797
+ -ms-transform: translateY(-20px);
1009
798
  transform: translateY(-20px);
1010
799
  }
1011
800
  }
@@ -1015,43 +804,33 @@
1015
804
  ---------------*/
1016
805
 
1017
806
  /* Scale */
807
+
1018
808
  @-webkit-keyframes scale {
1019
809
  0% {
1020
810
  opacity: 0;
1021
811
  -webkit-transform: scale(0.7);
812
+ transform: scale(0.7);
1022
813
  }
814
+
1023
815
  100% {
1024
816
  opacity: 1;
1025
817
  -webkit-transform: scale(1);
818
+ transform: scale(1);
1026
819
  }
1027
820
  }
1028
- @-moz-keyframes scale {
1029
- 0% {
1030
- opacity: 0;
1031
- -moz-transform: scale(0.7);
1032
- }
1033
- 100% {
1034
- opacity: 1;
1035
- -moz-transform: scale(1);
1036
- }
1037
- }
1038
- @-o-keyframes scale {
1039
- 0% {
1040
- opacity: 0;
1041
- -o-transform: scale(0.7);
1042
- }
1043
- 100% {
1044
- opacity: 1;
1045
- -o-transform: scale(1);
1046
- }
1047
- }
821
+
1048
822
  @keyframes scale {
1049
823
  0% {
1050
824
  opacity: 0;
825
+ -webkit-transform: scale(0.7);
826
+ -ms-transform: scale(0.7);
1051
827
  transform: scale(0.7);
1052
828
  }
829
+
1053
830
  100% {
1054
831
  opacity: 1;
832
+ -webkit-transform: scale(1);
833
+ -ms-transform: scale(1);
1055
834
  transform: scale(1);
1056
835
  }
1057
836
  }
@@ -1060,39 +839,28 @@
1060
839
  0% {
1061
840
  opacity: 1;
1062
841
  -webkit-transform: scale(1);
842
+ transform: scale(1);
1063
843
  }
844
+
1064
845
  100% {
1065
846
  opacity: 0;
1066
847
  -webkit-transform: scale(0.7);
848
+ transform: scale(0.7);
1067
849
  }
1068
850
  }
1069
- @-moz-keyframes scaleOut {
1070
- 0% {
1071
- opacity: 1;
1072
- -moz-transform: scale(1);
1073
- }
1074
- 100% {
1075
- opacity: 0;
1076
- -moz-transform: scale(0.7);
1077
- }
1078
- }
1079
- @-o-keyframes scaleOut {
1080
- 0% {
1081
- opacity: 1;
1082
- -o-transform: scale(1);
1083
- }
1084
- 100% {
1085
- opacity: 0;
1086
- -o-transform: scale(0.7);
1087
- }
1088
- }
851
+
1089
852
  @keyframes scaleOut {
1090
853
  0% {
1091
854
  opacity: 1;
855
+ -webkit-transform: scale(1);
856
+ -ms-transform: scale(1);
1092
857
  transform: scale(1);
1093
858
  }
859
+
1094
860
  100% {
1095
861
  opacity: 0;
862
+ -webkit-transform: scale(0.7);
863
+ -ms-transform: scale(0.7);
1096
864
  transform: scale(0.7);
1097
865
  }
1098
866
  }