ellipsis-compass 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +15 -0
  2. data/lib/ellipsis-compass.rb +4 -0
  3. data/stylesheets/animation/_animate.scss +1206 -0
  4. data/stylesheets/animation/_animation.scss +121 -0
  5. data/stylesheets/animation/_animations.scss +771 -0
  6. data/stylesheets/animation/_transit.scss +425 -0
  7. data/stylesheets/animation/_transitions.scss +320 -0
  8. data/stylesheets/base/_breakpoints.scss +64 -0
  9. data/stylesheets/base/_document.scss +219 -0
  10. data/stylesheets/base/_global.scss +88 -0
  11. data/stylesheets/base/_normalize.scss +406 -0
  12. data/stylesheets/component/_component.scss +939 -0
  13. data/stylesheets/component/_ui.scss +955 -0
  14. data/stylesheets/flexbox/_flexbox.scss +305 -0
  15. data/stylesheets/font/_icons.scss +1492 -0
  16. data/stylesheets/font/_ubuntu.scss +38 -0
  17. data/stylesheets/form/_form.scss +836 -0
  18. data/stylesheets/grid/_grid.scss +312 -0
  19. data/stylesheets/helpers/_all.scss +8 -0
  20. data/stylesheets/helpers/_component.scss +177 -0
  21. data/stylesheets/helpers/_convenience.scss +277 -0
  22. data/stylesheets/helpers/_functions.scss +427 -0
  23. data/stylesheets/helpers/_grid.scss +39 -0
  24. data/stylesheets/helpers/_hardware-acceleration.scss +22 -0
  25. data/stylesheets/helpers/_mixins.scss +207 -0
  26. data/stylesheets/helpers/_touch.scss +107 -0
  27. data/stylesheets/helpers/_visibility.scss +138 -0
  28. data/stylesheets/image/_images.scss +19 -0
  29. data/stylesheets/imports/elements/_autosearch.scss +11 -0
  30. data/stylesheets/imports/elements/_badge.scss +23 -0
  31. data/stylesheets/imports/elements/_barchart.scss +254 -0
  32. data/stylesheets/imports/elements/_form.scss +8 -0
  33. data/stylesheets/imports/elements/_loginform.scss +6 -0
  34. data/stylesheets/imports/elements/_modellist.scss +14 -0
  35. data/stylesheets/imports/elements/_pluralize.scss +8 -0
  36. data/stylesheets/imports/elements/_signupform.scss +6 -0
  37. data/stylesheets/imports/elements/_slidenotification.scss +65 -0
  38. data/stylesheets/imports/elements/_stickyreveal.scss +44 -0
  39. data/stylesheets/imports/elements/_template.scss +7 -0
  40. data/stylesheets/imports/elements/_veneer.scss +36 -0
  41. data/stylesheets/shared/_shared.scss +282 -0
  42. data/stylesheets/touch/ui/_drawer.scss +41 -0
  43. data/stylesheets/touch/ui/_dropdown.scss +58 -0
  44. data/stylesheets/touch/ui/_menu.scss +131 -0
  45. data/stylesheets/touch/ui/_navbar.scss +44 -0
  46. data/stylesheets/touch/ui/_toggle.scss +127 -0
  47. data/stylesheets/touch/ui/_topbar.scss +48 -0
  48. data/stylesheets/typography/_typography.scss +746 -0
  49. data/stylesheets/ui/_autocomplete.scss +117 -0
  50. data/stylesheets/ui/_badge.scss +73 -0
  51. data/stylesheets/ui/_box.scss +78 -0
  52. data/stylesheets/ui/_breadcrumb.scss +64 -0
  53. data/stylesheets/ui/_button.scss +395 -0
  54. data/stylesheets/ui/_carousel.scss +284 -0
  55. data/stylesheets/ui/_collapsible.scss +61 -0
  56. data/stylesheets/ui/_container.scss +297 -0
  57. data/stylesheets/ui/_datepicker.scss +218 -0
  58. data/stylesheets/ui/_drawer.scss +96 -0
  59. data/stylesheets/ui/_dropdown.scss +394 -0
  60. data/stylesheets/ui/_file.scss +147 -0
  61. data/stylesheets/ui/_gallery.scss +219 -0
  62. data/stylesheets/ui/_label.scss +167 -0
  63. data/stylesheets/ui/_loading.scss +70 -0
  64. data/stylesheets/ui/_mediaobject.scss +108 -0
  65. data/stylesheets/ui/_menu.scss +287 -0
  66. data/stylesheets/ui/_menutab.scss +175 -0
  67. data/stylesheets/ui/_modal.scss +47 -0
  68. data/stylesheets/ui/_navbar.scss +315 -0
  69. data/stylesheets/ui/_notification.scss +154 -0
  70. data/stylesheets/ui/_pagination.scss +137 -0
  71. data/stylesheets/ui/_parallax.scss +233 -0
  72. data/stylesheets/ui/_popover.scss +3 -0
  73. data/stylesheets/ui/_rating.scss +106 -0
  74. data/stylesheets/ui/_sidebar.scss +110 -0
  75. data/stylesheets/ui/_slidingpanel.scss +57 -0
  76. data/stylesheets/ui/_social.scss +213 -0
  77. data/stylesheets/ui/_sticky.scss +9 -0
  78. data/stylesheets/ui/_table.scss +423 -0
  79. data/stylesheets/ui/_tabs.scss +242 -0
  80. data/stylesheets/ui/_toggle.scss +49 -0
  81. data/stylesheets/ui/_tooltip.scss +57 -0
  82. data/stylesheets/ui/_topbar.scss +210 -0
  83. data/stylesheets/ui/_tree.scss +3 -0
  84. data/stylesheets/ui/_window.scss +205 -0
  85. metadata +140 -0
