purecss-sass 1.0.1.1 → 2.0.4
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/.github/workflows/ci.yml +20 -0
- data/.gitignore +4 -2
- data/.rspec +1 -0
- data/.rubocop.yml +27 -0
- data/CHANGELOG.md +24 -0
- data/README.md +23 -26
- data/Rakefile +3 -1
- data/bin/console +1 -1
- data/bin/setup +2 -1
- data/lib/purecss/sass/version.rb +1 -1
- data/package.json +3 -4
- data/purecss-sass.gemspec +11 -7
- data/vendor/assets/stylesheets/_purecss.scss +0 -1
- data/vendor/assets/stylesheets/purecss/_base.scss +195 -249
- data/vendor/assets/stylesheets/purecss/_buttons.scss +2 -40
- data/vendor/assets/stylesheets/purecss/_forms-nr.scss +335 -0
- data/vendor/assets/stylesheets/purecss/_forms.scss +4 -19
- data/vendor/assets/stylesheets/purecss/_grids-responsive.scss +2 -118
- data/vendor/assets/stylesheets/purecss/_grids.scss +2 -44
- data/vendor/assets/stylesheets/purecss/_menus.scss +2 -5
- data/vendor/assets/stylesheets/purecss/_tables.scss +2 -2
- metadata +13 -10
- data/.travis.yml +0 -9
@@ -1,14 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
Pure
|
2
|
+
Pure v2.0.4
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
|
-
https://github.com/pure-css/pure/blob/master/LICENSE
|
5
|
+
https://github.com/pure-css/pure/blob/master/LICENSE
|
6
6
|
*/
|
7
7
|
@media screen and (min-width: 35.5em) {
|
8
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
9
|
display: inline-block;
|
10
|
-
*display: inline;
|
11
|
-
zoom: 1;
|
12
10
|
letter-spacing: normal;
|
13
11
|
word-spacing: normal;
|
14
12
|
vertical-align: top;
|
@@ -17,137 +15,110 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
17
15
|
|
18
16
|
.pure-u-sm-1-24 {
|
19
17
|
width: 4.1667%;
|
20
|
-
*width: 4.1357%;
|
21
18
|
}
|
22
19
|
|
23
20
|
.pure-u-sm-1-12, .pure-u-sm-2-24 {
|
24
21
|
width: 8.3333%;
|
25
|
-
*width: 8.3023%;
|
26
22
|
}
|
27
23
|
|
28
24
|
.pure-u-sm-1-8, .pure-u-sm-3-24 {
|
29
25
|
width: 12.5000%;
|
30
|
-
*width: 12.4690%;
|
31
26
|
}
|
32
27
|
|
33
28
|
.pure-u-sm-1-6, .pure-u-sm-4-24 {
|
34
29
|
width: 16.6667%;
|
35
|
-
*width: 16.6357%;
|
36
30
|
}
|
37
31
|
|
38
32
|
.pure-u-sm-1-5 {
|
39
33
|
width: 20%;
|
40
|
-
*width: 19.9690%;
|
41
34
|
}
|
42
35
|
|
43
36
|
.pure-u-sm-5-24 {
|
44
37
|
width: 20.8333%;
|
45
|
-
*width: 20.8023%;
|
46
38
|
}
|
47
39
|
|
48
40
|
.pure-u-sm-1-4, .pure-u-sm-6-24 {
|
49
41
|
width: 25%;
|
50
|
-
*width: 24.9690%;
|
51
42
|
}
|
52
43
|
|
53
44
|
.pure-u-sm-7-24 {
|
54
45
|
width: 29.1667%;
|
55
|
-
*width: 29.1357%;
|
56
46
|
}
|
57
47
|
|
58
48
|
.pure-u-sm-1-3, .pure-u-sm-8-24 {
|
59
49
|
width: 33.3333%;
|
60
|
-
*width: 33.3023%;
|
61
50
|
}
|
62
51
|
|
63
52
|
.pure-u-sm-3-8, .pure-u-sm-9-24 {
|
64
53
|
width: 37.5000%;
|
65
|
-
*width: 37.4690%;
|
66
54
|
}
|
67
55
|
|
68
56
|
.pure-u-sm-2-5 {
|
69
57
|
width: 40%;
|
70
|
-
*width: 39.9690%;
|
71
58
|
}
|
72
59
|
|
73
60
|
.pure-u-sm-5-12, .pure-u-sm-10-24 {
|
74
61
|
width: 41.6667%;
|
75
|
-
*width: 41.6357%;
|
76
62
|
}
|
77
63
|
|
78
64
|
.pure-u-sm-11-24 {
|
79
65
|
width: 45.8333%;
|
80
|
-
*width: 45.8023%;
|
81
66
|
}
|
82
67
|
|
83
68
|
.pure-u-sm-1-2, .pure-u-sm-12-24 {
|
84
69
|
width: 50%;
|
85
|
-
*width: 49.9690%;
|
86
70
|
}
|
87
71
|
|
88
72
|
.pure-u-sm-13-24 {
|
89
73
|
width: 54.1667%;
|
90
|
-
*width: 54.1357%;
|
91
74
|
}
|
92
75
|
|
93
76
|
.pure-u-sm-7-12, .pure-u-sm-14-24 {
|
94
77
|
width: 58.3333%;
|
95
|
-
*width: 58.3023%;
|
96
78
|
}
|
97
79
|
|
98
80
|
.pure-u-sm-3-5 {
|
99
81
|
width: 60%;
|
100
|
-
*width: 59.9690%;
|
101
82
|
}
|
102
83
|
|
103
84
|
.pure-u-sm-5-8, .pure-u-sm-15-24 {
|
104
85
|
width: 62.5000%;
|
105
|
-
*width: 62.4690%;
|
106
86
|
}
|
107
87
|
|
108
88
|
.pure-u-sm-2-3, .pure-u-sm-16-24 {
|
109
89
|
width: 66.6667%;
|
110
|
-
*width: 66.6357%;
|
111
90
|
}
|
112
91
|
|
113
92
|
.pure-u-sm-17-24 {
|
114
93
|
width: 70.8333%;
|
115
|
-
*width: 70.8023%;
|
116
94
|
}
|
117
95
|
|
118
96
|
.pure-u-sm-3-4, .pure-u-sm-18-24 {
|
119
97
|
width: 75%;
|
120
|
-
*width: 74.9690%;
|
121
98
|
}
|
122
99
|
|
123
100
|
.pure-u-sm-19-24 {
|
124
101
|
width: 79.1667%;
|
125
|
-
*width: 79.1357%;
|
126
102
|
}
|
127
103
|
|
128
104
|
.pure-u-sm-4-5 {
|
129
105
|
width: 80%;
|
130
|
-
*width: 79.9690%;
|
131
106
|
}
|
132
107
|
|
133
108
|
.pure-u-sm-5-6, .pure-u-sm-20-24 {
|
134
109
|
width: 83.3333%;
|
135
|
-
*width: 83.3023%;
|
136
110
|
}
|
137
111
|
|
138
112
|
.pure-u-sm-7-8, .pure-u-sm-21-24 {
|
139
113
|
width: 87.5000%;
|
140
|
-
*width: 87.4690%;
|
141
114
|
}
|
142
115
|
|
143
116
|
.pure-u-sm-11-12, .pure-u-sm-22-24 {
|
144
117
|
width: 91.6667%;
|
145
|
-
*width: 91.6357%;
|
146
118
|
}
|
147
119
|
|
148
120
|
.pure-u-sm-23-24 {
|
149
121
|
width: 95.8333%;
|
150
|
-
*width: 95.8023%;
|
151
122
|
}
|
152
123
|
|
153
124
|
.pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-5-5, .pure-u-sm-24-24 {
|
@@ -158,8 +129,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
158
129
|
@media screen and (min-width: 48em) {
|
159
130
|
.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
131
|
display: inline-block;
|
161
|
-
*display: inline;
|
162
|
-
zoom: 1;
|
163
132
|
letter-spacing: normal;
|
164
133
|
word-spacing: normal;
|
165
134
|
vertical-align: top;
|
@@ -168,137 +137,110 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
168
137
|
|
169
138
|
.pure-u-md-1-24 {
|
170
139
|
width: 4.1667%;
|
171
|
-
*width: 4.1357%;
|
172
140
|
}
|
173
141
|
|
174
142
|
.pure-u-md-1-12, .pure-u-md-2-24 {
|
175
143
|
width: 8.3333%;
|
176
|
-
*width: 8.3023%;
|
177
144
|
}
|
178
145
|
|
179
146
|
.pure-u-md-1-8, .pure-u-md-3-24 {
|
180
147
|
width: 12.5000%;
|
181
|
-
*width: 12.4690%;
|
182
148
|
}
|
183
149
|
|
184
150
|
.pure-u-md-1-6, .pure-u-md-4-24 {
|
185
151
|
width: 16.6667%;
|
186
|
-
*width: 16.6357%;
|
187
152
|
}
|
188
153
|
|
189
154
|
.pure-u-md-1-5 {
|
190
155
|
width: 20%;
|
191
|
-
*width: 19.9690%;
|
192
156
|
}
|
193
157
|
|
194
158
|
.pure-u-md-5-24 {
|
195
159
|
width: 20.8333%;
|
196
|
-
*width: 20.8023%;
|
197
160
|
}
|
198
161
|
|
199
162
|
.pure-u-md-1-4, .pure-u-md-6-24 {
|
200
163
|
width: 25%;
|
201
|
-
*width: 24.9690%;
|
202
164
|
}
|
203
165
|
|
204
166
|
.pure-u-md-7-24 {
|
205
167
|
width: 29.1667%;
|
206
|
-
*width: 29.1357%;
|
207
168
|
}
|
208
169
|
|
209
170
|
.pure-u-md-1-3, .pure-u-md-8-24 {
|
210
171
|
width: 33.3333%;
|
211
|
-
*width: 33.3023%;
|
212
172
|
}
|
213
173
|
|
214
174
|
.pure-u-md-3-8, .pure-u-md-9-24 {
|
215
175
|
width: 37.5000%;
|
216
|
-
*width: 37.4690%;
|
217
176
|
}
|
218
177
|
|
219
178
|
.pure-u-md-2-5 {
|
220
179
|
width: 40%;
|
221
|
-
*width: 39.9690%;
|
222
180
|
}
|
223
181
|
|
224
182
|
.pure-u-md-5-12, .pure-u-md-10-24 {
|
225
183
|
width: 41.6667%;
|
226
|
-
*width: 41.6357%;
|
227
184
|
}
|
228
185
|
|
229
186
|
.pure-u-md-11-24 {
|
230
187
|
width: 45.8333%;
|
231
|
-
*width: 45.8023%;
|
232
188
|
}
|
233
189
|
|
234
190
|
.pure-u-md-1-2, .pure-u-md-12-24 {
|
235
191
|
width: 50%;
|
236
|
-
*width: 49.9690%;
|
237
192
|
}
|
238
193
|
|
239
194
|
.pure-u-md-13-24 {
|
240
195
|
width: 54.1667%;
|
241
|
-
*width: 54.1357%;
|
242
196
|
}
|
243
197
|
|
244
198
|
.pure-u-md-7-12, .pure-u-md-14-24 {
|
245
199
|
width: 58.3333%;
|
246
|
-
*width: 58.3023%;
|
247
200
|
}
|
248
201
|
|
249
202
|
.pure-u-md-3-5 {
|
250
203
|
width: 60%;
|
251
|
-
*width: 59.9690%;
|
252
204
|
}
|
253
205
|
|
254
206
|
.pure-u-md-5-8, .pure-u-md-15-24 {
|
255
207
|
width: 62.5000%;
|
256
|
-
*width: 62.4690%;
|
257
208
|
}
|
258
209
|
|
259
210
|
.pure-u-md-2-3, .pure-u-md-16-24 {
|
260
211
|
width: 66.6667%;
|
261
|
-
*width: 66.6357%;
|
262
212
|
}
|
263
213
|
|
264
214
|
.pure-u-md-17-24 {
|
265
215
|
width: 70.8333%;
|
266
|
-
*width: 70.8023%;
|
267
216
|
}
|
268
217
|
|
269
218
|
.pure-u-md-3-4, .pure-u-md-18-24 {
|
270
219
|
width: 75%;
|
271
|
-
*width: 74.9690%;
|
272
220
|
}
|
273
221
|
|
274
222
|
.pure-u-md-19-24 {
|
275
223
|
width: 79.1667%;
|
276
|
-
*width: 79.1357%;
|
277
224
|
}
|
278
225
|
|
279
226
|
.pure-u-md-4-5 {
|
280
227
|
width: 80%;
|
281
|
-
*width: 79.9690%;
|
282
228
|
}
|
283
229
|
|
284
230
|
.pure-u-md-5-6, .pure-u-md-20-24 {
|
285
231
|
width: 83.3333%;
|
286
|
-
*width: 83.3023%;
|
287
232
|
}
|
288
233
|
|
289
234
|
.pure-u-md-7-8, .pure-u-md-21-24 {
|
290
235
|
width: 87.5000%;
|
291
|
-
*width: 87.4690%;
|
292
236
|
}
|
293
237
|
|
294
238
|
.pure-u-md-11-12, .pure-u-md-22-24 {
|
295
239
|
width: 91.6667%;
|
296
|
-
*width: 91.6357%;
|
297
240
|
}
|
298
241
|
|
299
242
|
.pure-u-md-23-24 {
|
300
243
|
width: 95.8333%;
|
301
|
-
*width: 95.8023%;
|
302
244
|
}
|
303
245
|
|
304
246
|
.pure-u-md-1, .pure-u-md-1-1, .pure-u-md-5-5, .pure-u-md-24-24 {
|
@@ -309,8 +251,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
309
251
|
@media screen and (min-width: 64em) {
|
310
252
|
.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
253
|
display: inline-block;
|
312
|
-
*display: inline;
|
313
|
-
zoom: 1;
|
314
254
|
letter-spacing: normal;
|
315
255
|
word-spacing: normal;
|
316
256
|
vertical-align: top;
|
@@ -319,137 +259,110 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
319
259
|
|
320
260
|
.pure-u-lg-1-24 {
|
321
261
|
width: 4.1667%;
|
322
|
-
*width: 4.1357%;
|
323
262
|
}
|
324
263
|
|
325
264
|
.pure-u-lg-1-12, .pure-u-lg-2-24 {
|
326
265
|
width: 8.3333%;
|
327
|
-
*width: 8.3023%;
|
328
266
|
}
|
329
267
|
|
330
268
|
.pure-u-lg-1-8, .pure-u-lg-3-24 {
|
331
269
|
width: 12.5000%;
|
332
|
-
*width: 12.4690%;
|
333
270
|
}
|
334
271
|
|
335
272
|
.pure-u-lg-1-6, .pure-u-lg-4-24 {
|
336
273
|
width: 16.6667%;
|
337
|
-
*width: 16.6357%;
|
338
274
|
}
|
339
275
|
|
340
276
|
.pure-u-lg-1-5 {
|
341
277
|
width: 20%;
|
342
|
-
*width: 19.9690%;
|
343
278
|
}
|
344
279
|
|
345
280
|
.pure-u-lg-5-24 {
|
346
281
|
width: 20.8333%;
|
347
|
-
*width: 20.8023%;
|
348
282
|
}
|
349
283
|
|
350
284
|
.pure-u-lg-1-4, .pure-u-lg-6-24 {
|
351
285
|
width: 25%;
|
352
|
-
*width: 24.9690%;
|
353
286
|
}
|
354
287
|
|
355
288
|
.pure-u-lg-7-24 {
|
356
289
|
width: 29.1667%;
|
357
|
-
*width: 29.1357%;
|
358
290
|
}
|
359
291
|
|
360
292
|
.pure-u-lg-1-3, .pure-u-lg-8-24 {
|
361
293
|
width: 33.3333%;
|
362
|
-
*width: 33.3023%;
|
363
294
|
}
|
364
295
|
|
365
296
|
.pure-u-lg-3-8, .pure-u-lg-9-24 {
|
366
297
|
width: 37.5000%;
|
367
|
-
*width: 37.4690%;
|
368
298
|
}
|
369
299
|
|
370
300
|
.pure-u-lg-2-5 {
|
371
301
|
width: 40%;
|
372
|
-
*width: 39.9690%;
|
373
302
|
}
|
374
303
|
|
375
304
|
.pure-u-lg-5-12, .pure-u-lg-10-24 {
|
376
305
|
width: 41.6667%;
|
377
|
-
*width: 41.6357%;
|
378
306
|
}
|
379
307
|
|
380
308
|
.pure-u-lg-11-24 {
|
381
309
|
width: 45.8333%;
|
382
|
-
*width: 45.8023%;
|
383
310
|
}
|
384
311
|
|
385
312
|
.pure-u-lg-1-2, .pure-u-lg-12-24 {
|
386
313
|
width: 50%;
|
387
|
-
*width: 49.9690%;
|
388
314
|
}
|
389
315
|
|
390
316
|
.pure-u-lg-13-24 {
|
391
317
|
width: 54.1667%;
|
392
|
-
*width: 54.1357%;
|
393
318
|
}
|
394
319
|
|
395
320
|
.pure-u-lg-7-12, .pure-u-lg-14-24 {
|
396
321
|
width: 58.3333%;
|
397
|
-
*width: 58.3023%;
|
398
322
|
}
|
399
323
|
|
400
324
|
.pure-u-lg-3-5 {
|
401
325
|
width: 60%;
|
402
|
-
*width: 59.9690%;
|
403
326
|
}
|
404
327
|
|
405
328
|
.pure-u-lg-5-8, .pure-u-lg-15-24 {
|
406
329
|
width: 62.5000%;
|
407
|
-
*width: 62.4690%;
|
408
330
|
}
|
409
331
|
|
410
332
|
.pure-u-lg-2-3, .pure-u-lg-16-24 {
|
411
333
|
width: 66.6667%;
|
412
|
-
*width: 66.6357%;
|
413
334
|
}
|
414
335
|
|
415
336
|
.pure-u-lg-17-24 {
|
416
337
|
width: 70.8333%;
|
417
|
-
*width: 70.8023%;
|
418
338
|
}
|
419
339
|
|
420
340
|
.pure-u-lg-3-4, .pure-u-lg-18-24 {
|
421
341
|
width: 75%;
|
422
|
-
*width: 74.9690%;
|
423
342
|
}
|
424
343
|
|
425
344
|
.pure-u-lg-19-24 {
|
426
345
|
width: 79.1667%;
|
427
|
-
*width: 79.1357%;
|
428
346
|
}
|
429
347
|
|
430
348
|
.pure-u-lg-4-5 {
|
431
349
|
width: 80%;
|
432
|
-
*width: 79.9690%;
|
433
350
|
}
|
434
351
|
|
435
352
|
.pure-u-lg-5-6, .pure-u-lg-20-24 {
|
436
353
|
width: 83.3333%;
|
437
|
-
*width: 83.3023%;
|
438
354
|
}
|
439
355
|
|
440
356
|
.pure-u-lg-7-8, .pure-u-lg-21-24 {
|
441
357
|
width: 87.5000%;
|
442
|
-
*width: 87.4690%;
|
443
358
|
}
|
444
359
|
|
445
360
|
.pure-u-lg-11-12, .pure-u-lg-22-24 {
|
446
361
|
width: 91.6667%;
|
447
|
-
*width: 91.6357%;
|
448
362
|
}
|
449
363
|
|
450
364
|
.pure-u-lg-23-24 {
|
451
365
|
width: 95.8333%;
|
452
|
-
*width: 95.8023%;
|
453
366
|
}
|
454
367
|
|
455
368
|
.pure-u-lg-1, .pure-u-lg-1-1, .pure-u-lg-5-5, .pure-u-lg-24-24 {
|
@@ -460,8 +373,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
460
373
|
@media screen and (min-width: 80em) {
|
461
374
|
.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
375
|
display: inline-block;
|
463
|
-
*display: inline;
|
464
|
-
zoom: 1;
|
465
376
|
letter-spacing: normal;
|
466
377
|
word-spacing: normal;
|
467
378
|
vertical-align: top;
|
@@ -470,137 +381,110 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
470
381
|
|
471
382
|
.pure-u-xl-1-24 {
|
472
383
|
width: 4.1667%;
|
473
|
-
*width: 4.1357%;
|
474
384
|
}
|
475
385
|
|
476
386
|
.pure-u-xl-1-12, .pure-u-xl-2-24 {
|
477
387
|
width: 8.3333%;
|
478
|
-
*width: 8.3023%;
|
479
388
|
}
|
480
389
|
|
481
390
|
.pure-u-xl-1-8, .pure-u-xl-3-24 {
|
482
391
|
width: 12.5000%;
|
483
|
-
*width: 12.4690%;
|
484
392
|
}
|
485
393
|
|
486
394
|
.pure-u-xl-1-6, .pure-u-xl-4-24 {
|
487
395
|
width: 16.6667%;
|
488
|
-
*width: 16.6357%;
|
489
396
|
}
|
490
397
|
|
491
398
|
.pure-u-xl-1-5 {
|
492
399
|
width: 20%;
|
493
|
-
*width: 19.9690%;
|
494
400
|
}
|
495
401
|
|
496
402
|
.pure-u-xl-5-24 {
|
497
403
|
width: 20.8333%;
|
498
|
-
*width: 20.8023%;
|
499
404
|
}
|
500
405
|
|
501
406
|
.pure-u-xl-1-4, .pure-u-xl-6-24 {
|
502
407
|
width: 25%;
|
503
|
-
*width: 24.9690%;
|
504
408
|
}
|
505
409
|
|
506
410
|
.pure-u-xl-7-24 {
|
507
411
|
width: 29.1667%;
|
508
|
-
*width: 29.1357%;
|
509
412
|
}
|
510
413
|
|
511
414
|
.pure-u-xl-1-3, .pure-u-xl-8-24 {
|
512
415
|
width: 33.3333%;
|
513
|
-
*width: 33.3023%;
|
514
416
|
}
|
515
417
|
|
516
418
|
.pure-u-xl-3-8, .pure-u-xl-9-24 {
|
517
419
|
width: 37.5000%;
|
518
|
-
*width: 37.4690%;
|
519
420
|
}
|
520
421
|
|
521
422
|
.pure-u-xl-2-5 {
|
522
423
|
width: 40%;
|
523
|
-
*width: 39.9690%;
|
524
424
|
}
|
525
425
|
|
526
426
|
.pure-u-xl-5-12, .pure-u-xl-10-24 {
|
527
427
|
width: 41.6667%;
|
528
|
-
*width: 41.6357%;
|
529
428
|
}
|
530
429
|
|
531
430
|
.pure-u-xl-11-24 {
|
532
431
|
width: 45.8333%;
|
533
|
-
*width: 45.8023%;
|
534
432
|
}
|
535
433
|
|
536
434
|
.pure-u-xl-1-2, .pure-u-xl-12-24 {
|
537
435
|
width: 50%;
|
538
|
-
*width: 49.9690%;
|
539
436
|
}
|
540
437
|
|
541
438
|
.pure-u-xl-13-24 {
|
542
439
|
width: 54.1667%;
|
543
|
-
*width: 54.1357%;
|
544
440
|
}
|
545
441
|
|
546
442
|
.pure-u-xl-7-12, .pure-u-xl-14-24 {
|
547
443
|
width: 58.3333%;
|
548
|
-
*width: 58.3023%;
|
549
444
|
}
|
550
445
|
|
551
446
|
.pure-u-xl-3-5 {
|
552
447
|
width: 60%;
|
553
|
-
*width: 59.9690%;
|
554
448
|
}
|
555
449
|
|
556
450
|
.pure-u-xl-5-8, .pure-u-xl-15-24 {
|
557
451
|
width: 62.5000%;
|
558
|
-
*width: 62.4690%;
|
559
452
|
}
|
560
453
|
|
561
454
|
.pure-u-xl-2-3, .pure-u-xl-16-24 {
|
562
455
|
width: 66.6667%;
|
563
|
-
*width: 66.6357%;
|
564
456
|
}
|
565
457
|
|
566
458
|
.pure-u-xl-17-24 {
|
567
459
|
width: 70.8333%;
|
568
|
-
*width: 70.8023%;
|
569
460
|
}
|
570
461
|
|
571
462
|
.pure-u-xl-3-4, .pure-u-xl-18-24 {
|
572
463
|
width: 75%;
|
573
|
-
*width: 74.9690%;
|
574
464
|
}
|
575
465
|
|
576
466
|
.pure-u-xl-19-24 {
|
577
467
|
width: 79.1667%;
|
578
|
-
*width: 79.1357%;
|
579
468
|
}
|
580
469
|
|
581
470
|
.pure-u-xl-4-5 {
|
582
471
|
width: 80%;
|
583
|
-
*width: 79.9690%;
|
584
472
|
}
|
585
473
|
|
586
474
|
.pure-u-xl-5-6, .pure-u-xl-20-24 {
|
587
475
|
width: 83.3333%;
|
588
|
-
*width: 83.3023%;
|
589
476
|
}
|
590
477
|
|
591
478
|
.pure-u-xl-7-8, .pure-u-xl-21-24 {
|
592
479
|
width: 87.5000%;
|
593
|
-
*width: 87.4690%;
|
594
480
|
}
|
595
481
|
|
596
482
|
.pure-u-xl-11-12, .pure-u-xl-22-24 {
|
597
483
|
width: 91.6667%;
|
598
|
-
*width: 91.6357%;
|
599
484
|
}
|
600
485
|
|
601
486
|
.pure-u-xl-23-24 {
|
602
487
|
width: 95.8333%;
|
603
|
-
*width: 95.8023%;
|
604
488
|
}
|
605
489
|
|
606
490
|
.pure-u-xl-1, .pure-u-xl-1-1, .pure-u-xl-5-5, .pure-u-xl-24-24 {
|