semantic-ui-rails 0.0.1

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