@@ -0,0 +1,425 @@
1
+
2
+
3
+ //transitions
4
+
5
+ @mixin transit-dissolveIn() {
6
+ $name: DissolveIn;
7
+ @include keyframes($name) {
8
+ 0% {
9
+ opacity: 0;
10
+ }
11
+ 5% {
12
+ opacity: 0;
13
+ }
14
+ 100% {
15
+ opacity: 1;
16
+ }
17
+ }
18
+ }
19
+
20
+ @mixin transit-dissolveOut() {
21
+ $name: DissolveOut;
22
+ @include keyframes($name) {
23
+ 5% {
24
+ opacity: 1;
25
+ }
26
+ 100% {
27
+ opacity: 0;
28
+ }
29
+ }
30
+ }
31
+
32
+ @mixin transit-slideLeftIn() {
33
+ $name: SlideLeftIn;
34
+ @include keyframes($name) {
35
+ 0% {
36
+ @include transform(translate3d(100%,0,0));
37
+ opacity:1;
38
+ }
39
+ 100% {
40
+ @include transform(translate3d(0,0,0));
41
+ opacity:1;
42
+ }
43
+ }
44
+ }
45
+
46
+ @mixin transit-slideLeftOut() {
47
+ $name: SlideLeftOut;
48
+ @include keyframes($name) {
49
+ 0% {
50
+ @include transform(translate3d(0,0,0));
51
+ opacity:1;
52
+ }
53
+ 100% {
54
+ @include transform(translate3d(-100%,0,0));
55
+ opacity:1;
56
+ }
57
+ }
58
+ }
59
+
60
+ @mixin transit-slideRightIn() {
61
+ $name: SlideRightIn;
62
+ @include keyframes($name) {
63
+ 0% {
64
+ @include transform(translate3d(-100%,0,0));
65
+ opacity:1;
66
+ }
67
+ 100% {
68
+ @include transform(translate3d(0,0,0));
69
+ opacity:1;
70
+ }
71
+ }
72
+ }
73
+
74
+ @mixin transit-slideRightOut() {
75
+ $name: SlideRightOut;
76
+ @include keyframes($name) {
77
+ 0% {
78
+ @include transform(translate3d(0,0,0));
79
+ opacity:1;
80
+ }
81
+ 100% {
82
+ @include transform(translate3d(100%,0,0));
83
+ opacity:1;
84
+ }
85
+ }
86
+ }
87
+
88
+ @mixin transit-fadeSlideLeftIn() {
89
+ $name: FadeSlideLeftIn;
90
+ @include keyframes($name) {
91
+ 0% {
92
+ @include transform(translate3d(100%,0,0));
93
+ opacity:0;
94
+ }
95
+ 100% {
96
+ @include transform(translate3d(0,0,0));
97
+ opacity:1;
98
+ }
99
+ }
100
+ }
101
+
102
+ @mixin transit-fadeSlideLeftOut() {
103
+ $name: FadeSlideLeftIn;
104
+ @include keyframes($name) {
105
+ 0% {
106
+ @include transform(translate3d(0,0,0));
107
+ opacity:1;
108
+ }
109
+ 100% {
110
+ @include transform(translate3d(-100%,0,0));
111
+ opacity:0;
112
+ }
113
+ }
114
+ }
115
+
116
+ @mixin transit-fadeSlideRightIn() {
117
+ $name: FadeSlideRightIn;
118
+ @include keyframes($name) {
119
+ 0% {
120
+ @include transform(translate3d(-100%,0,0));
121
+ opacity:0;
122
+ }
123
+ 100% {
124
+ @include transform(translate3d(0,0,0));
125
+ opacity:1;
126
+ }
127
+ }
128
+ }
129
+
130
+ @mixin transit-fadeSlideRightOut() {
131
+ $name: FadeSlideRightIn;
132
+ @include keyframes($name) {
133
+ 0% {
134
+ @include transform(translate3d(0,0,0));
135
+ opacity:1;
136
+ }
137
+ 100% {
138
+ @include transform(translate3d(100%,0,0));
139
+ opacity:0;
140
+ }
141
+ }
142
+ }
143
+
144
+ @mixin transit-popIn() {
145
+ $name: PopIn;
146
+ @include keyframes($name) {
147
+ 0% {
148
+ opacity: 0;
149
+ }
150
+ 5% {
151
+ @include transform(scale(.2));
152
+ opacity: 0;
153
+ }
154
+ 100% {
155
+ @include transform(scale(1));
156
+ opacity: 1;
157
+ }
158
+ }
159
+ }
160
+
161
+ @mixin transit-popOut() {
162
+ $name: PopOut;
163
+ @include keyframes($name) {
164
+ 5% {
165
+ @include transform(scale(1));
166
+ opacity: 1;
167
+ }
168
+ 100% {
169
+ @include transform(scale(.2));
170
+ opacity: 0;
171
+ }
172
+ }
173
+ }
174
+
175
+ @mixin transit-flipLeftIn() {
176
+ $name: FlipLeftIn;
177
+ @include keyframes($name) {
178
+ 0% {
179
+ @include transform(rotateY(-180deg) scale(1));
180
+ opacity:0;
181
+ }
182
+ 50% {
183
+ @include transform(rotateY(-90deg) scale(1));
184
+ opacity:0;
185
+ }
186
+ 51% {
187
+ @include transform(rotateY(-89deg) scale(1));
188
+ opacity:1;
189
+ }
190
+ 100% {
191
+ @include transform(rotateY(0deg) scale(1));
192
+ opacity:1;
193
+ }
194
+ }
195
+ }
196
+
197
+ @mixin transit-flipLeftOut() {
198
+ $name: FlipLeftOut;
199
+ @include keyframes($name) {
200
+ 0% {
201
+ @include transform(rotateY(0deg) scale(1));
202
+ opacity:1;
203
+ }
204
+ 50% {
205
+ @include transform(rotateY(90deg) scale(1));
206
+ opacity:1;
207
+ }
208
+ 51% {
209
+ @include transform(rotateY(91deg) scale(1));
210
+ opacity:0;
211
+ }
212
+ 100% {
213
+ @include transform(rotateY(180deg) scale(1));
214
+ opacity:0;
215
+ }
216
+ }
217
+ }
218
+
219
+
220
+ @mixin transit-flipRightIn() {
221
+ $name: FlipRightIn;
222
+ @include keyframes($name) {
223
+ 0% {
224
+ @include transform(rotateY(180deg) scale(1));
225
+ opacity:0;
226
+ }
227
+ 50% {
228
+ @include transform(rotateY(90deg) scale(1));
229
+ opacity:0;
230
+ }
231
+ 51% {
232
+ @include transform(rotateY(89deg) scale(1));
233
+ opacity:1;
234
+ }
235
+ 100% {
236
+ @include transform(rotateY(0deg) scale(1));
237
+ opacity:1;
238
+ }
239
+ }
240
+ }
241
+
242
+ @mixin transit-flipRightOut() {
243
+ $name: FlipRightOut;
244
+ @include keyframes($name) {
245
+ 0% {
246
+ @include transform(rotateY(0deg) scale(1));
247
+ opacity:1;
248
+ }
249
+ 50% {
250
+ @include transform(rotateY(90deg) scale(1));
251
+ opacity:1;
252
+ }
253
+ 51% {
254
+ @include transform(rotateY(91deg) scale(1));
255
+ opacity:0;
256
+ }
257
+ 100% {
258
+ @include transform(rotateY(180deg) scale(1));
259
+ opacity:0;
260
+ }
261
+ }
262
+ }
263
+
264
+
265
+ //smartphone
266
+ @mixin transit-cubeLeftIn() {
267
+ $name: CubeLeftIn;
268
+ @include keyframes($name) {
269
+ 0% {
270
+ @include transform(rotateY(90deg) translateZ(320px));
271
+ opacity:1;
272
+ }
273
+
274
+ 95% {
275
+ @include transform(rotateY(0deg) translateZ(0) translateX(0));
276
+ opacity:0;
277
+ }
278
+ }
279
+ }
280
+
281
+ @mixin transit-cubeLeftOut() {
282
+ $name: CubeLeftOut;
283
+ @include keyframes($name) {
284
+ 0% {
285
+ @include transform(rotateY(0deg) translateZ(0) translateX(0));
286
+ opacity:1;
287
+ }
288
+
289
+ 95% {
290
+ @include transform(rotateY(-90deg) translateZ(320px));
291
+ opacity:0;
292
+ }
293
+ 100%{
294
+ display:none;
295
+ }
296
+ }
297
+ }
298
+
299
+ @mixin transit-cubeRightIn() {
300
+ $name: CubeRightIn;
301
+ @include keyframes($name) {
302
+ 0% {
303
+ @include transform(rotateY(-90deg) translateZ(320px));
304
+ opacity:0;
305
+ }
306
+
307
+ 95% {
308
+ @include transform(rotateY(0deg) translateZ(0) translateX(0));
309
+ opacity:1;
310
+ }
311
+ }
312
+ }
313
+
314
+ @mixin transit-cubeRightOut() {
315
+ $name: CubeRightOut;
316
+ @include keyframes($name) {
317
+ 0% {
318
+ @include transform(rotateY(0deg) translateZ(0) translateX(0));
319
+ opacity:0;
320
+ }
321
+
322
+ 95% {
323
+ @include transform(rotateY(90deg) translateZ(320px));
324
+ opacity:1;
325
+ }
326
+ 100%{
327
+ display:none;
328
+ }
329
+ }
330
+ }
331
+
332
+ @mixin transit-swapLeftIn() {
333
+ $name: SwapLeftIn;
334
+ @include keyframes($name) {
335
+ 0% {
336
+ opacity:0;
337
+ }
338
+ 5% {
339
+ @include transform(translate3d(0px, 0px, -800px) rotateY(-70deg));
340
+ opacity: 0;
341
+ }
342
+ 35% {
343
+ @include transform(translate3d(180px, 0px, -400px) rotateY(-20deg));
344
+ opacity: 1;
345
+ }
346
+ 95% {
347
+ @include transform(translate3d(0px, 0px, 0px) rotateY(0deg));
348
+ opacity: 1;
349
+ }
350
+
351
+ }
352
+ }
353
+
354
+ @mixin transit-swapLeftOut() {
355
+ $name: SwapLeftOut;
356
+ @include keyframes($name) {
357
+ 5% {
358
+ @include transform(translate3d(0px, 0px, 0px) rotateY(0deg));
359
+ opacity:1;
360
+ }
361
+
362
+ 35% {
363
+ @include transform(translate3d(-180px, 0px, -400px) rotateY(20deg));
364
+ opacity: .5;
365
+ }
366
+ 95% {
367
+ @include transform(translate3d(0px, 0px, -800px) rotateY(70deg));
368
+ opacity: 1;
369
+ }
370
+
371
+ }
372
+ }
373
+
374
+ @mixin transit-swapRightIn() {
375
+ $name: SwapRightIn;
376
+ @include keyframes($name) {
377
+ 0% {
378
+ opacity:0;
379
+ }
380
+ 5% {
381
+ @include transform(translate3d(0px, 0px, -800px) rotateY(70deg));
382
+ opacity: 0;
383
+ }
384
+ 35% {
385
+ @include transform(translate3d(-180px, 0px, -400px) rotateY(20deg));
386
+ opacity: 1;
387
+ }
388
+ 95% {
389
+ @include transform(translate3d(0px, 0px, 0px) rotateY(0deg));
390
+ opacity: 1;
391
+ }
392
+
393
+ }
394
+ }
395
+
396
+ @mixin transit-swapRightOut() {
397
+ $name: SwapRightOut;
398
+ @include keyframes($name) {
399
+ 5% {
400
+ @include transform(translate3d(0px, 0px, 0px) rotateY(0deg));
401
+ opacity:1;
402
+ }
403
+
404
+ 35% {
405
+ @include transform(translate3d(180px, 0px, -400px) rotateY(-20deg));
406
+ opacity: .5;
407
+ }
408
+ 95% {
409
+ @include transform(translate3d(0px, 0px, -800px) rotateY(-70deg));
410
+ opacity: 1;
411
+ }
412
+
413
+ }
414
+ }
415
+
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+
425
+
@@ -0,0 +1,320 @@
1
+ @import "transit";
2
+
3
+ /*[data-role=container]{
4
+ position:absolute;
5
+ top:0;
6
+ left:0;
7
+ width:100%;
8
+ min-height: 100%;
9
+ }
10
+ .ui-page {
11
+ top: 0;
12
+ left: 0;
13
+ position: absolute;
14
+ width: 100%;
15
+ min-height: 100%;
16
+ border: 0;
17
+ padding: 0;
18
+ margin: 0;
19
+ outline: none;
20
+ }
21
+ .ui-placeholder {
22
+ top: 0;
23
+ left: 0;
24
+ position: absolute;
25
+ outline: none;
26
+
27
+
28
+ }
29
+ .ui-viewport{
30
+ position:relative;
31
+ visibility: hidden;
32
+ //overflow: hidden;
33
+ }
34
+ .ui-hidden{
35
+ visibility: hidden;
36
+ }
37
+ @media screen and (orientation: portrait){
38
+ .ui-page { min-height: 420px; }
39
+ body{
40
+ -webkit-user-select: none;
41
+ }
42
+
43
+ }
44
+ @media screen and (orientation: landscape){
45
+ .ui-page { min-height: 300px; }
46
+ body{
47
+ -webkit-user-select: none;
48
+ }
49
+ }
50
+
51
+ .ui-viewport-transitioning,
52
+ .ui-viewport-transitioning .ui-page {
53
+ width: 100%;
54
+ height: 100%;
55
+ overflow: hidden;
56
+ -webkit-box-sizing: border-box;
57
+ -moz-box-sizing: border-box;
58
+ box-sizing: border-box;
59
+ }
60
+ .in {
61
+ -webkit-animation-timing-function: ease-in-out;
62
+ -webkit-animation-duration: 250ms;
63
+ -moz-animation-timing-function: ease-in-out;
64
+ -moz-animation-duration: 250ms;
65
+ -o-animation-timing-function: ease-in-out;
66
+ -o-animation-duration: 250ms;
67
+ animation-timing-function: ease-in-out;
68
+ animation-duration: 250ms;
69
+ }
70
+ .out {
71
+ -webkit-animation-timing-function: ease-in-out;
72
+ -webkit-animation-duration: 250ms;
73
+ -moz-animation-timing-function: ease-in-out;
74
+ -moz-animation-duration: 250ms;
75
+ -o-animation-timing-function: ease-in-out;
76
+ -o-animation-duration: 250ms;
77
+ animation-timing-function: ease-in-out;
78
+ animation-duration: 250ms;
79
+ }
80
+
81
+ .hardware-accelerate{
82
+ -webkit-transform: translate3d(0, 0, 0);
83
+ }
84
+ .supports3d{
85
+ -webkit-perspective: 1000;
86
+ -moz-perspective: 1000;
87
+ -o-perspective: 1000;
88
+ perspective: 1000;
89
+ > * {
90
+ -webkit-transform: translate3d(0,0,0) rotate(0) scale(1);
91
+
92
+ }
93
+ -webkit-transform-style: preserve-3d;
94
+ -moz-transform-style: preserve-3d;
95
+
96
+ }
97
+
98
+
99
+
100
+ //Page Transitions
101
+
102
+ //fade --mobile and desktop
103
+ .fade.out, .fade.in {
104
+ -webkit-animation-timing-function: ease-in-out;
105
+ -webkit-animation-duration: 350ms;
106
+ -moz-animation-timing-function: ease-in-out;
107
+ -moz-animation-duration: 350ms;
108
+ -o-animation-timing-function: ease-in-out;
109
+ -o-animation-duration: 350ms;
110
+ animation-timing-function: ease-in-out;
111
+ animation-duration: 350ms;
112
+
113
+ }
114
+ .fade.in {
115
+ @include animation(fadeIn);
116
+ }
117
+ .fade.out {
118
+ @include animation(fadeOut);
119
+ }
120
+ .fade.in.reverse {
121
+ @include animation(fadeIn);
122
+ }
123
+ .fade.out.reverse {
124
+ @include animation(fadeOut);
125
+ }
126
+
127
+
128
+ //dissolve --mobile and desktop
129
+ .dissolve.out, .dissolve.in {
130
+ -webkit-animation-timing-function: ease-in-out;
131
+ -webkit-animation-duration: 350ms;
132
+ -moz-animation-timing-function: ease-in-out;
133
+ -moz-animation-duration: 350ms;
134
+ -o-animation-timing-function: ease-in-out;
135
+ -o-animation-duration: 350ms;
136
+ animation-timing-function: ease-in-out;
137
+ animation-duration: 350ms;
138
+
139
+ }
140
+ .dissolve.in {
141
+ @include animation(dissolveIn);
142
+ }
143
+ .dissolve.out {
144
+ @include animation(dissolveOut);
145
+ }
146
+ .dissolve.in.reverse {
147
+ @include animation(dissolveIn);
148
+ }
149
+ .dissolve.out.reverse {
150
+ @include animation(dissolveOut);
151
+ }
152
+
153
+
154
+
155
+ //slide
156
+ .slide.out, .slide.in {
157
+ -webkit-animation-timing-function: ease-in-out;
158
+ -webkit-animation-duration: 250ms;
159
+ -moz-animation-timing-function: ease-in-out;
160
+ -moz-animation-duration: 250ms;
161
+ -o-animation-timing-function: ease-in-out;
162
+ -o-animation-duration: 250ms;
163
+ animation-timing-function: ease-in-out;
164
+ animation-duration: 250ms;
165
+ }
166
+ .slide.out {
167
+ @include animation(slideleftout);
168
+ }
169
+
170
+ .slide.in {
171
+ @include animation(slideleftin);
172
+ }
173
+
174
+ .slide.out.reverse {
175
+ @include animation(sliderightout);
176
+ }
177
+
178
+ .slide.in.reverse {
179
+ @include animation(sliderightin);
180
+ }
181
+
182
+
183
+ //pop
184
+ .pop.out, .pop.in {
185
+ -webkit-animation-timing-function: ease-in-out;
186
+ -webkit-animation-duration: 250ms;
187
+ -moz-animation-timing-function: ease-in-out;
188
+ -moz-animation-duration: 250ms;
189
+ -o-animation-timing-function: ease-in-out;
190
+ -o-animation-duration: 250ms;
191
+ animation-timing-function: ease-in-out;
192
+ animation-duration: 250ms;
193
+ }
194
+ .pop.in {
195
+ @include animation(popIn);
196
+ }
197
+
198
+ .pop.out {
199
+ @include animation(popOut);
200
+ }
201
+ .pop.in.reverse {
202
+ @include animation(popIn);
203
+ }
204
+
205
+ .pop.out.reverse {
206
+ @include animation(popOut);
207
+ }
208
+
209
+ //mobile only
210
+ //flip 3D Transition
211
+
212
+ .flip.in {
213
+ -webkit-backface-visibility: hidden !important;
214
+ -webkit-transform-style: preserve-3d;
215
+ @include animation(flipleftin);
216
+ }
217
+
218
+ .flip.out {
219
+ -webkit-backface-visibility: hidden !important;
220
+ -webkit-transform-style: preserve-3d;
221
+ z-index:1000;
222
+ background-color:inherit;
223
+ @include animation(flipleftout);
224
+
225
+ }
226
+ .flip.in.reverse {
227
+ -webkit-backface-visibility: hidden !important;
228
+ -webkit-transform-style: preserve-3d;
229
+ @include animation(fliprightin);
230
+ }
231
+
232
+ .flip.out.reverse {
233
+ -webkit-backface-visibility: hidden !important;
234
+ -webkit-transform-style: preserve-3d;
235
+ @include animation(fliprightout);
236
+ }
237
+
238
+ //cube 3D Transition
239
+
240
+ .cube.in {
241
+ -webkit-transform: perspective(800);
242
+ -webkit-animation-duration: 5.6s;
243
+ -webkit-transform-origin: 0% 50%;
244
+ z-index:10;
245
+ background-color:inherit;
246
+ @include animation(cubeleftin);
247
+ }
248
+
249
+ .cube.out {
250
+ -webkit-transform: perspective(800);
251
+ -webkit-animation-duration: 5.6s;
252
+ -webkit-transform-origin: 100% 50%;
253
+ @include animation(cubeleftout);
254
+ }
255
+
256
+ .cube.in.reverse {
257
+ -webkit-transform: perspective(800);
258
+ -webkit-animation-duration: .6s;
259
+ -webkit-transform-origin: 100% 50%;
260
+ z-index:10;
261
+ background-color:inherit;
262
+ @include animation(cuberightin);
263
+ }
264
+ .cube.out.reverse {
265
+ -webkit-transform: perspective(800);
266
+ -webkit-animation-duration: .6s;
267
+ -webkit-transform-origin: 0% 50%;
268
+ @include animation(cuberightout);
269
+ }
270
+
271
+ //fadeSlide
272
+
273
+ .fadeSlide.in {
274
+ -webkit-animation-delay: 350ms;
275
+ @include animation(fadeslideleftin);
276
+ }
277
+ .fadeSlide.out {
278
+ @include animation(fadeOut);
279
+ }
280
+
281
+ .fadeSlide.in.reverse {
282
+ -webkit-animation-delay: 350ms;
283
+ @include animation(fadesliderightin);
284
+ }
285
+ .fadeSlide.out.reverse {
286
+ @include animation(fadeOut);
287
+ }
288
+
289
+
290
+ //swap 3D Transition
291
+
292
+ .swap.in {
293
+ -webkit-animation-duration: .7s;
294
+ -webkit-transform: perspective(800);
295
+ -webkit-animation-timing-function: ease-out;
296
+ z-index:10;
297
+ background-color:inherit;
298
+ @include animation(swapleftin);
299
+ }
300
+ .swap.out {
301
+ -webkit-animation-duration: .7s;
302
+ -webkit-transform: perspective(800);
303
+ -webkit-animation-timing-function: ease-out;
304
+ @include animation(swapleftout);
305
+ }
306
+
307
+ .swap.in.reverse {
308
+ -webkit-animation-duration: .7s;
309
+ -webkit-transform: perspective(800);
310
+ -webkit-animation-timing-function: ease-out;
311
+ z-index:10;
312
+ background-color:inherit;
313
+ @include animation(swaprightin);
314
+ }
315
+ .swap.out.reverse {
316
+ -webkit-animation-duration: .7s;
317
+ -webkit-transform: perspective(800);
318
+ -webkit-animation-timing-function: ease-out;
319
+ @include animation(swaprightout);
320
+ }*/