semantic-ui-rails 0.1.0 → 0.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.
- checksums.yaml +4 -4
- data/lib/generators/semantic/install/install_generator.rb +3 -3
- data/lib/generators/semantic/install/templates/semantic-ui.css.less +47 -0
- data/lib/semantic/ui/rails/version.rb +1 -1
- data/semantic.thor +29 -25
- data/vendor/assets/javascripts/semantic-ui/modules/accordion.js +7 -0
- data/vendor/assets/javascripts/semantic-ui/modules/chatroom.js +1 -1
- data/vendor/assets/javascripts/semantic-ui/modules/checkbox.js +2 -5
- data/vendor/assets/javascripts/semantic-ui/modules/dimmer.js +73 -49
- data/vendor/assets/javascripts/semantic-ui/modules/dropdown.js +135 -136
- data/vendor/assets/javascripts/semantic-ui/modules/modal.js +196 -125
- data/vendor/assets/javascripts/semantic-ui/modules/popup.js +3 -6
- data/vendor/assets/javascripts/semantic-ui/modules/rating.js +80 -38
- data/vendor/assets/javascripts/semantic-ui/modules/sidebar.js +17 -20
- data/vendor/assets/javascripts/semantic-ui/modules/tab.js +32 -20
- data/vendor/assets/javascripts/semantic-ui/modules/transition.js +2 -0
- data/vendor/assets/stylesheets/semantic-ui/collections/form.less +15 -2
- data/vendor/assets/stylesheets/semantic-ui/collections/grid.less +20 -39
- data/vendor/assets/stylesheets/semantic-ui/collections/menu.less +12 -12
- data/vendor/assets/stylesheets/semantic-ui/elements/basic.icon.less +203 -198
- data/vendor/assets/stylesheets/semantic-ui/elements/button.less +17 -6
- data/vendor/assets/stylesheets/semantic-ui/elements/header.less +49 -31
- data/vendor/assets/stylesheets/semantic-ui/elements/icon.less +9 -13
- data/vendor/assets/stylesheets/semantic-ui/elements/image.less +13 -1
- data/vendor/assets/stylesheets/semantic-ui/elements/input.less +1 -1
- data/vendor/assets/stylesheets/semantic-ui/elements/loader.less +8 -8
- data/vendor/assets/stylesheets/semantic-ui/modules/checkbox.less +1 -1
- data/vendor/assets/stylesheets/semantic-ui/modules/dimmer.less +13 -5
- data/vendor/assets/stylesheets/semantic-ui/modules/dropdown.less +48 -8
- data/vendor/assets/stylesheets/semantic-ui/modules/modal.less +72 -13
- data/vendor/assets/stylesheets/semantic-ui/modules/rating.less +38 -35
- data/vendor/assets/stylesheets/semantic-ui/modules/search.less +1 -1
- data/vendor/assets/stylesheets/semantic-ui/modules/tab.less +1 -1
- data/vendor/assets/stylesheets/semantic-ui/modules/transition.less +283 -25
- data/vendor/assets/stylesheets/semantic-ui/views/list.less +24 -2
- metadata +3 -7
- data/lib/generators/semantic/install/templates/semantic-ui/collections.less +0 -6
- data/lib/generators/semantic/install/templates/semantic-ui/elements.less +0 -12
- data/lib/generators/semantic/install/templates/semantic-ui/modules.less +0 -16
- data/lib/generators/semantic/install/templates/semantic-ui/views.less +0 -6
- data/vendor/assets/stylesheets/semantic-ui/views/statistic.css +0 -27
@@ -10,7 +10,7 @@
|
|
10
10
|
*/
|
11
11
|
|
12
12
|
/*******************************
|
13
|
-
|
13
|
+
Modal
|
14
14
|
*******************************/
|
15
15
|
|
16
16
|
.ui.modal {
|
@@ -22,8 +22,8 @@
|
|
22
22
|
left: 50%;
|
23
23
|
text-align: left;
|
24
24
|
|
25
|
-
width:
|
26
|
-
margin-left: -
|
25
|
+
width: 90%;
|
26
|
+
margin-left: -45%;
|
27
27
|
|
28
28
|
background-color: #FFFFFF;
|
29
29
|
border: 1px solid #DDDDDD;
|
@@ -33,6 +33,7 @@
|
|
33
33
|
border-radius: 5px;
|
34
34
|
}
|
35
35
|
|
36
|
+
|
36
37
|
/*******************************
|
37
38
|
Content
|
38
39
|
*******************************/
|
@@ -62,8 +63,6 @@
|
|
62
63
|
---------------*/
|
63
64
|
|
64
65
|
.ui.modal > .header {
|
65
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
66
|
-
|
67
66
|
margin: 0em;
|
68
67
|
padding: 1.5rem 2rem;
|
69
68
|
|
@@ -94,13 +93,17 @@
|
|
94
93
|
.ui.modal > .content > .left {
|
95
94
|
display: table-cell;
|
96
95
|
padding-right: 5%;
|
96
|
+
min-width: 25%;
|
97
97
|
}
|
98
98
|
.ui.modal > .content > .right {
|
99
99
|
display: table-cell;
|
100
100
|
padding-left: 5%;
|
101
|
-
vertical-align:
|
102
|
-
|
103
|
-
|
101
|
+
vertical-align: top;
|
102
|
+
min-width: 25%;
|
103
|
+
}
|
104
|
+
.ui.modal > .content > .left > .icon {
|
105
|
+
font-size: 8em;
|
106
|
+
margin: 0em;
|
104
107
|
}
|
105
108
|
.ui.modal > .content p {
|
106
109
|
line-height: 1.6;
|
@@ -111,8 +114,6 @@
|
|
111
114
|
---------------*/
|
112
115
|
|
113
116
|
.ui.modal .actions {
|
114
|
-
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
115
|
-
|
116
117
|
padding: 1rem 2rem;
|
117
118
|
text-align: right;
|
118
119
|
}
|
@@ -120,6 +121,62 @@
|
|
120
121
|
margin-left: 0.75em;
|
121
122
|
}
|
122
123
|
|
124
|
+
/*-------------------
|
125
|
+
Sizing
|
126
|
+
--------------------*/
|
127
|
+
|
128
|
+
/* Mobile Only */
|
129
|
+
@media only screen and (max-width : 768px) {
|
130
|
+
.ui.modal .content .left {
|
131
|
+
display: block;
|
132
|
+
padding: 0em 0em 0em 1em;
|
133
|
+
}
|
134
|
+
.ui.modal .content .right {
|
135
|
+
display: block;
|
136
|
+
padding: 1em 0em 0em 0em;
|
137
|
+
|
138
|
+
-webkit-box-shadow: none;
|
139
|
+
-moz-box-shadow: none;
|
140
|
+
box-shadow: none;
|
141
|
+
}
|
142
|
+
}
|
143
|
+
/* Tablet and Mobile */
|
144
|
+
@media only screen and (max-width : 998px) {
|
145
|
+
.ui.modal {
|
146
|
+
width: 92%;
|
147
|
+
margin-left: -46%;
|
148
|
+
}
|
149
|
+
.ui.modal > .close {
|
150
|
+
color: rgba(0, 0, 0, 0.8);
|
151
|
+
top: 1.5rem;
|
152
|
+
right: 1rem;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
/* Computer / Responsive */
|
156
|
+
@media only screen and (min-width : 998px) {
|
157
|
+
.ui.modal {
|
158
|
+
width: 74%;
|
159
|
+
margin-left: -37%;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
@media only screen and (min-width : 1500px) {
|
163
|
+
.ui.modal {
|
164
|
+
width: 64%;
|
165
|
+
margin-left: -32%;
|
166
|
+
}
|
167
|
+
}
|
168
|
+
@media only screen and (min-width : 1750px) {
|
169
|
+
.ui.modal {
|
170
|
+
width: 54%;
|
171
|
+
margin-left: -27%;
|
172
|
+
}
|
173
|
+
}
|
174
|
+
@media only screen and (min-width : 2000px) {
|
175
|
+
.ui.modal {
|
176
|
+
width: 44%;
|
177
|
+
margin-left: -22%;
|
178
|
+
}
|
179
|
+
}
|
123
180
|
|
124
181
|
|
125
182
|
/*******************************
|
@@ -131,12 +188,14 @@
|
|
131
188
|
border: none;
|
132
189
|
color: #FFFFFF;
|
133
190
|
}
|
191
|
+
.ui.basic.modal > .close {
|
192
|
+
top: 1.5rem;
|
193
|
+
right: 1rem;
|
194
|
+
}
|
134
195
|
.ui.basic.modal .content {
|
135
196
|
background-color: transparent;
|
136
197
|
}
|
137
198
|
|
138
|
-
|
139
|
-
|
140
199
|
/*******************************
|
141
200
|
Variations
|
142
201
|
*******************************/
|
@@ -144,7 +203,7 @@
|
|
144
203
|
/* A modal that cannot fit on the page */
|
145
204
|
.ui.modal.scrolling {
|
146
205
|
position: absolute;
|
147
|
-
margin-top:
|
206
|
+
margin-top: 10px;
|
148
207
|
}
|
149
208
|
|
150
209
|
|
@@ -15,14 +15,16 @@
|
|
15
15
|
|
16
16
|
.ui.rating {
|
17
17
|
display: inline-block;
|
18
|
-
|
18
|
+
|
19
|
+
font-size: 0em;
|
20
|
+
vertical-align: baseline;
|
19
21
|
margin: 0em 0.5em 0em 0em;
|
20
22
|
}
|
21
23
|
.ui.rating:last-child {
|
22
24
|
margin-right: 0em;
|
23
25
|
}
|
24
26
|
|
25
|
-
.ui.rating:
|
27
|
+
.ui.rating:before {
|
26
28
|
display: block;
|
27
29
|
content: '';
|
28
30
|
visibility: hidden;
|
@@ -33,19 +35,19 @@
|
|
33
35
|
/* Icon */
|
34
36
|
.ui.rating .icon {
|
35
37
|
cursor: default;
|
36
|
-
float: left;
|
37
38
|
|
38
39
|
margin: 0em;
|
39
40
|
|
40
41
|
width: 1em;
|
41
42
|
height: auto;
|
42
43
|
padding: 0em;
|
44
|
+
|
45
|
+
color: rgba(0, 0, 0, 0.15);
|
43
46
|
font-weight: normal;
|
44
47
|
font-style: normal;
|
45
48
|
}
|
46
|
-
.ui.rating .icon:
|
49
|
+
.ui.rating .icon:before {
|
47
50
|
content: "\2605";
|
48
|
-
color: rgba(0, 0, 0, 0.15);
|
49
51
|
|
50
52
|
-webkit-transition:
|
51
53
|
color 0.3s ease,
|
@@ -78,18 +80,17 @@
|
|
78
80
|
--------------------*/
|
79
81
|
|
80
82
|
.ui.star.rating .icon {
|
81
|
-
width:
|
82
|
-
margin-right: 0.1em;
|
83
|
-
}
|
84
|
-
.ui.star.rating .icon:last-child {
|
85
|
-
margin: 0em;
|
83
|
+
width: 1.2em;
|
86
84
|
}
|
87
|
-
|
85
|
+
|
86
|
+
/* Star */
|
87
|
+
.ui.star.rating .icon:before {
|
88
88
|
content: '\f006';
|
89
89
|
font-family: 'Icons';
|
90
90
|
}
|
91
91
|
|
92
|
-
|
92
|
+
/* Active Star */
|
93
|
+
.ui.star.rating .active.icon:before {
|
93
94
|
content: '\f005';
|
94
95
|
font-family: 'Icons';
|
95
96
|
}
|
@@ -100,27 +101,27 @@
|
|
100
101
|
--------------------*/
|
101
102
|
|
102
103
|
.ui.heart.rating .icon {
|
103
|
-
width:
|
104
|
-
margin-right: 0.1em;
|
104
|
+
width: 1.2em;
|
105
105
|
}
|
106
|
-
.ui.heart.rating .icon:
|
107
|
-
margin: 0em;
|
108
|
-
}
|
109
|
-
.ui.heart.rating .icon:after {
|
106
|
+
.ui.heart.rating .icon:before {
|
110
107
|
content: '\f08a';
|
111
108
|
font-family: 'Icons';
|
112
109
|
}
|
113
110
|
|
114
|
-
|
111
|
+
/* Active */
|
112
|
+
.ui.heart.rating .active.icon:before {
|
115
113
|
content: '\f004';
|
116
114
|
font-family: 'Icons';
|
117
|
-
color: #EF404A;
|
118
115
|
}
|
119
|
-
.ui.heart.rating .
|
120
|
-
|
121
|
-
color: #FF2733;
|
116
|
+
.ui.heart.rating .active.icon {
|
117
|
+
color: !important;
|
122
118
|
}
|
123
119
|
|
120
|
+
/* Hovered */
|
121
|
+
.ui.heart.rating .hover.icon,
|
122
|
+
.ui.heart.rating .active.hover.icon {
|
123
|
+
color: !important;
|
124
|
+
}
|
124
125
|
|
125
126
|
/*******************************
|
126
127
|
States
|
@@ -136,8 +137,8 @@
|
|
136
137
|
}
|
137
138
|
|
138
139
|
/* active icons */
|
139
|
-
.ui.rating .active.icon
|
140
|
-
color: #FFCB08;
|
140
|
+
.ui.rating .active.icon {
|
141
|
+
color: #FFCB08 !important;
|
141
142
|
}
|
142
143
|
|
143
144
|
|
@@ -146,15 +147,15 @@
|
|
146
147
|
--------------------*/
|
147
148
|
|
148
149
|
/* rating */
|
149
|
-
.ui.rating.hover .active.icon
|
150
|
+
.ui.rating.hover .active.icon {
|
150
151
|
opacity: 0.5;
|
151
152
|
}
|
152
153
|
|
153
154
|
/* icon */
|
154
|
-
.ui.rating .icon.hover
|
155
|
-
.ui.rating .icon.hover.active
|
155
|
+
.ui.rating .icon.hover,
|
156
|
+
.ui.rating .icon.hover.active {
|
156
157
|
opacity: 1;
|
157
|
-
color: #FFB70A;
|
158
|
+
color: #FFB70A !important;
|
158
159
|
}
|
159
160
|
|
160
161
|
|
@@ -162,15 +163,17 @@
|
|
162
163
|
Variations
|
163
164
|
*******************************/
|
164
165
|
|
165
|
-
.ui.
|
166
|
-
font-size:
|
166
|
+
.ui.small.rating .icon {
|
167
|
+
font-size: 0.75rem;
|
167
168
|
}
|
168
|
-
.ui.
|
169
|
-
font-size:
|
169
|
+
.ui.rating .icon {
|
170
|
+
font-size: 1rem;
|
170
171
|
}
|
171
|
-
.ui.rating {
|
172
|
+
.ui.large.rating .icon {
|
172
173
|
font-size: 1.5rem;
|
174
|
+
vertical-align: middle;
|
173
175
|
}
|
174
|
-
.ui.
|
176
|
+
.ui.huge.rating .icon {
|
175
177
|
font-size: 2rem;
|
178
|
+
vertical-align: middle;
|
176
179
|
}
|
@@ -217,7 +217,7 @@
|
|
217
217
|
---------------*/
|
218
218
|
|
219
219
|
.ui.search.loading .input .icon {
|
220
|
-
background: url(
|
220
|
+
background: url(/assets/semantic-ui/loader-mini.gif) no-repeat 50% 50%;
|
221
221
|
}
|
222
222
|
.ui.search.loading .input .icon:before,
|
223
223
|
.ui.search.loading .input .icon:after {
|
@@ -70,15 +70,6 @@
|
|
70
70
|
visibility: visible;
|
71
71
|
}
|
72
72
|
|
73
|
-
|
74
|
-
/* Direction */
|
75
|
-
.ui.out.transition {
|
76
|
-
-webkit-animation-direction: reverse;
|
77
|
-
-moz-animation-direction: reverse;
|
78
|
-
-o-animation-direction: reverse;
|
79
|
-
animation-direction: reverse;
|
80
|
-
}
|
81
|
-
|
82
73
|
/* Disabled */
|
83
74
|
.ui.disabled.transition {
|
84
75
|
-webkit-animation-play-state: paused;
|
@@ -156,6 +147,12 @@
|
|
156
147
|
-o-animation-name: horizontalFlip;
|
157
148
|
animation-name: horizontalFlip;
|
158
149
|
}
|
150
|
+
.ui.horizontal.flip.transition.out {
|
151
|
+
-webkit-animation-name: horizontalFlipOut;
|
152
|
+
-moz-animation-name: horizontalFlipOut;
|
153
|
+
-o-animation-name: horizontalFlipOut;
|
154
|
+
animation-name: horizontalFlipOut;
|
155
|
+
}
|
159
156
|
.ui.vertical.flip.transition.in,
|
160
157
|
.ui.vertical.flip.transition.out {
|
161
158
|
-webkit-animation-name: verticalFlip;
|
@@ -163,18 +160,29 @@
|
|
163
160
|
-o-animation-name: verticalFlip;
|
164
161
|
animation-name: verticalFlip;
|
165
162
|
}
|
163
|
+
.ui.vertical.flip.transition.out {
|
164
|
+
-webkit-animation-name: verticalFlipOut;
|
165
|
+
-moz-animation-name: verticalFlipOut;
|
166
|
+
-o-animation-name: verticalFlipOut;
|
167
|
+
animation-name: verticalFlipOut;
|
168
|
+
}
|
166
169
|
|
167
170
|
/*--------------
|
168
171
|
Fades
|
169
172
|
---------------*/
|
170
173
|
|
171
|
-
.ui.fade.transition.in
|
172
|
-
.ui.fade.transition.out {
|
174
|
+
.ui.fade.transition.in {
|
173
175
|
-webkit-animation-name: fade;
|
174
176
|
-moz-animation-name: fade;
|
175
177
|
-o-animation-name: fade;
|
176
178
|
animation-name: fade;
|
177
179
|
}
|
180
|
+
.ui.fade.transition.out {
|
181
|
+
-webkit-animation-name: fadeOut;
|
182
|
+
-moz-animation-name: fadeOut;
|
183
|
+
-o-animation-name: fadeOut;
|
184
|
+
animation-name: fadeOut;
|
185
|
+
}
|
178
186
|
|
179
187
|
.ui.fade.up.transition.in {
|
180
188
|
-webkit-animation-name: fadeUp;
|
@@ -183,10 +191,10 @@
|
|
183
191
|
animation-name: fadeUp;
|
184
192
|
}
|
185
193
|
.ui.fade.up.transition.out {
|
186
|
-
-webkit-animation-name:
|
187
|
-
-moz-animation-name:
|
188
|
-
-o-animation-name:
|
189
|
-
animation-name:
|
194
|
+
-webkit-animation-name: fadeUpOut;
|
195
|
+
-moz-animation-name: fadeUpOut;
|
196
|
+
-o-animation-name: fadeUpOut;
|
197
|
+
animation-name: fadeUpOut;
|
190
198
|
}
|
191
199
|
|
192
200
|
.ui.fade.down.transition.in {
|
@@ -196,31 +204,36 @@
|
|
196
204
|
animation-name: fadeDown;
|
197
205
|
}
|
198
206
|
.ui.fade.down.transition.out {
|
199
|
-
-webkit-animation-name:
|
200
|
-
-moz-animation-name:
|
201
|
-
-o-animation-name:
|
202
|
-
animation-name:
|
207
|
+
-webkit-animation-name: fadeDownOut;
|
208
|
+
-moz-animation-name: fadeDownOut;
|
209
|
+
-o-animation-name: fadeDownOut;
|
210
|
+
animation-name: fadeDownOut;
|
203
211
|
}
|
204
212
|
|
205
213
|
/*--------------
|
206
214
|
Scale
|
207
215
|
---------------*/
|
208
216
|
|
209
|
-
.ui.scale.transition.in
|
210
|
-
.ui.scale.transition.out {
|
217
|
+
.ui.scale.transition.in {
|
211
218
|
-webkit-animation-name: scale;
|
212
219
|
-moz-animation-name: scale;
|
213
220
|
-o-animation-name: scale;
|
214
221
|
animation-name: scale;
|
215
222
|
}
|
223
|
+
.ui.scale.transition.out {
|
224
|
+
-webkit-animation-name: scaleOut;
|
225
|
+
-moz-animation-name: scaleOut;
|
226
|
+
-o-animation-name: scaleOut;
|
227
|
+
animation-name: scaleOut;
|
228
|
+
}
|
229
|
+
|
216
230
|
|
217
231
|
|
218
232
|
/*--------------
|
219
233
|
Slide
|
220
234
|
---------------*/
|
221
235
|
|
222
|
-
.ui.slide.down.transition.in
|
223
|
-
.ui.slide.down.transition.out {
|
236
|
+
.ui.slide.down.transition.in {
|
224
237
|
-webkit-animation-name: slide;
|
225
238
|
-moz-animation-name: slide;
|
226
239
|
-o-animation-name: slide;
|
@@ -229,8 +242,17 @@
|
|
229
242
|
-ms-transform-origin: 50% 0%;
|
230
243
|
-webkit-transform-origin: 50% 0%;
|
231
244
|
}
|
232
|
-
.ui.slide.
|
233
|
-
|
245
|
+
.ui.slide.down.transition.out {
|
246
|
+
-webkit-animation-name: slideOut;
|
247
|
+
-moz-animation-name: slideOut;
|
248
|
+
-o-animation-name: slideOut;
|
249
|
+
animation-name: slideOut;
|
250
|
+
transform-origin: 50% 0%;
|
251
|
+
-ms-transform-origin: 50% 0%;
|
252
|
+
-webkit-transform-origin: 50% 0%;
|
253
|
+
}
|
254
|
+
|
255
|
+
.ui.slide.up.transition.in {
|
234
256
|
-webkit-animation-name: slide;
|
235
257
|
-moz-animation-name: slide;
|
236
258
|
-o-animation-name: slide;
|
@@ -239,6 +261,16 @@
|
|
239
261
|
-ms-transform-origin: 50% 100%;
|
240
262
|
-webkit-transform-origin: 50% 100%;
|
241
263
|
}
|
264
|
+
.ui.slide.up.transition.out {
|
265
|
+
-webkit-animation-name: slideOut;
|
266
|
+
-moz-animation-name: slideOut;
|
267
|
+
-o-animation-name: slideOut;
|
268
|
+
animation-name: slideOut;
|
269
|
+
transform-origin: 50% 100%;
|
270
|
+
-ms-transform-origin: 50% 100%;
|
271
|
+
-webkit-transform-origin: 50% 100%;
|
272
|
+
}
|
273
|
+
|
242
274
|
|
243
275
|
@-moz-keyframes slide {
|
244
276
|
0% {
|
@@ -271,6 +303,36 @@
|
|
271
303
|
}
|
272
304
|
}
|
273
305
|
|
306
|
+
@-moz-keyframes slideOut {
|
307
|
+
0% {
|
308
|
+
opacity: 1;
|
309
|
+
-moz-transform: scaleY(1);
|
310
|
+
}
|
311
|
+
100% {
|
312
|
+
opacity: 0;
|
313
|
+
-moz-transform: scaleY(0);
|
314
|
+
}
|
315
|
+
}
|
316
|
+
@-webkit-keyframes slideOut {
|
317
|
+
0% {
|
318
|
+
opacity: 1;
|
319
|
+
-webkit-transform: scaleY(1);
|
320
|
+
}
|
321
|
+
100% {
|
322
|
+
opacity: 0;
|
323
|
+
-webkit-transform: scaleY(0);
|
324
|
+
}
|
325
|
+
}
|
326
|
+
@keyframes slideOut {
|
327
|
+
0% {
|
328
|
+
opacity: 1;
|
329
|
+
transform: scaleY(1);
|
330
|
+
}
|
331
|
+
100% {
|
332
|
+
opacity: 0;
|
333
|
+
transform: scaleY(0);
|
334
|
+
}
|
335
|
+
}
|
274
336
|
|
275
337
|
/*******************************
|
276
338
|
Animations
|
@@ -667,6 +729,46 @@
|
|
667
729
|
opacity: 1;
|
668
730
|
}
|
669
731
|
}
|
732
|
+
@-webkit-keyframes verticalFlipOut {
|
733
|
+
0% {
|
734
|
+
-webkit-transform: rotateX(0deg);
|
735
|
+
opacity: 1;
|
736
|
+
}
|
737
|
+
100% {
|
738
|
+
-webkit-transform: rotateX(-90deg);
|
739
|
+
opacity: 0;
|
740
|
+
}
|
741
|
+
}
|
742
|
+
@-moz-keyframes verticalFlipOut {
|
743
|
+
0% {
|
744
|
+
-moz-transform: rotateX(0deg);
|
745
|
+
opacity: 1;
|
746
|
+
}
|
747
|
+
100% {
|
748
|
+
-moz-transform: rotateX(-90deg);
|
749
|
+
opacity: 0;
|
750
|
+
}
|
751
|
+
}
|
752
|
+
@-o-keyframes verticalFlipOut {
|
753
|
+
0% {
|
754
|
+
-o-transform: rotateX(0deg);
|
755
|
+
opacity: 1;
|
756
|
+
}
|
757
|
+
100% {
|
758
|
+
-o-transform: rotateX(-90deg);
|
759
|
+
opacity: 0;
|
760
|
+
}
|
761
|
+
}
|
762
|
+
@keyframes verticalFlipOut {
|
763
|
+
0% {
|
764
|
+
transform: rotateX(0deg);
|
765
|
+
opacity: 1;
|
766
|
+
}
|
767
|
+
100% {
|
768
|
+
transform: rotateX(-90deg);
|
769
|
+
opacity: 0;
|
770
|
+
}
|
771
|
+
}
|
670
772
|
|
671
773
|
/*--------------
|
672
774
|
Fades
|
@@ -706,6 +808,39 @@
|
|
706
808
|
}
|
707
809
|
}
|
708
810
|
|
811
|
+
@-webkit-keyframes fadeOut {
|
812
|
+
0% {
|
813
|
+
opacity: 1;
|
814
|
+
}
|
815
|
+
100% {
|
816
|
+
opacity: 0;
|
817
|
+
}
|
818
|
+
}
|
819
|
+
@-moz-keyframes fadeOut {
|
820
|
+
0% {
|
821
|
+
opacity: 1;
|
822
|
+
}
|
823
|
+
100% {
|
824
|
+
opacity: 0;
|
825
|
+
}
|
826
|
+
}
|
827
|
+
@-o-keyframes fadeOut {
|
828
|
+
0% {
|
829
|
+
opacity: 1;
|
830
|
+
}
|
831
|
+
100% {
|
832
|
+
opacity: 0;
|
833
|
+
}
|
834
|
+
}
|
835
|
+
@keyframes fadeOut {
|
836
|
+
0% {
|
837
|
+
opacity: 1;
|
838
|
+
}
|
839
|
+
100% {
|
840
|
+
opacity: 0;
|
841
|
+
}
|
842
|
+
}
|
843
|
+
|
709
844
|
/* Fade Up */
|
710
845
|
@-webkit-keyframes fadeUp {
|
711
846
|
0% {
|
@@ -748,6 +883,47 @@
|
|
748
883
|
}
|
749
884
|
}
|
750
885
|
|
886
|
+
@-webkit-keyframes fadeUpOut {
|
887
|
+
0% {
|
888
|
+
opacity: 1;
|
889
|
+
-webkit-transform: translateY(0);
|
890
|
+
}
|
891
|
+
100% {
|
892
|
+
opacity: 0;
|
893
|
+
-webkit-transform: translateY(20px);
|
894
|
+
}
|
895
|
+
}
|
896
|
+
@-moz-keyframes fadeUpOut {
|
897
|
+
0% {
|
898
|
+
opacity: 1;
|
899
|
+
-moz-transform: translateY(0);
|
900
|
+
}
|
901
|
+
100% {
|
902
|
+
opacity: 0;
|
903
|
+
-moz-transform: translateY(20px);
|
904
|
+
}
|
905
|
+
}
|
906
|
+
@-o-keyframes fadeUpOut {
|
907
|
+
0% {
|
908
|
+
opacity: 1;
|
909
|
+
-o-transform: translateY(0);
|
910
|
+
}
|
911
|
+
100% {
|
912
|
+
opacity: 0;
|
913
|
+
-o-transform: translateY(20px);
|
914
|
+
}
|
915
|
+
}
|
916
|
+
@keyframes fadeUpOut {
|
917
|
+
0% {
|
918
|
+
opacity: 1;
|
919
|
+
transform: translateY(0);
|
920
|
+
}
|
921
|
+
100% {
|
922
|
+
opacity: 0;
|
923
|
+
transform: translateY(20px);
|
924
|
+
}
|
925
|
+
}
|
926
|
+
|
751
927
|
/* Fade Down */
|
752
928
|
@-webkit-keyframes fadeDown {
|
753
929
|
0% {
|
@@ -791,6 +967,47 @@
|
|
791
967
|
}
|
792
968
|
|
793
969
|
|
970
|
+
@-webkit-keyframes fadeDownOut {
|
971
|
+
0% {
|
972
|
+
opacity: 1;
|
973
|
+
-webkit-transform: translateY(0);
|
974
|
+
}
|
975
|
+
100% {
|
976
|
+
opacity: 0;
|
977
|
+
-webkit-transform: translateY(-20px);
|
978
|
+
}
|
979
|
+
}
|
980
|
+
@-moz-keyframes fadeDownOut {
|
981
|
+
0% {
|
982
|
+
opacity: 1;
|
983
|
+
-moz-transform: translateY(0);
|
984
|
+
}
|
985
|
+
100% {
|
986
|
+
opacity: 0;
|
987
|
+
-moz-transform: translateY(-20px);
|
988
|
+
}
|
989
|
+
}
|
990
|
+
@-o-keyframes fadeDownOut {
|
991
|
+
0% {
|
992
|
+
opacity: 1;
|
993
|
+
-o-transform: translateY(0);
|
994
|
+
}
|
995
|
+
100% {
|
996
|
+
opacity: 0;
|
997
|
+
-o-transform: translateY(-20px);
|
998
|
+
}
|
999
|
+
}
|
1000
|
+
@keyframes fadeDownOut {
|
1001
|
+
0% {
|
1002
|
+
opacity: 1;
|
1003
|
+
transform: translateY(0);
|
1004
|
+
}
|
1005
|
+
100% {
|
1006
|
+
opacity: 0;
|
1007
|
+
transform: translateY(-20px);
|
1008
|
+
}
|
1009
|
+
}
|
1010
|
+
|
794
1011
|
/*--------------
|
795
1012
|
Scale
|
796
1013
|
---------------*/
|
@@ -835,4 +1052,45 @@
|
|
835
1052
|
opacity: 1;
|
836
1053
|
transform: scale(1);
|
837
1054
|
}
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
@-webkit-keyframes scaleOut {
|
1058
|
+
0% {
|
1059
|
+
opacity: 1;
|
1060
|
+
-webkit-transform: scale(1);
|
1061
|
+
}
|
1062
|
+
100% {
|
1063
|
+
opacity: 0;
|
1064
|
+
-webkit-transform: scale(0.7);
|
1065
|
+
}
|
1066
|
+
}
|
1067
|
+
@-moz-keyframes scaleOut {
|
1068
|
+
0% {
|
1069
|
+
opacity: 1;
|
1070
|
+
-moz-transform: scale(1);
|
1071
|
+
}
|
1072
|
+
100% {
|
1073
|
+
opacity: 0;
|
1074
|
+
-moz-transform: scale(0.7);
|
1075
|
+
}
|
1076
|
+
}
|
1077
|
+
@-o-keyframes scaleOut {
|
1078
|
+
0% {
|
1079
|
+
opacity: 1;
|
1080
|
+
-o-transform: scale(1);
|
1081
|
+
}
|
1082
|
+
100% {
|
1083
|
+
opacity: 0;
|
1084
|
+
-o-transform: scale(0.7);
|
1085
|
+
}
|
1086
|
+
}
|
1087
|
+
@keyframes scaleOut {
|
1088
|
+
0% {
|
1089
|
+
opacity: 1;
|
1090
|
+
transform: scale(1);
|
1091
|
+
}
|
1092
|
+
100% {
|
1093
|
+
opacity: 0;
|
1094
|
+
transform: scale(0.7);
|
1095
|
+
}
|
838
1096
|
}
|