semantic_ui_rails 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +20 -0
  5. data/README.md +4 -0
  6. data/Rakefile +1 -0
  7. data/app/assets/fonts/semantic/icons.eot +0 -0
  8. data/app/assets/fonts/semantic/icons.svg +450 -0
  9. data/app/assets/fonts/semantic/icons.ttf +0 -0
  10. data/app/assets/fonts/semantic/icons.woff +0 -0
  11. data/app/assets/images/semantic/loader-large-inverted.gif +0 -0
  12. data/app/assets/images/semantic/loader-large.gif +0 -0
  13. data/app/assets/images/semantic/loader-medium-inverted.gif +0 -0
  14. data/app/assets/images/semantic/loader-medium.gif +0 -0
  15. data/app/assets/images/semantic/loader-mini-inverted.gif +0 -0
  16. data/app/assets/images/semantic/loader-mini.gif +0 -0
  17. data/app/assets/images/semantic/loader-small-inverted.gif +0 -0
  18. data/app/assets/images/semantic/loader-small.gif +0 -0
  19. data/app/assets/javascript/semantic/accordion.js +411 -0
  20. data/app/assets/javascript/semantic/behavior/api.js +666 -0
  21. data/app/assets/javascript/semantic/behavior/colorize.js +271 -0
  22. data/app/assets/javascript/semantic/behavior/form.js +703 -0
  23. data/app/assets/javascript/semantic/behavior/state.js +752 -0
  24. data/app/assets/javascript/semantic/chatroom.js +766 -0
  25. data/app/assets/javascript/semantic/checkbox.js +348 -0
  26. data/app/assets/javascript/semantic/dimmer.js +524 -0
  27. data/app/assets/javascript/semantic/dropdown.js +707 -0
  28. data/app/assets/javascript/semantic/modal.js +478 -0
  29. data/app/assets/javascript/semantic/nag.js +542 -0
  30. data/app/assets/javascript/semantic/popup.js +721 -0
  31. data/app/assets/javascript/semantic/rating.js +358 -0
  32. data/app/assets/javascript/semantic/search.js +769 -0
  33. data/app/assets/javascript/semantic/shape.js +776 -0
  34. data/app/assets/javascript/semantic/sidebar.js +489 -0
  35. data/app/assets/javascript/semantic/tab.js +674 -0
  36. data/app/assets/javascript/semantic/transition.js +650 -0
  37. data/app/assets/javascript/semantic/video.js +459 -0
  38. data/app/assets/stylesheets/semantic/accordion.css +97 -0
  39. data/app/assets/stylesheets/semantic/breadcrumb.css +66 -0
  40. data/app/assets/stylesheets/semantic/button.css +993 -0
  41. data/app/assets/stylesheets/semantic/chatroom.css +242 -0
  42. data/app/assets/stylesheets/semantic/checkbox.css +300 -0
  43. data/app/assets/stylesheets/semantic/comment.css +178 -0
  44. data/app/assets/stylesheets/semantic/dimmer.css +185 -0
  45. data/app/assets/stylesheets/semantic/divider.css +155 -0
  46. data/app/assets/stylesheets/semantic/dropdown.css +415 -0
  47. data/app/assets/stylesheets/semantic/feed.css +126 -0
  48. data/app/assets/stylesheets/semantic/form.css +427 -0
  49. data/app/assets/stylesheets/semantic/grid.css +561 -0
  50. data/app/assets/stylesheets/semantic/header.css +277 -0
  51. data/app/assets/stylesheets/semantic/icon.css +811 -0
  52. data/app/assets/stylesheets/semantic/image.css +143 -0
  53. data/app/assets/stylesheets/semantic/input.css +225 -0
  54. data/app/assets/stylesheets/semantic/item.css +564 -0
  55. data/app/assets/stylesheets/semantic/label.css +687 -0
  56. data/app/assets/stylesheets/semantic/list.css +418 -0
  57. data/app/assets/stylesheets/semantic/loader.css +148 -0
  58. data/app/assets/stylesheets/semantic/menu.css +1409 -0
  59. data/app/assets/stylesheets/semantic/message.css +242 -0
  60. data/app/assets/stylesheets/semantic/modal.css +123 -0
  61. data/app/assets/stylesheets/semantic/nag.css +130 -0
  62. data/app/assets/stylesheets/semantic/popup.css +209 -0
  63. data/app/assets/stylesheets/semantic/progress.css +257 -0
  64. data/app/assets/stylesheets/semantic/rating.css +120 -0
  65. data/app/assets/stylesheets/semantic/reveal.css +283 -0
  66. data/app/assets/stylesheets/semantic/search.css +222 -0
  67. data/app/assets/stylesheets/semantic/segment.css +362 -0
  68. data/app/assets/stylesheets/semantic/shape.css +87 -0
  69. data/app/assets/stylesheets/semantic/sidebar.css +100 -0
  70. data/app/assets/stylesheets/semantic/step.css +240 -0
  71. data/app/assets/stylesheets/semantic/tab.css +52 -0
  72. data/app/assets/stylesheets/semantic/table.css +468 -0
  73. data/app/assets/stylesheets/semantic/transition.css +867 -0
  74. data/app/assets/stylesheets/semantic/video.css +81 -0
  75. data/lib/semantic_ui_rails/version.rb +3 -0
  76. data/lib/semantic_ui_rails.rb +7 -0
  77. data/semantic_ui_rails.gemspec +23 -0
  78. metadata +149 -0
