purecss-sass 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.rspec +2 -0
- data/.travis.yml +11 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +90 -0
- data/Rakefile +4 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/purecss-sass.rb +55 -0
- data/lib/purecss/sass/engine.rb +11 -0
- data/lib/purecss/sass/version.rb +5 -0
- data/purecss-sass.gemspec +27 -0
- data/templates/project/manifest.rb +2 -0
- data/templates/project/styles.sass +1 -0
- data/vendor/assets/stylesheets/_purecss.scss +15 -0
- data/vendor/assets/stylesheets/purecss/_base.scss +485 -0
- data/vendor/assets/stylesheets/purecss/_buttons.scss +154 -0
- data/vendor/assets/stylesheets/purecss/_forms-nr.scss +344 -0
- data/vendor/assets/stylesheets/purecss/_forms.scss +393 -0
- data/vendor/assets/stylesheets/purecss/_grids-responsive.scss +609 -0
- data/vendor/assets/stylesheets/purecss/_grids.scss +238 -0
- data/vendor/assets/stylesheets/purecss/_menus.scss +190 -0
- data/vendor/assets/stylesheets/purecss/_tables.scss +91 -0
- metadata +126 -0
@@ -0,0 +1,393 @@
|
|
1
|
+
/*!
|
2
|
+
Pure v0.6.0
|
3
|
+
Copyright 2014 Yahoo! Inc. All rights reserved.
|
4
|
+
Licensed under the BSD License.
|
5
|
+
https://github.com/yahoo/pure/blob/master/LICENSE.md
|
6
|
+
*/
|
7
|
+
/*csslint box-model:false*/
|
8
|
+
/*
|
9
|
+
Box-model set to false because we're setting a height on select elements, which
|
10
|
+
also have border and padding. This is done because some browsers don't render
|
11
|
+
the padding. We explicitly set the box-model for select elements to border-box,
|
12
|
+
so we can ignore the csslint warning.
|
13
|
+
*/
|
14
|
+
|
15
|
+
.pure-form {
|
16
|
+
input {
|
17
|
+
&[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"] {
|
18
|
+
padding: 0.5em 0.6em;
|
19
|
+
display: inline-block;
|
20
|
+
border: 1px solid #ccc;
|
21
|
+
box-shadow: inset 0 1px 3px #ddd;
|
22
|
+
border-radius: 4px;
|
23
|
+
vertical-align: middle;
|
24
|
+
-webkit-box-sizing: border-box;
|
25
|
+
-moz-box-sizing: border-box;
|
26
|
+
box-sizing: border-box;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
select, textarea {
|
31
|
+
padding: 0.5em 0.6em;
|
32
|
+
display: inline-block;
|
33
|
+
border: 1px solid #ccc;
|
34
|
+
box-shadow: inset 0 1px 3px #ddd;
|
35
|
+
border-radius: 4px;
|
36
|
+
vertical-align: middle;
|
37
|
+
-webkit-box-sizing: border-box;
|
38
|
+
-moz-box-sizing: border-box;
|
39
|
+
box-sizing: border-box;
|
40
|
+
}
|
41
|
+
|
42
|
+
input {
|
43
|
+
&:not([type]) {
|
44
|
+
padding: 0.5em 0.6em;
|
45
|
+
display: inline-block;
|
46
|
+
border: 1px solid #ccc;
|
47
|
+
box-shadow: inset 0 1px 3px #ddd;
|
48
|
+
border-radius: 4px;
|
49
|
+
-webkit-box-sizing: border-box;
|
50
|
+
-moz-box-sizing: border-box;
|
51
|
+
box-sizing: border-box;
|
52
|
+
}
|
53
|
+
|
54
|
+
&[type="color"] {
|
55
|
+
padding: 0.2em 0.5em;
|
56
|
+
}
|
57
|
+
|
58
|
+
&[type="text"]:focus, &[type="password"]:focus, &[type="email"]:focus, &[type="url"]:focus, &[type="date"]:focus, &[type="month"]:focus, &[type="time"]:focus, &[type="datetime"]:focus, &[type="datetime-local"]:focus, &[type="week"]:focus, &[type="number"]:focus, &[type="search"]:focus, &[type="tel"]:focus, &[type="color"]:focus {
|
59
|
+
outline: 0;
|
60
|
+
border-color: #129FEA;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
select:focus, textarea:focus {
|
65
|
+
outline: 0;
|
66
|
+
border-color: #129FEA;
|
67
|
+
}
|
68
|
+
|
69
|
+
input {
|
70
|
+
&:not([type]):focus {
|
71
|
+
outline: 0;
|
72
|
+
border-color: #129FEA;
|
73
|
+
}
|
74
|
+
|
75
|
+
&[type="file"]:focus, &[type="radio"]:focus, &[type="checkbox"]:focus {
|
76
|
+
outline: thin solid #129FEA;
|
77
|
+
outline: 1px auto #129FEA;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
.pure-checkbox, .pure-radio {
|
82
|
+
margin: 0.5em 0;
|
83
|
+
display: block;
|
84
|
+
}
|
85
|
+
|
86
|
+
input {
|
87
|
+
&[type="text"][disabled], &[type="password"][disabled], &[type="email"][disabled], &[type="url"][disabled], &[type="date"][disabled], &[type="month"][disabled], &[type="time"][disabled], &[type="datetime"][disabled], &[type="datetime-local"][disabled], &[type="week"][disabled], &[type="number"][disabled], &[type="search"][disabled], &[type="tel"][disabled], &[type="color"][disabled] {
|
88
|
+
cursor: not-allowed;
|
89
|
+
background-color: #eaeded;
|
90
|
+
color: #cad2d3;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
select[disabled], textarea[disabled] {
|
95
|
+
cursor: not-allowed;
|
96
|
+
background-color: #eaeded;
|
97
|
+
color: #cad2d3;
|
98
|
+
}
|
99
|
+
|
100
|
+
input {
|
101
|
+
&:not([type])[disabled] {
|
102
|
+
cursor: not-allowed;
|
103
|
+
background-color: #eaeded;
|
104
|
+
color: #cad2d3;
|
105
|
+
}
|
106
|
+
|
107
|
+
&[readonly] {
|
108
|
+
background-color: #eee;
|
109
|
+
|
110
|
+
/* menu hover bg color */
|
111
|
+
color: #777;
|
112
|
+
|
113
|
+
/* menu text color */
|
114
|
+
border-color: #ccc;
|
115
|
+
}
|
116
|
+
}
|
117
|
+
|
118
|
+
select[readonly], textarea[readonly] {
|
119
|
+
background-color: #eee;
|
120
|
+
|
121
|
+
/* menu hover bg color */
|
122
|
+
color: #777;
|
123
|
+
|
124
|
+
/* menu text color */
|
125
|
+
border-color: #ccc;
|
126
|
+
}
|
127
|
+
|
128
|
+
input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
|
129
|
+
color: #b94a48;
|
130
|
+
border-color: #e9322d;
|
131
|
+
}
|
132
|
+
|
133
|
+
input {
|
134
|
+
&[type="file"]:focus:invalid:focus, &[type="radio"]:focus:invalid:focus, &[type="checkbox"]:focus:invalid:focus {
|
135
|
+
outline-color: #e9322d;
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
select {
|
140
|
+
/* Normalizes the height; padding is not sufficient. */
|
141
|
+
height: 2.25em;
|
142
|
+
border: 1px solid #ccc;
|
143
|
+
background-color: white;
|
144
|
+
|
145
|
+
&[multiple] {
|
146
|
+
height: auto;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
label {
|
151
|
+
margin: 0.5em 0 0.2em;
|
152
|
+
}
|
153
|
+
|
154
|
+
fieldset {
|
155
|
+
margin: 0;
|
156
|
+
padding: 0.35em 0 0.75em;
|
157
|
+
border: 0;
|
158
|
+
}
|
159
|
+
|
160
|
+
legend {
|
161
|
+
display: block;
|
162
|
+
width: 100%;
|
163
|
+
padding: 0.3em 0;
|
164
|
+
margin-bottom: 0.3em;
|
165
|
+
color: #333;
|
166
|
+
border-bottom: 1px solid #e5e5e5;
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
/*
|
171
|
+
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
|
172
|
+
since IE8 won't execute CSS that contains a CSS3 selector.
|
173
|
+
*/
|
174
|
+
|
175
|
+
/* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
|
176
|
+
/* May be able to remove this tweak as color inputs become more standardized across browsers. */
|
177
|
+
|
178
|
+
/*
|
179
|
+
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
|
180
|
+
since IE8 won't execute CSS that contains a CSS3 selector.
|
181
|
+
*/
|
182
|
+
|
183
|
+
/*
|
184
|
+
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
|
185
|
+
since IE8 won't execute CSS that contains a CSS3 selector.
|
186
|
+
*/
|
187
|
+
|
188
|
+
.pure-form-stacked {
|
189
|
+
input {
|
190
|
+
&[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"], &[type="file"] {
|
191
|
+
display: block;
|
192
|
+
margin: 0.25em 0;
|
193
|
+
}
|
194
|
+
}
|
195
|
+
|
196
|
+
select, label, textarea, input:not([type]) {
|
197
|
+
display: block;
|
198
|
+
margin: 0.25em 0;
|
199
|
+
}
|
200
|
+
}
|
201
|
+
|
202
|
+
/*
|
203
|
+
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
|
204
|
+
since IE8 won't execute CSS that contains a CSS3 selector.
|
205
|
+
*/
|
206
|
+
|
207
|
+
.pure-form-aligned {
|
208
|
+
input, textarea, select, .pure-help-inline {
|
209
|
+
display: inline-block;
|
210
|
+
*display: inline;
|
211
|
+
*zoom: 1;
|
212
|
+
vertical-align: middle;
|
213
|
+
}
|
214
|
+
}
|
215
|
+
|
216
|
+
.pure-form-message-inline {
|
217
|
+
display: inline-block;
|
218
|
+
*display: inline;
|
219
|
+
*zoom: 1;
|
220
|
+
vertical-align: middle;
|
221
|
+
}
|
222
|
+
|
223
|
+
.pure-form-aligned {
|
224
|
+
textarea {
|
225
|
+
vertical-align: top;
|
226
|
+
}
|
227
|
+
|
228
|
+
.pure-control-group {
|
229
|
+
margin-bottom: 0.5em;
|
230
|
+
|
231
|
+
label {
|
232
|
+
text-align: right;
|
233
|
+
display: inline-block;
|
234
|
+
vertical-align: middle;
|
235
|
+
width: 10em;
|
236
|
+
margin: 0 1em 0 0;
|
237
|
+
}
|
238
|
+
}
|
239
|
+
|
240
|
+
.pure-controls {
|
241
|
+
margin: 1.5em 0 0 11em;
|
242
|
+
}
|
243
|
+
}
|
244
|
+
|
245
|
+
/* Aligned Forms */
|
246
|
+
|
247
|
+
/* Rounded Inputs */
|
248
|
+
|
249
|
+
.pure-form {
|
250
|
+
input.pure-input-rounded, .pure-input-rounded {
|
251
|
+
border-radius: 2em;
|
252
|
+
padding: 0.5em 1em;
|
253
|
+
}
|
254
|
+
|
255
|
+
.pure-group {
|
256
|
+
fieldset {
|
257
|
+
margin-bottom: 10px;
|
258
|
+
}
|
259
|
+
|
260
|
+
input, textarea {
|
261
|
+
display: block;
|
262
|
+
padding: 10px;
|
263
|
+
margin: 0 0 -1px;
|
264
|
+
border-radius: 0;
|
265
|
+
position: relative;
|
266
|
+
top: -1px;
|
267
|
+
}
|
268
|
+
|
269
|
+
input:focus, textarea:focus {
|
270
|
+
z-index: 3;
|
271
|
+
}
|
272
|
+
|
273
|
+
input:first-child, textarea:first-child {
|
274
|
+
top: 1px;
|
275
|
+
border-radius: 4px 4px 0 0;
|
276
|
+
margin: 0;
|
277
|
+
}
|
278
|
+
|
279
|
+
input:first-child:last-child, textarea:first-child:last-child {
|
280
|
+
top: 1px;
|
281
|
+
border-radius: 4px;
|
282
|
+
margin: 0;
|
283
|
+
}
|
284
|
+
|
285
|
+
input:last-child, textarea:last-child {
|
286
|
+
top: -2px;
|
287
|
+
border-radius: 0 0 4px 4px;
|
288
|
+
margin: 0;
|
289
|
+
}
|
290
|
+
|
291
|
+
button {
|
292
|
+
margin: 0.35em 0;
|
293
|
+
}
|
294
|
+
}
|
295
|
+
|
296
|
+
.pure-input-1 {
|
297
|
+
width: 100%;
|
298
|
+
}
|
299
|
+
|
300
|
+
.pure-input-2-3 {
|
301
|
+
width: 66%;
|
302
|
+
}
|
303
|
+
|
304
|
+
.pure-input-1-2 {
|
305
|
+
width: 50%;
|
306
|
+
}
|
307
|
+
|
308
|
+
.pure-input-1-3 {
|
309
|
+
width: 33%;
|
310
|
+
}
|
311
|
+
|
312
|
+
.pure-input-1-4 {
|
313
|
+
width: 25%;
|
314
|
+
}
|
315
|
+
|
316
|
+
.pure-help-inline {
|
317
|
+
display: inline-block;
|
318
|
+
padding-left: 0.3em;
|
319
|
+
color: #666;
|
320
|
+
vertical-align: middle;
|
321
|
+
font-size: 0.875em;
|
322
|
+
}
|
323
|
+
}
|
324
|
+
|
325
|
+
/* Grouped Inputs */
|
326
|
+
|
327
|
+
/* Inline help for forms */
|
328
|
+
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
|
329
|
+
|
330
|
+
.pure-form-message-inline {
|
331
|
+
display: inline-block;
|
332
|
+
padding-left: 0.3em;
|
333
|
+
color: #666;
|
334
|
+
vertical-align: middle;
|
335
|
+
font-size: 0.875em;
|
336
|
+
}
|
337
|
+
|
338
|
+
/* Block help for forms */
|
339
|
+
|
340
|
+
.pure-form-message {
|
341
|
+
display: block;
|
342
|
+
color: #666;
|
343
|
+
font-size: 0.875em;
|
344
|
+
}
|
345
|
+
|
346
|
+
@media only screen and (max-width: 480px) {
|
347
|
+
.pure-form {
|
348
|
+
button[type="submit"] {
|
349
|
+
margin: 0.7em 0 0;
|
350
|
+
}
|
351
|
+
|
352
|
+
input {
|
353
|
+
&:not([type]), &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"] {
|
354
|
+
margin-bottom: 0.3em;
|
355
|
+
display: block;
|
356
|
+
}
|
357
|
+
}
|
358
|
+
|
359
|
+
label {
|
360
|
+
margin-bottom: 0.3em;
|
361
|
+
display: block;
|
362
|
+
}
|
363
|
+
}
|
364
|
+
|
365
|
+
.pure-group input {
|
366
|
+
&:not([type]), &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"] {
|
367
|
+
margin-bottom: 0;
|
368
|
+
}
|
369
|
+
}
|
370
|
+
|
371
|
+
.pure-form-aligned {
|
372
|
+
.pure-control-group label {
|
373
|
+
margin-bottom: 0.3em;
|
374
|
+
text-align: left;
|
375
|
+
display: block;
|
376
|
+
width: 100%;
|
377
|
+
}
|
378
|
+
|
379
|
+
.pure-controls {
|
380
|
+
margin: 1.5em 0 0 0;
|
381
|
+
}
|
382
|
+
}
|
383
|
+
|
384
|
+
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
|
385
|
+
|
386
|
+
.pure-form .pure-help-inline, .pure-form-message-inline, .pure-form-message {
|
387
|
+
display: block;
|
388
|
+
font-size: 0.75em;
|
389
|
+
|
390
|
+
/* Increased bottom padding to make it group with its related input element. */
|
391
|
+
padding: 0.2em 0 0.8em;
|
392
|
+
}
|
393
|
+
}
|
@@ -0,0 +1,609 @@
|
|
1
|
+
/*!
|
2
|
+
Pure v0.6.0
|
3
|
+
Copyright 2014 Yahoo! Inc. All rights reserved.
|
4
|
+
Licensed under the BSD License.
|
5
|
+
https://github.com/yahoo/pure/blob/master/LICENSE.md
|
6
|
+
*/
|
7
|
+
@media screen and (min-width: 35.5em) {
|
8
|
+
.pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-1-2, .pure-u-sm-1-3, .pure-u-sm-2-3, .pure-u-sm-1-4, .pure-u-sm-3-4, .pure-u-sm-1-5, .pure-u-sm-2-5, .pure-u-sm-3-5, .pure-u-sm-4-5, .pure-u-sm-5-5, .pure-u-sm-1-6, .pure-u-sm-5-6, .pure-u-sm-1-8, .pure-u-sm-3-8, .pure-u-sm-5-8, .pure-u-sm-7-8, .pure-u-sm-1-12, .pure-u-sm-5-12, .pure-u-sm-7-12, .pure-u-sm-11-12, .pure-u-sm-1-24, .pure-u-sm-2-24, .pure-u-sm-3-24, .pure-u-sm-4-24, .pure-u-sm-5-24, .pure-u-sm-6-24, .pure-u-sm-7-24, .pure-u-sm-8-24, .pure-u-sm-9-24, .pure-u-sm-10-24, .pure-u-sm-11-24, .pure-u-sm-12-24, .pure-u-sm-13-24, .pure-u-sm-14-24, .pure-u-sm-15-24, .pure-u-sm-16-24, .pure-u-sm-17-24, .pure-u-sm-18-24, .pure-u-sm-19-24, .pure-u-sm-20-24, .pure-u-sm-21-24, .pure-u-sm-22-24, .pure-u-sm-23-24, .pure-u-sm-24-24 {
|
9
|
+
display: inline-block;
|
10
|
+
*display: inline;
|
11
|
+
zoom: 1;
|
12
|
+
letter-spacing: normal;
|
13
|
+
word-spacing: normal;
|
14
|
+
vertical-align: top;
|
15
|
+
text-rendering: auto;
|
16
|
+
}
|
17
|
+
|
18
|
+
.pure-u-sm-1-24 {
|
19
|
+
width: 4.1667%;
|
20
|
+
*width: 4.1357%;
|
21
|
+
}
|
22
|
+
|
23
|
+
.pure-u-sm-1-12, .pure-u-sm-2-24 {
|
24
|
+
width: 8.3333%;
|
25
|
+
*width: 8.3023%;
|
26
|
+
}
|
27
|
+
|
28
|
+
.pure-u-sm-1-8, .pure-u-sm-3-24 {
|
29
|
+
width: 12.5000%;
|
30
|
+
*width: 12.4690%;
|
31
|
+
}
|
32
|
+
|
33
|
+
.pure-u-sm-1-6, .pure-u-sm-4-24 {
|
34
|
+
width: 16.6667%;
|
35
|
+
*width: 16.6357%;
|
36
|
+
}
|
37
|
+
|
38
|
+
.pure-u-sm-1-5 {
|
39
|
+
width: 20%;
|
40
|
+
*width: 19.9690%;
|
41
|
+
}
|
42
|
+
|
43
|
+
.pure-u-sm-5-24 {
|
44
|
+
width: 20.8333%;
|
45
|
+
*width: 20.8023%;
|
46
|
+
}
|
47
|
+
|
48
|
+
.pure-u-sm-1-4, .pure-u-sm-6-24 {
|
49
|
+
width: 25%;
|
50
|
+
*width: 24.9690%;
|
51
|
+
}
|
52
|
+
|
53
|
+
.pure-u-sm-7-24 {
|
54
|
+
width: 29.1667%;
|
55
|
+
*width: 29.1357%;
|
56
|
+
}
|
57
|
+
|
58
|
+
.pure-u-sm-1-3, .pure-u-sm-8-24 {
|
59
|
+
width: 33.3333%;
|
60
|
+
*width: 33.3023%;
|
61
|
+
}
|
62
|
+
|
63
|
+
.pure-u-sm-3-8, .pure-u-sm-9-24 {
|
64
|
+
width: 37.5000%;
|
65
|
+
*width: 37.4690%;
|
66
|
+
}
|
67
|
+
|
68
|
+
.pure-u-sm-2-5 {
|
69
|
+
width: 40%;
|
70
|
+
*width: 39.9690%;
|
71
|
+
}
|
72
|
+
|
73
|
+
.pure-u-sm-5-12, .pure-u-sm-10-24 {
|
74
|
+
width: 41.6667%;
|
75
|
+
*width: 41.6357%;
|
76
|
+
}
|
77
|
+
|
78
|
+
.pure-u-sm-11-24 {
|
79
|
+
width: 45.8333%;
|
80
|
+
*width: 45.8023%;
|
81
|
+
}
|
82
|
+
|
83
|
+
.pure-u-sm-1-2, .pure-u-sm-12-24 {
|
84
|
+
width: 50%;
|
85
|
+
*width: 49.9690%;
|
86
|
+
}
|
87
|
+
|
88
|
+
.pure-u-sm-13-24 {
|
89
|
+
width: 54.1667%;
|
90
|
+
*width: 54.1357%;
|
91
|
+
}
|
92
|
+
|
93
|
+
.pure-u-sm-7-12, .pure-u-sm-14-24 {
|
94
|
+
width: 58.3333%;
|
95
|
+
*width: 58.3023%;
|
96
|
+
}
|
97
|
+
|
98
|
+
.pure-u-sm-3-5 {
|
99
|
+
width: 60%;
|
100
|
+
*width: 59.9690%;
|
101
|
+
}
|
102
|
+
|
103
|
+
.pure-u-sm-5-8, .pure-u-sm-15-24 {
|
104
|
+
width: 62.5000%;
|
105
|
+
*width: 62.4690%;
|
106
|
+
}
|
107
|
+
|
108
|
+
.pure-u-sm-2-3, .pure-u-sm-16-24 {
|
109
|
+
width: 66.6667%;
|
110
|
+
*width: 66.6357%;
|
111
|
+
}
|
112
|
+
|
113
|
+
.pure-u-sm-17-24 {
|
114
|
+
width: 70.8333%;
|
115
|
+
*width: 70.8023%;
|
116
|
+
}
|
117
|
+
|
118
|
+
.pure-u-sm-3-4, .pure-u-sm-18-24 {
|
119
|
+
width: 75%;
|
120
|
+
*width: 74.9690%;
|
121
|
+
}
|
122
|
+
|
123
|
+
.pure-u-sm-19-24 {
|
124
|
+
width: 79.1667%;
|
125
|
+
*width: 79.1357%;
|
126
|
+
}
|
127
|
+
|
128
|
+
.pure-u-sm-4-5 {
|
129
|
+
width: 80%;
|
130
|
+
*width: 79.9690%;
|
131
|
+
}
|
132
|
+
|
133
|
+
.pure-u-sm-5-6, .pure-u-sm-20-24 {
|
134
|
+
width: 83.3333%;
|
135
|
+
*width: 83.3023%;
|
136
|
+
}
|
137
|
+
|
138
|
+
.pure-u-sm-7-8, .pure-u-sm-21-24 {
|
139
|
+
width: 87.5000%;
|
140
|
+
*width: 87.4690%;
|
141
|
+
}
|
142
|
+
|
143
|
+
.pure-u-sm-11-12, .pure-u-sm-22-24 {
|
144
|
+
width: 91.6667%;
|
145
|
+
*width: 91.6357%;
|
146
|
+
}
|
147
|
+
|
148
|
+
.pure-u-sm-23-24 {
|
149
|
+
width: 95.8333%;
|
150
|
+
*width: 95.8023%;
|
151
|
+
}
|
152
|
+
|
153
|
+
.pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-5-5, .pure-u-sm-24-24 {
|
154
|
+
width: 100%;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
@media screen and (min-width: 48em) {
|
159
|
+
.pure-u-md-1, .pure-u-md-1-1, .pure-u-md-1-2, .pure-u-md-1-3, .pure-u-md-2-3, .pure-u-md-1-4, .pure-u-md-3-4, .pure-u-md-1-5, .pure-u-md-2-5, .pure-u-md-3-5, .pure-u-md-4-5, .pure-u-md-5-5, .pure-u-md-1-6, .pure-u-md-5-6, .pure-u-md-1-8, .pure-u-md-3-8, .pure-u-md-5-8, .pure-u-md-7-8, .pure-u-md-1-12, .pure-u-md-5-12, .pure-u-md-7-12, .pure-u-md-11-12, .pure-u-md-1-24, .pure-u-md-2-24, .pure-u-md-3-24, .pure-u-md-4-24, .pure-u-md-5-24, .pure-u-md-6-24, .pure-u-md-7-24, .pure-u-md-8-24, .pure-u-md-9-24, .pure-u-md-10-24, .pure-u-md-11-24, .pure-u-md-12-24, .pure-u-md-13-24, .pure-u-md-14-24, .pure-u-md-15-24, .pure-u-md-16-24, .pure-u-md-17-24, .pure-u-md-18-24, .pure-u-md-19-24, .pure-u-md-20-24, .pure-u-md-21-24, .pure-u-md-22-24, .pure-u-md-23-24, .pure-u-md-24-24 {
|
160
|
+
display: inline-block;
|
161
|
+
*display: inline;
|
162
|
+
zoom: 1;
|
163
|
+
letter-spacing: normal;
|
164
|
+
word-spacing: normal;
|
165
|
+
vertical-align: top;
|
166
|
+
text-rendering: auto;
|
167
|
+
}
|
168
|
+
|
169
|
+
.pure-u-md-1-24 {
|
170
|
+
width: 4.1667%;
|
171
|
+
*width: 4.1357%;
|
172
|
+
}
|
173
|
+
|
174
|
+
.pure-u-md-1-12, .pure-u-md-2-24 {
|
175
|
+
width: 8.3333%;
|
176
|
+
*width: 8.3023%;
|
177
|
+
}
|
178
|
+
|
179
|
+
.pure-u-md-1-8, .pure-u-md-3-24 {
|
180
|
+
width: 12.5000%;
|
181
|
+
*width: 12.4690%;
|
182
|
+
}
|
183
|
+
|
184
|
+
.pure-u-md-1-6, .pure-u-md-4-24 {
|
185
|
+
width: 16.6667%;
|
186
|
+
*width: 16.6357%;
|
187
|
+
}
|
188
|
+
|
189
|
+
.pure-u-md-1-5 {
|
190
|
+
width: 20%;
|
191
|
+
*width: 19.9690%;
|
192
|
+
}
|
193
|
+
|
194
|
+
.pure-u-md-5-24 {
|
195
|
+
width: 20.8333%;
|
196
|
+
*width: 20.8023%;
|
197
|
+
}
|
198
|
+
|
199
|
+
.pure-u-md-1-4, .pure-u-md-6-24 {
|
200
|
+
width: 25%;
|
201
|
+
*width: 24.9690%;
|
202
|
+
}
|
203
|
+
|
204
|
+
.pure-u-md-7-24 {
|
205
|
+
width: 29.1667%;
|
206
|
+
*width: 29.1357%;
|
207
|
+
}
|
208
|
+
|
209
|
+
.pure-u-md-1-3, .pure-u-md-8-24 {
|
210
|
+
width: 33.3333%;
|
211
|
+
*width: 33.3023%;
|
212
|
+
}
|
213
|
+
|
214
|
+
.pure-u-md-3-8, .pure-u-md-9-24 {
|
215
|
+
width: 37.5000%;
|
216
|
+
*width: 37.4690%;
|
217
|
+
}
|
218
|
+
|
219
|
+
.pure-u-md-2-5 {
|
220
|
+
width: 40%;
|
221
|
+
*width: 39.9690%;
|
222
|
+
}
|
223
|
+
|
224
|
+
.pure-u-md-5-12, .pure-u-md-10-24 {
|
225
|
+
width: 41.6667%;
|
226
|
+
*width: 41.6357%;
|
227
|
+
}
|
228
|
+
|
229
|
+
.pure-u-md-11-24 {
|
230
|
+
width: 45.8333%;
|
231
|
+
*width: 45.8023%;
|
232
|
+
}
|
233
|
+
|
234
|
+
.pure-u-md-1-2, .pure-u-md-12-24 {
|
235
|
+
width: 50%;
|
236
|
+
*width: 49.9690%;
|
237
|
+
}
|
238
|
+
|
239
|
+
.pure-u-md-13-24 {
|
240
|
+
width: 54.1667%;
|
241
|
+
*width: 54.1357%;
|
242
|
+
}
|
243
|
+
|
244
|
+
.pure-u-md-7-12, .pure-u-md-14-24 {
|
245
|
+
width: 58.3333%;
|
246
|
+
*width: 58.3023%;
|
247
|
+
}
|
248
|
+
|
249
|
+
.pure-u-md-3-5 {
|
250
|
+
width: 60%;
|
251
|
+
*width: 59.9690%;
|
252
|
+
}
|
253
|
+
|
254
|
+
.pure-u-md-5-8, .pure-u-md-15-24 {
|
255
|
+
width: 62.5000%;
|
256
|
+
*width: 62.4690%;
|
257
|
+
}
|
258
|
+
|
259
|
+
.pure-u-md-2-3, .pure-u-md-16-24 {
|
260
|
+
width: 66.6667%;
|
261
|
+
*width: 66.6357%;
|
262
|
+
}
|
263
|
+
|
264
|
+
.pure-u-md-17-24 {
|
265
|
+
width: 70.8333%;
|
266
|
+
*width: 70.8023%;
|
267
|
+
}
|
268
|
+
|
269
|
+
.pure-u-md-3-4, .pure-u-md-18-24 {
|
270
|
+
width: 75%;
|
271
|
+
*width: 74.9690%;
|
272
|
+
}
|
273
|
+
|
274
|
+
.pure-u-md-19-24 {
|
275
|
+
width: 79.1667%;
|
276
|
+
*width: 79.1357%;
|
277
|
+
}
|
278
|
+
|
279
|
+
.pure-u-md-4-5 {
|
280
|
+
width: 80%;
|
281
|
+
*width: 79.9690%;
|
282
|
+
}
|
283
|
+
|
284
|
+
.pure-u-md-5-6, .pure-u-md-20-24 {
|
285
|
+
width: 83.3333%;
|
286
|
+
*width: 83.3023%;
|
287
|
+
}
|
288
|
+
|
289
|
+
.pure-u-md-7-8, .pure-u-md-21-24 {
|
290
|
+
width: 87.5000%;
|
291
|
+
*width: 87.4690%;
|
292
|
+
}
|
293
|
+
|
294
|
+
.pure-u-md-11-12, .pure-u-md-22-24 {
|
295
|
+
width: 91.6667%;
|
296
|
+
*width: 91.6357%;
|
297
|
+
}
|
298
|
+
|
299
|
+
.pure-u-md-23-24 {
|
300
|
+
width: 95.8333%;
|
301
|
+
*width: 95.8023%;
|
302
|
+
}
|
303
|
+
|
304
|
+
.pure-u-md-1, .pure-u-md-1-1, .pure-u-md-5-5, .pure-u-md-24-24 {
|
305
|
+
width: 100%;
|
306
|
+
}
|
307
|
+
}
|
308
|
+
|
309
|
+
@media screen and (min-width: 64em) {
|
310
|
+
.pure-u-lg-1, .pure-u-lg-1-1, .pure-u-lg-1-2, .pure-u-lg-1-3, .pure-u-lg-2-3, .pure-u-lg-1-4, .pure-u-lg-3-4, .pure-u-lg-1-5, .pure-u-lg-2-5, .pure-u-lg-3-5, .pure-u-lg-4-5, .pure-u-lg-5-5, .pure-u-lg-1-6, .pure-u-lg-5-6, .pure-u-lg-1-8, .pure-u-lg-3-8, .pure-u-lg-5-8, .pure-u-lg-7-8, .pure-u-lg-1-12, .pure-u-lg-5-12, .pure-u-lg-7-12, .pure-u-lg-11-12, .pure-u-lg-1-24, .pure-u-lg-2-24, .pure-u-lg-3-24, .pure-u-lg-4-24, .pure-u-lg-5-24, .pure-u-lg-6-24, .pure-u-lg-7-24, .pure-u-lg-8-24, .pure-u-lg-9-24, .pure-u-lg-10-24, .pure-u-lg-11-24, .pure-u-lg-12-24, .pure-u-lg-13-24, .pure-u-lg-14-24, .pure-u-lg-15-24, .pure-u-lg-16-24, .pure-u-lg-17-24, .pure-u-lg-18-24, .pure-u-lg-19-24, .pure-u-lg-20-24, .pure-u-lg-21-24, .pure-u-lg-22-24, .pure-u-lg-23-24, .pure-u-lg-24-24 {
|
311
|
+
display: inline-block;
|
312
|
+
*display: inline;
|
313
|
+
zoom: 1;
|
314
|
+
letter-spacing: normal;
|
315
|
+
word-spacing: normal;
|
316
|
+
vertical-align: top;
|
317
|
+
text-rendering: auto;
|
318
|
+
}
|
319
|
+
|
320
|
+
.pure-u-lg-1-24 {
|
321
|
+
width: 4.1667%;
|
322
|
+
*width: 4.1357%;
|
323
|
+
}
|
324
|
+
|
325
|
+
.pure-u-lg-1-12, .pure-u-lg-2-24 {
|
326
|
+
width: 8.3333%;
|
327
|
+
*width: 8.3023%;
|
328
|
+
}
|
329
|
+
|
330
|
+
.pure-u-lg-1-8, .pure-u-lg-3-24 {
|
331
|
+
width: 12.5000%;
|
332
|
+
*width: 12.4690%;
|
333
|
+
}
|
334
|
+
|
335
|
+
.pure-u-lg-1-6, .pure-u-lg-4-24 {
|
336
|
+
width: 16.6667%;
|
337
|
+
*width: 16.6357%;
|
338
|
+
}
|
339
|
+
|
340
|
+
.pure-u-lg-1-5 {
|
341
|
+
width: 20%;
|
342
|
+
*width: 19.9690%;
|
343
|
+
}
|
344
|
+
|
345
|
+
.pure-u-lg-5-24 {
|
346
|
+
width: 20.8333%;
|
347
|
+
*width: 20.8023%;
|
348
|
+
}
|
349
|
+
|
350
|
+
.pure-u-lg-1-4, .pure-u-lg-6-24 {
|
351
|
+
width: 25%;
|
352
|
+
*width: 24.9690%;
|
353
|
+
}
|
354
|
+
|
355
|
+
.pure-u-lg-7-24 {
|
356
|
+
width: 29.1667%;
|
357
|
+
*width: 29.1357%;
|
358
|
+
}
|
359
|
+
|
360
|
+
.pure-u-lg-1-3, .pure-u-lg-8-24 {
|
361
|
+
width: 33.3333%;
|
362
|
+
*width: 33.3023%;
|
363
|
+
}
|
364
|
+
|
365
|
+
.pure-u-lg-3-8, .pure-u-lg-9-24 {
|
366
|
+
width: 37.5000%;
|
367
|
+
*width: 37.4690%;
|
368
|
+
}
|
369
|
+
|
370
|
+
.pure-u-lg-2-5 {
|
371
|
+
width: 40%;
|
372
|
+
*width: 39.9690%;
|
373
|
+
}
|
374
|
+
|
375
|
+
.pure-u-lg-5-12, .pure-u-lg-10-24 {
|
376
|
+
width: 41.6667%;
|
377
|
+
*width: 41.6357%;
|
378
|
+
}
|
379
|
+
|
380
|
+
.pure-u-lg-11-24 {
|
381
|
+
width: 45.8333%;
|
382
|
+
*width: 45.8023%;
|
383
|
+
}
|
384
|
+
|
385
|
+
.pure-u-lg-1-2, .pure-u-lg-12-24 {
|
386
|
+
width: 50%;
|
387
|
+
*width: 49.9690%;
|
388
|
+
}
|
389
|
+
|
390
|
+
.pure-u-lg-13-24 {
|
391
|
+
width: 54.1667%;
|
392
|
+
*width: 54.1357%;
|
393
|
+
}
|
394
|
+
|
395
|
+
.pure-u-lg-7-12, .pure-u-lg-14-24 {
|
396
|
+
width: 58.3333%;
|
397
|
+
*width: 58.3023%;
|
398
|
+
}
|
399
|
+
|
400
|
+
.pure-u-lg-3-5 {
|
401
|
+
width: 60%;
|
402
|
+
*width: 59.9690%;
|
403
|
+
}
|
404
|
+
|
405
|
+
.pure-u-lg-5-8, .pure-u-lg-15-24 {
|
406
|
+
width: 62.5000%;
|
407
|
+
*width: 62.4690%;
|
408
|
+
}
|
409
|
+
|
410
|
+
.pure-u-lg-2-3, .pure-u-lg-16-24 {
|
411
|
+
width: 66.6667%;
|
412
|
+
*width: 66.6357%;
|
413
|
+
}
|
414
|
+
|
415
|
+
.pure-u-lg-17-24 {
|
416
|
+
width: 70.8333%;
|
417
|
+
*width: 70.8023%;
|
418
|
+
}
|
419
|
+
|
420
|
+
.pure-u-lg-3-4, .pure-u-lg-18-24 {
|
421
|
+
width: 75%;
|
422
|
+
*width: 74.9690%;
|
423
|
+
}
|
424
|
+
|
425
|
+
.pure-u-lg-19-24 {
|
426
|
+
width: 79.1667%;
|
427
|
+
*width: 79.1357%;
|
428
|
+
}
|
429
|
+
|
430
|
+
.pure-u-lg-4-5 {
|
431
|
+
width: 80%;
|
432
|
+
*width: 79.9690%;
|
433
|
+
}
|
434
|
+
|
435
|
+
.pure-u-lg-5-6, .pure-u-lg-20-24 {
|
436
|
+
width: 83.3333%;
|
437
|
+
*width: 83.3023%;
|
438
|
+
}
|
439
|
+
|
440
|
+
.pure-u-lg-7-8, .pure-u-lg-21-24 {
|
441
|
+
width: 87.5000%;
|
442
|
+
*width: 87.4690%;
|
443
|
+
}
|
444
|
+
|
445
|
+
.pure-u-lg-11-12, .pure-u-lg-22-24 {
|
446
|
+
width: 91.6667%;
|
447
|
+
*width: 91.6357%;
|
448
|
+
}
|
449
|
+
|
450
|
+
.pure-u-lg-23-24 {
|
451
|
+
width: 95.8333%;
|
452
|
+
*width: 95.8023%;
|
453
|
+
}
|
454
|
+
|
455
|
+
.pure-u-lg-1, .pure-u-lg-1-1, .pure-u-lg-5-5, .pure-u-lg-24-24 {
|
456
|
+
width: 100%;
|
457
|
+
}
|
458
|
+
}
|
459
|
+
|
460
|
+
@media screen and (min-width: 80em) {
|
461
|
+
.pure-u-xl-1, .pure-u-xl-1-1, .pure-u-xl-1-2, .pure-u-xl-1-3, .pure-u-xl-2-3, .pure-u-xl-1-4, .pure-u-xl-3-4, .pure-u-xl-1-5, .pure-u-xl-2-5, .pure-u-xl-3-5, .pure-u-xl-4-5, .pure-u-xl-5-5, .pure-u-xl-1-6, .pure-u-xl-5-6, .pure-u-xl-1-8, .pure-u-xl-3-8, .pure-u-xl-5-8, .pure-u-xl-7-8, .pure-u-xl-1-12, .pure-u-xl-5-12, .pure-u-xl-7-12, .pure-u-xl-11-12, .pure-u-xl-1-24, .pure-u-xl-2-24, .pure-u-xl-3-24, .pure-u-xl-4-24, .pure-u-xl-5-24, .pure-u-xl-6-24, .pure-u-xl-7-24, .pure-u-xl-8-24, .pure-u-xl-9-24, .pure-u-xl-10-24, .pure-u-xl-11-24, .pure-u-xl-12-24, .pure-u-xl-13-24, .pure-u-xl-14-24, .pure-u-xl-15-24, .pure-u-xl-16-24, .pure-u-xl-17-24, .pure-u-xl-18-24, .pure-u-xl-19-24, .pure-u-xl-20-24, .pure-u-xl-21-24, .pure-u-xl-22-24, .pure-u-xl-23-24, .pure-u-xl-24-24 {
|
462
|
+
display: inline-block;
|
463
|
+
*display: inline;
|
464
|
+
zoom: 1;
|
465
|
+
letter-spacing: normal;
|
466
|
+
word-spacing: normal;
|
467
|
+
vertical-align: top;
|
468
|
+
text-rendering: auto;
|
469
|
+
}
|
470
|
+
|
471
|
+
.pure-u-xl-1-24 {
|
472
|
+
width: 4.1667%;
|
473
|
+
*width: 4.1357%;
|
474
|
+
}
|
475
|
+
|
476
|
+
.pure-u-xl-1-12, .pure-u-xl-2-24 {
|
477
|
+
width: 8.3333%;
|
478
|
+
*width: 8.3023%;
|
479
|
+
}
|
480
|
+
|
481
|
+
.pure-u-xl-1-8, .pure-u-xl-3-24 {
|
482
|
+
width: 12.5000%;
|
483
|
+
*width: 12.4690%;
|
484
|
+
}
|
485
|
+
|
486
|
+
.pure-u-xl-1-6, .pure-u-xl-4-24 {
|
487
|
+
width: 16.6667%;
|
488
|
+
*width: 16.6357%;
|
489
|
+
}
|
490
|
+
|
491
|
+
.pure-u-xl-1-5 {
|
492
|
+
width: 20%;
|
493
|
+
*width: 19.9690%;
|
494
|
+
}
|
495
|
+
|
496
|
+
.pure-u-xl-5-24 {
|
497
|
+
width: 20.8333%;
|
498
|
+
*width: 20.8023%;
|
499
|
+
}
|
500
|
+
|
501
|
+
.pure-u-xl-1-4, .pure-u-xl-6-24 {
|
502
|
+
width: 25%;
|
503
|
+
*width: 24.9690%;
|
504
|
+
}
|
505
|
+
|
506
|
+
.pure-u-xl-7-24 {
|
507
|
+
width: 29.1667%;
|
508
|
+
*width: 29.1357%;
|
509
|
+
}
|
510
|
+
|
511
|
+
.pure-u-xl-1-3, .pure-u-xl-8-24 {
|
512
|
+
width: 33.3333%;
|
513
|
+
*width: 33.3023%;
|
514
|
+
}
|
515
|
+
|
516
|
+
.pure-u-xl-3-8, .pure-u-xl-9-24 {
|
517
|
+
width: 37.5000%;
|
518
|
+
*width: 37.4690%;
|
519
|
+
}
|
520
|
+
|
521
|
+
.pure-u-xl-2-5 {
|
522
|
+
width: 40%;
|
523
|
+
*width: 39.9690%;
|
524
|
+
}
|
525
|
+
|
526
|
+
.pure-u-xl-5-12, .pure-u-xl-10-24 {
|
527
|
+
width: 41.6667%;
|
528
|
+
*width: 41.6357%;
|
529
|
+
}
|
530
|
+
|
531
|
+
.pure-u-xl-11-24 {
|
532
|
+
width: 45.8333%;
|
533
|
+
*width: 45.8023%;
|
534
|
+
}
|
535
|
+
|
536
|
+
.pure-u-xl-1-2, .pure-u-xl-12-24 {
|
537
|
+
width: 50%;
|
538
|
+
*width: 49.9690%;
|
539
|
+
}
|
540
|
+
|
541
|
+
.pure-u-xl-13-24 {
|
542
|
+
width: 54.1667%;
|
543
|
+
*width: 54.1357%;
|
544
|
+
}
|
545
|
+
|
546
|
+
.pure-u-xl-7-12, .pure-u-xl-14-24 {
|
547
|
+
width: 58.3333%;
|
548
|
+
*width: 58.3023%;
|
549
|
+
}
|
550
|
+
|
551
|
+
.pure-u-xl-3-5 {
|
552
|
+
width: 60%;
|
553
|
+
*width: 59.9690%;
|
554
|
+
}
|
555
|
+
|
556
|
+
.pure-u-xl-5-8, .pure-u-xl-15-24 {
|
557
|
+
width: 62.5000%;
|
558
|
+
*width: 62.4690%;
|
559
|
+
}
|
560
|
+
|
561
|
+
.pure-u-xl-2-3, .pure-u-xl-16-24 {
|
562
|
+
width: 66.6667%;
|
563
|
+
*width: 66.6357%;
|
564
|
+
}
|
565
|
+
|
566
|
+
.pure-u-xl-17-24 {
|
567
|
+
width: 70.8333%;
|
568
|
+
*width: 70.8023%;
|
569
|
+
}
|
570
|
+
|
571
|
+
.pure-u-xl-3-4, .pure-u-xl-18-24 {
|
572
|
+
width: 75%;
|
573
|
+
*width: 74.9690%;
|
574
|
+
}
|
575
|
+
|
576
|
+
.pure-u-xl-19-24 {
|
577
|
+
width: 79.1667%;
|
578
|
+
*width: 79.1357%;
|
579
|
+
}
|
580
|
+
|
581
|
+
.pure-u-xl-4-5 {
|
582
|
+
width: 80%;
|
583
|
+
*width: 79.9690%;
|
584
|
+
}
|
585
|
+
|
586
|
+
.pure-u-xl-5-6, .pure-u-xl-20-24 {
|
587
|
+
width: 83.3333%;
|
588
|
+
*width: 83.3023%;
|
589
|
+
}
|
590
|
+
|
591
|
+
.pure-u-xl-7-8, .pure-u-xl-21-24 {
|
592
|
+
width: 87.5000%;
|
593
|
+
*width: 87.4690%;
|
594
|
+
}
|
595
|
+
|
596
|
+
.pure-u-xl-11-12, .pure-u-xl-22-24 {
|
597
|
+
width: 91.6667%;
|
598
|
+
*width: 91.6357%;
|
599
|
+
}
|
600
|
+
|
601
|
+
.pure-u-xl-23-24 {
|
602
|
+
width: 95.8333%;
|
603
|
+
*width: 95.8023%;
|
604
|
+
}
|
605
|
+
|
606
|
+
.pure-u-xl-1, .pure-u-xl-1-1, .pure-u-xl-5-5, .pure-u-xl-24-24 {
|
607
|
+
width: 100%;
|
608
|
+
}
|
609
|
+
}
|