@@ -0,0 +1,867 @@
1
+ /*******************************
2
+ Semantic Module: Transition
3
+ Author: Jack Lukic
4
+ Notes: First Commit March 25, 2013
5
+
6
+ CSS animation definitions for
7
+ transition module
8
+
9
+ *******************************/
10
+ /*
11
+ Some transitions adapted from Animate CSS
12
+ https://github.com/daneden/animate.css
13
+ */
14
+ .ui.transition {
15
+ -webkit-backface-visibility: hidden;
16
+ -moz-backface-visibility: hidden;
17
+ -ms-backface-visibility: hidden;
18
+ -o-backface-visibility: hidden;
19
+ backface-visibility: hidden;
20
+ -webkit-animation-iteration-count: 1;
21
+ -moz-animation-iteration-count: 1;
22
+ -ms-animation-iteration-count: 1;
23
+ -o-animation-iteration-count: 1;
24
+ animation-iteration-count: 1;
25
+ -webkit-animation-duration: 1s;
26
+ -moz-animation-duration: 1s;
27
+ -ms-animation-duration: 1s;
28
+ -o-animation-duration: 1s;
29
+ animation-duration: 1s;
30
+ animation-timing-function: ease;
31
+ -webkit-animation-timing-function: ease;
32
+ -webkit-animation-fill-mode: both;
33
+ -moz-animation-fill-mode: both;
34
+ -ms-animation-fill-mode: both;
35
+ -o-animation-fill-mode: both;
36
+ animation-fill-mode: both;
37
+ -webkit-transform: translateZ(0);
38
+ -moz-transform: translateZ(0);
39
+ -ms-transform: translateZ(0);
40
+ -o-transform: translateZ(0);
41
+ transform: translateZ(0);
42
+ }
43
+ /*******************************
44
+ States
45
+ *******************************/
46
+ /* Loading */
47
+ .ui.loading.transition {
48
+ position: absolute;
49
+ top: -999999px;
50
+ left: -99999px;
51
+ }
52
+ /* Hidden */
53
+ .ui.hidden.transition {
54
+ display: none;
55
+ }
56
+ /* Visible */
57
+ .ui.visible.transition {
58
+ display: block;
59
+ visibility: visible;
60
+ }
61
+ /* Direction */
62
+ .ui.out.transition {
63
+ -webkit-animation-direction: reverse;
64
+ -moz-animation-direction: reverse;
65
+ -o-animation-direction: reverse;
66
+ animation-direction: reverse;
67
+ }
68
+ /* Disabled */
69
+ .ui.disabled.transition {
70
+ -webkit-animation-play-state: paused;
71
+ -moz-animation-play-state: paused;
72
+ -ms-animation-play-state: paused;
73
+ -o-animation-play-state: paused;
74
+ animation-play-state: paused;
75
+ }
76
+ /*******************************
77
+ Variations
78
+ *******************************/
79
+ .ui.looping.transition {
80
+ -webkit-animation-iteration-count: infinite;
81
+ -moz-animation-iteration-count: infinite;
82
+ -ms-animation-iteration-count: infinite;
83
+ -o-animation-iteration-count: infinite;
84
+ animation-iteration-count: infinite;
85
+ }
86
+ /*******************************
87
+ Types
88
+ *******************************/
89
+ /*--------------
90
+ Emphasis
91
+ ---------------*/
92
+ .ui.flash.transition {
93
+ -webkit-animation-name: flash;
94
+ -moz-animation-name: flash;
95
+ -o-animation-name: flash;
96
+ animation-name: flash;
97
+ }
98
+ .ui.shake.transition {
99
+ -webkit-animation-name: shake;
100
+ -moz-animation-name: shake;
101
+ -o-animation-name: shake;
102
+ animation-name: shake;
103
+ }
104
+ .ui.bounce.transition {
105
+ -webkit-animation-name: bounce;
106
+ -moz-animation-name: bounce;
107
+ -o-animation-name: bounce;
108
+ animation-name: bounce;
109
+ }
110
+ .ui.tada.transition {
111
+ -webkit-animation-name: tada;
112
+ -moz-animation-name: tada;
113
+ -o-animation-name: tada;
114
+ animation-name: tada;
115
+ }
116
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
117
+ .ui.pulse.transition {
118
+ -webkit-animation-name: pulse;
119
+ -moz-animation-name: pulse;
120
+ -o-animation-name: pulse;
121
+ animation-name: pulse;
122
+ }
123
+ /*--------------
124
+ Flips
125
+ ---------------*/
126
+ .ui.flip.transition.in,
127
+ .ui.flip.transition.out {
128
+ -webkit-perspective: 2000px;
129
+ perspective: 2000px;
130
+ }
131
+ .ui.horizontal.flip.transition.in,
132
+ .ui.horizontal.flip.transition.out {
133
+ -webkit-animation-name: horizontalFlip;
134
+ -moz-animation-name: horizontalFlip;
135
+ -o-animation-name: horizontalFlip;
136
+ animation-name: horizontalFlip;
137
+ }
138
+ .ui.vertical.flip.transition.in,
139
+ .ui.vertical.flip.transition.out {
140
+ -webkit-animation-name: verticalFlip;
141
+ -moz-animation-name: verticalFlip;
142
+ -o-animation-name: verticalFlip;
143
+ animation-name: verticalFlip;
144
+ }
145
+ /*--------------
146
+ Fades
147
+ ---------------*/
148
+ .ui.fade.transition.in,
149
+ .ui.fade.transition.out {
150
+ -webkit-animation-name: fade;
151
+ -moz-animation-name: fade;
152
+ -o-animation-name: fade;
153
+ animation-name: fade;
154
+ }
155
+ .ui.fade.up.transition.in {
156
+ -webkit-animation-name: fadeUp;
157
+ -moz-animation-name: fadeUp;
158
+ -o-animation-name: fadeUp;
159
+ animation-name: fadeUp;
160
+ }
161
+ .ui.fade.up.transition.out {
162
+ -webkit-animation-name: fade;
163
+ -moz-animation-name: fade;
164
+ -o-animation-name: fade;
165
+ animation-name: fade;
166
+ }
167
+ .ui.fade.down.transition.in {
168
+ -webkit-animation-name: fadeDown;
169
+ -moz-animation-name: fadeDown;
170
+ -o-animation-name: fadeDown;
171
+ animation-name: fadeDown;
172
+ }
173
+ .ui.fade.down.transition.out {
174
+ -webkit-animation-name: fade;
175
+ -moz-animation-name: fade;
176
+ -o-animation-name: fade;
177
+ animation-name: fade;
178
+ }
179
+ /*--------------
180
+ Scale
181
+ ---------------*/
182
+ .ui.scale.transition.in,
183
+ .ui.scale.transition.out {
184
+ -webkit-animation-name: scale;
185
+ -moz-animation-name: scale;
186
+ -o-animation-name: scale;
187
+ animation-name: scale;
188
+ }
189
+ /*--------------
190
+ Slide
191
+ ---------------*/
192
+ .ui.slide.down.transition.in,
193
+ .ui.slide.down.transition.out {
194
+ -webkit-animation-name: slide;
195
+ -moz-animation-name: slide;
196
+ -o-animation-name: slide;
197
+ animation-name: slide;
198
+ transform-origin: 50% 0%;
199
+ -ms-transform-origin: 50% 0%;
200
+ -webkit-transform-origin: 50% 0%;
201
+ }
202
+ .ui.slide.up.transition.in,
203
+ .ui.slide.up.transition.out {
204
+ -webkit-animation-name: slide;
205
+ -moz-animation-name: slide;
206
+ -o-animation-name: slide;
207
+ animation-name: slide;
208
+ transform-origin: 50% 100%;
209
+ -ms-transform-origin: 50% 100%;
210
+ -webkit-transform-origin: 50% 100%;
211
+ }
212
+ @-moz-keyframes slide {
213
+ 0% {
214
+ opacity: 0;
215
+ -moz-transform: scaleY(0);
216
+ }
217
+ 100% {
218
+ opacity: 1;
219
+ -moz-transform: scaleY(1);
220
+ }
221
+ }
222
+ @-webkit-keyframes slide {
223
+ 0% {
224
+ opacity: 0;
225
+ -webkit-transform: scaleY(0);
226
+ }
227
+ 100% {
228
+ opacity: 1;
229
+ -webkit-transform: scaleY(1);
230
+ }
231
+ }
232
+ @keyframes slide {
233
+ 0% {
234
+ opacity: 0;
235
+ transform: scaleY(0);
236
+ }
237
+ 100% {
238
+ opacity: 1;
239
+ transform: scaleY(1);
240
+ }
241
+ }
242
+ /*******************************
243
+ Animations
244
+ *******************************/
245
+ /*--------------
246
+ Emphasis
247
+ ---------------*/
248
+ /* Flash */
249
+ @-webkit-keyframes flash {
250
+ 0%,
251
+ 50%,
252
+ 100% {
253
+ opacity: 1;
254
+ }
255
+ 25%,
256
+ 75% {
257
+ opacity: 0;
258
+ }
259
+ }
260
+ @-moz-keyframes flash {
261
+ 0%,
262
+ 50%,
263
+ 100% {
264
+ opacity: 1;
265
+ }
266
+ 25%,
267
+ 75% {
268
+ opacity: 0;
269
+ }
270
+ }
271
+ @-o-keyframes flash {
272
+ 0%,
273
+ 50%,
274
+ 100% {
275
+ opacity: 1;
276
+ }
277
+ 25%,
278
+ 75% {
279
+ opacity: 0;
280
+ }
281
+ }
282
+ @keyframes flash {
283
+ 0%,
284
+ 50%,
285
+ 100% {
286
+ opacity: 1;
287
+ }
288
+ 25%,
289
+ 75% {
290
+ opacity: 0;
291
+ }
292
+ }
293
+ /* Shake */
294
+ @-webkit-keyframes shake {
295
+ 0%,
296
+ 100% {
297
+ -webkit-transform: translateX(0);
298
+ }
299
+ 10%,
300
+ 30%,
301
+ 50%,
302
+ 70%,
303
+ 90% {
304
+ -webkit-transform: translateX(-10px);
305
+ }
306
+ 20%,
307
+ 40%,
308
+ 60%,
309
+ 80% {
310
+ -webkit-transform: translateX(10px);
311
+ }
312
+ }
313
+ @-moz-keyframes shake {
314
+ 0%,
315
+ 100% {
316
+ -moz-transform: translateX(0);
317
+ }
318
+ 10%,
319
+ 30%,
320
+ 50%,
321
+ 70%,
322
+ 90% {
323
+ -moz-transform: translateX(-10px);
324
+ }
325
+ 20%,
326
+ 40%,
327
+ 60%,
328
+ 80% {
329
+ -moz-transform: translateX(10px);
330
+ }
331
+ }
332
+ @-o-keyframes shake {
333
+ 0%,
334
+ 100% {
335
+ -o-transform: translateX(0);
336
+ }
337
+ 10%,
338
+ 30%,
339
+ 50%,
340
+ 70%,
341
+ 90% {
342
+ -o-transform: translateX(-10px);
343
+ }
344
+ 20%,
345
+ 40%,
346
+ 60%,
347
+ 80% {
348
+ -o-transform: translateX(10px);
349
+ }
350
+ }
351
+ @keyframes shake {
352
+ 0%,
353
+ 100% {
354
+ transform: translateX(0);
355
+ }
356
+ 10%,
357
+ 30%,
358
+ 50%,
359
+ 70%,
360
+ 90% {
361
+ transform: translateX(-10px);
362
+ }
363
+ 20%,
364
+ 40%,
365
+ 60%,
366
+ 80% {
367
+ transform: translateX(10px);
368
+ }
369
+ }
370
+ /* Bounce */
371
+ @-webkit-keyframes bounce {
372
+ 0%,
373
+ 20%,
374
+ 50%,
375
+ 80%,
376
+ 100% {
377
+ -webkit-transform: translateY(0);
378
+ }
379
+ 40% {
380
+ -webkit-transform: translateY(-30px);
381
+ }
382
+ 60% {
383
+ -webkit-transform: translateY(-15px);
384
+ }
385
+ }
386
+ @-moz-keyframes bounce {
387
+ 0%,
388
+ 20%,
389
+ 50%,
390
+ 80%,
391
+ 100% {
392
+ -moz-transform: translateY(0);
393
+ }
394
+ 40% {
395
+ -moz-transform: translateY(-30px);
396
+ }
397
+ 60% {
398
+ -moz-transform: translateY(-15px);
399
+ }
400
+ }
401
+ @-o-keyframes bounce {
402
+ 0%,
403
+ 20%,
404
+ 50%,
405
+ 80%,
406
+ 100% {
407
+ -o-transform: translateY(0);
408
+ }
409
+ 40% {
410
+ -o-transform: translateY(-30px);
411
+ }
412
+ 60% {
413
+ -o-transform: translateY(-15px);
414
+ }
415
+ }
416
+ @keyframes bounce {
417
+ 0%,
418
+ 20%,
419
+ 50%,
420
+ 80%,
421
+ 100% {
422
+ transform: translateY(0);
423
+ }
424
+ 40% {
425
+ transform: translateY(-30px);
426
+ }
427
+ 60% {
428
+ transform: translateY(-15px);
429
+ }
430
+ }
431
+ /* Tada */
432
+ @-webkit-keyframes tada {
433
+ 0% {
434
+ -webkit-transform: scale(1);
435
+ }
436
+ 10%,
437
+ 20% {
438
+ -webkit-transform: scale(0.9) rotate(-3deg);
439
+ }
440
+ 30%,
441
+ 50%,
442
+ 70%,
443
+ 90% {
444
+ -webkit-transform: scale(1.1) rotate(3deg);
445
+ }
446
+ 40%,
447
+ 60%,
448
+ 80% {
449
+ -webkit-transform: scale(1.1) rotate(-3deg);
450
+ }
451
+ 100% {
452
+ -webkit-transform: scale(1) rotate(0);
453
+ }
454
+ }
455
+ @-moz-keyframes tada {
456
+ 0% {
457
+ -moz-transform: scale(1);
458
+ }
459
+ 10%,
460
+ 20% {
461
+ -moz-transform: scale(0.9) rotate(-3deg);
462
+ }
463
+ 30%,
464
+ 50%,
465
+ 70%,
466
+ 90% {
467
+ -moz-transform: scale(1.1) rotate(3deg);
468
+ }
469
+ 40%,
470
+ 60%,
471
+ 80% {
472
+ -moz-transform: scale(1.1) rotate(-3deg);
473
+ }
474
+ 100% {
475
+ -moz-transform: scale(1) rotate(0);
476
+ }
477
+ }
478
+ @-o-keyframes tada {
479
+ 0% {
480
+ -o-transform: scale(1);
481
+ }
482
+ 10%,
483
+ 20% {
484
+ -o-transform: scale(0.9) rotate(-3deg);
485
+ }
486
+ 30%,
487
+ 50%,
488
+ 70%,
489
+ 90% {
490
+ -o-transform: scale(1.1) rotate(3deg);
491
+ }
492
+ 40%,
493
+ 60%,
494
+ 80% {
495
+ -o-transform: scale(1.1) rotate(-3deg);
496
+ }
497
+ 100% {
498
+ -o-transform: scale(1) rotate(0);
499
+ }
500
+ }
501
+ @keyframes tada {
502
+ 0% {
503
+ transform: scale(1);
504
+ }
505
+ 10%,
506
+ 20% {
507
+ transform: scale(0.9) rotate(-3deg);
508
+ }
509
+ 30%,
510
+ 50%,
511
+ 70%,
512
+ 90% {
513
+ transform: scale(1.1) rotate(3deg);
514
+ }
515
+ 40%,
516
+ 60%,
517
+ 80% {
518
+ transform: scale(1.1) rotate(-3deg);
519
+ }
520
+ 100% {
521
+ transform: scale(1) rotate(0);
522
+ }
523
+ }
524
+ @-webkit-keyframes pulse {
525
+ 0% {
526
+ -webkit-transform: scale(1);
527
+ opacity: 1;
528
+ }
529
+ 50% {
530
+ -webkit-transform: scale(0.9);
531
+ opacity: 0.7;
532
+ }
533
+ 100% {
534
+ -webkit-transform: scale(1);
535
+ opacity: 1;
536
+ }
537
+ }
538
+ @-o-keyframes pulse {
539
+ 0% {
540
+ -o-transform: scale(1);
541
+ opacity: 1;
542
+ }
543
+ 50% {
544
+ -o-transform: scale(0.9);
545
+ opacity: 0.7;
546
+ }
547
+ 100% {
548
+ -o-transform: scale(1);
549
+ opacity: 1;
550
+ }
551
+ }
552
+ @-moz-keyframes pulse {
553
+ 0% {
554
+ -moz-transform: scale(1);
555
+ opacity: 1;
556
+ }
557
+ 50% {
558
+ -moz-transform: scale(0.9);
559
+ opacity: 0.7;
560
+ }
561
+ 100% {
562
+ -moz-transform: scale(1);
563
+ opacity: 1;
564
+ }
565
+ }
566
+ @keyframes pulse {
567
+ 0% {
568
+ transform: scale(1);
569
+ opacity: 1;
570
+ }
571
+ 50% {
572
+ transform: scale(0.9);
573
+ opacity: 0.7;
574
+ }
575
+ 100% {
576
+ transform: scale(1);
577
+ opacity: 1;
578
+ }
579
+ }
580
+ /*--------------
581
+ Flips
582
+ ---------------*/
583
+ /* Horizontal */
584
+ @-webkit-keyframes horizontalFlip {
585
+ 0% {
586
+ -webkit-transform: rotateY(-90deg);
587
+ opacity: 0;
588
+ }
589
+ 100% {
590
+ -webkit-transform: rotateY(0deg);
591
+ opacity: 1;
592
+ }
593
+ }
594
+ @-moz-keyframes horizontalFlip {
595
+ 0% {
596
+ -moz-transform: rotateY(-90deg);
597
+ opacity: 0;
598
+ }
599
+ 100% {
600
+ -moz-transform: rotateY(0deg);
601
+ opacity: 1;
602
+ }
603
+ }
604
+ @-o-keyframes horizontalFlip {
605
+ 0% {
606
+ -o-transform: rotateY(-90deg);
607
+ opacity: 0;
608
+ }
609
+ 100% {
610
+ -o-transform: rotateY(0deg);
611
+ opacity: 1;
612
+ }
613
+ }
614
+ @keyframes horizontalFlip {
615
+ 0% {
616
+ transform: rotateY(-90deg);
617
+ opacity: 0;
618
+ }
619
+ 100% {
620
+ transform: rotateY(0deg);
621
+ opacity: 1;
622
+ }
623
+ }
624
+ /* Horizontal */
625
+ @-webkit-keyframes horizontalFlipOut {
626
+ 0% {
627
+ -webkit-transform: rotateY(0deg);
628
+ opacity: 0;
629
+ }
630
+ 100% {
631
+ -webkit-transform: rotateY(90deg);
632
+ opacity: 1;
633
+ }
634
+ }
635
+ @-moz-keyframes horizontalFlipOut {
636
+ 0% {
637
+ -moz-transform: rotateY(0deg);
638
+ opacity: 0;
639
+ }
640
+ 100% {
641
+ -moz-transform: rotateY(90deg);
642
+ opacity: 1;
643
+ }
644
+ }
645
+ @-o-keyframes horizontalFlipOut {
646
+ 0% {
647
+ -o-transform: rotateY(0deg);
648
+ opacity: 0;
649
+ }
650
+ 100% {
651
+ -o-transform: rotateY(90deg);
652
+ opacity: 1;
653
+ }
654
+ }
655
+ @keyframes horizontalFlipOut {
656
+ 0% {
657
+ transform: rotateY(0deg);
658
+ opacity: 0;
659
+ }
660
+ 100% {
661
+ transform: rotateY(90deg);
662
+ opacity: 1;
663
+ }
664
+ }
665
+ /* Vertical */
666
+ @-webkit-keyframes verticalFlip {
667
+ 0% {
668
+ -webkit-transform: rotateX(-90deg);
669
+ opacity: 0;
670
+ }
671
+ 100% {
672
+ -webkit-transform: rotateX(0deg);
673
+ opacity: 1;
674
+ }
675
+ }
676
+ @-moz-keyframes verticalFlip {
677
+ 0% {
678
+ -moz-transform: rotateX(-90deg);
679
+ opacity: 0;
680
+ }
681
+ 100% {
682
+ -moz-transform: rotateX(0deg);
683
+ opacity: 1;
684
+ }
685
+ }
686
+ @-o-keyframes verticalFlip {
687
+ 0% {
688
+ -o-transform: rotateX(-90deg);
689
+ opacity: 0;
690
+ }
691
+ 100% {
692
+ -o-transform: rotateX(0deg);
693
+ opacity: 1;
694
+ }
695
+ }
696
+ @keyframes verticalFlip {
697
+ 0% {
698
+ transform: rotateX(-90deg);
699
+ opacity: 0;
700
+ }
701
+ 100% {
702
+ transform: rotateX(0deg);
703
+ opacity: 1;
704
+ }
705
+ }
706
+ /*--------------
707
+ Fades
708
+ ---------------*/
709
+ /* Fade */
710
+ @-webkit-keyframes fade {
711
+ 0% {
712
+ opacity: 0;
713
+ }
714
+ 100% {
715
+ opacity: 1;
716
+ }
717
+ }
718
+ @-moz-keyframes fade {
719
+ 0% {
720
+ opacity: 0;
721
+ }
722
+ 100% {
723
+ opacity: 1;
724
+ }
725
+ }
726
+ @-o-keyframes fade {
727
+ 0% {
728
+ opacity: 0;
729
+ }
730
+ 100% {
731
+ opacity: 1;
732
+ }
733
+ }
734
+ @keyframes fade {
735
+ 0% {
736
+ opacity: 0;
737
+ }
738
+ 100% {
739
+ opacity: 1;
740
+ }
741
+ }
742
+ /* Fade Up */
743
+ @-webkit-keyframes fadeUp {
744
+ 0% {
745
+ opacity: 0;
746
+ -webkit-transform: translateY(20px);
747
+ }
748
+ 100% {
749
+ opacity: 1;
750
+ -webkit-transform: translateY(0);
751
+ }
752
+ }
753
+ @-moz-keyframes fadeUp {
754
+ 0% {
755
+ opacity: 0;
756
+ -moz-transform: translateY(20px);
757
+ }
758
+ 100% {
759
+ opacity: 1;
760
+ -moz-transform: translateY(0);
761
+ }
762
+ }
763
+ @-o-keyframes fadeUp {
764
+ 0% {
765
+ opacity: 0;
766
+ -o-transform: translateY(20px);
767
+ }
768
+ 100% {
769
+ opacity: 1;
770
+ -o-transform: translateY(0);
771
+ }
772
+ }
773
+ @keyframes fadeUp {
774
+ 0% {
775
+ opacity: 0;
776
+ transform: translateY(20px);
777
+ }
778
+ 100% {
779
+ opacity: 1;
780
+ transform: translateY(0);
781
+ }
782
+ }
783
+ /* Fade Down */
784
+ @-webkit-keyframes fadeDown {
785
+ 0% {
786
+ opacity: 0;
787
+ -webkit-transform: translateY(-20px);
788
+ }
789
+ 100% {
790
+ opacity: 1;
791
+ -webkit-transform: translateY(0);
792
+ }
793
+ }
794
+ @-moz-keyframes fadeDown {
795
+ 0% {
796
+ opacity: 0;
797
+ -moz-transform: translateY(-20px);
798
+ }
799
+ 100% {
800
+ opacity: 1;
801
+ -moz-transform: translateY(0);
802
+ }
803
+ }
804
+ @-o-keyframes fadeDown {
805
+ 0% {
806
+ opacity: 0;
807
+ -o-transform: translateY(-20px);
808
+ }
809
+ 100% {
810
+ opacity: 1;
811
+ -o-transform: translateY(0);
812
+ }
813
+ }
814
+ @keyframes fadeDown {
815
+ 0% {
816
+ opacity: 0;
817
+ transform: translateY(-20px);
818
+ }
819
+ 100% {
820
+ opacity: 1;
821
+ transform: translateY(0);
822
+ }
823
+ }
824
+ /*--------------
825
+ Scale
826
+ ---------------*/
827
+ /* Scale */
828
+ @-webkit-keyframes scale {
829
+ 0% {
830
+ opacity: 0;
831
+ -webkit-transform: scale(0.7);
832
+ }
833
+ 100% {
834
+ opacity: 1;
835
+ -webkit-transform: scale(1);
836
+ }
837
+ }
838
+ @-moz-keyframes scale {
839
+ 0% {
840
+ opacity: 0;
841
+ -moz-transform: scale(0.7);
842
+ }
843
+ 100% {
844
+ opacity: 1;
845
+ -moz-transform: scale(1);
846
+ }
847
+ }
848
+ @-o-keyframes scale {
849
+ 0% {
850
+ opacity: 0;
851
+ -o-transform: scale(0.7);
852
+ }
853
+ 100% {
854
+ opacity: 1;
855
+ -o-transform: scale(1);
856
+ }
857
+ }
858
+ @keyframes scale {
859
+ 0% {
860
+ opacity: 0;
861
+ transform: scale(0.7);
862
+ }
863
+ 100% {
864
+ opacity: 1;
865
+ transform: scale(1);
866
+ }
867
+ }