@nappr/nappr-styles 0.2.27 → 0.3.0
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.
- package/dist/styles.css +1091 -1404
- package/dist/styles.css.map +1 -1
- package/docs/docs.theme.css +0 -2920
- package/docs/docs.theme.css.map +1 -1
- package/lib/_reset.scss +5 -3
- package/lib/funcs/_.scss +5 -5
- package/lib/funcs/_merge-palette.scss +3 -1
- package/lib/funcs/_rem.scss +19 -15
- package/lib/funcs/_strings.scss +8 -6
- package/lib/grid/_.scss +4 -4
- package/lib/grid/_col.scss +14 -11
- package/lib/grid/_row.scss +14 -11
- package/lib/grid/_wrap.scss +4 -2
- package/lib/helpers/_.scss +9 -9
- package/lib/helpers/_negates.scss +2 -0
- package/lib/helpers/_scrolls.scss +2 -0
- package/lib/helpers/_texts.scss +1 -2
- package/lib/htmls/_.scss +4 -4
- package/lib/htmls/_table.scss +4 -2
- package/lib/mixins/_.scss +9 -9
- package/lib/mixins/_border-radius.scss +22 -17
- package/lib/mixins/_border.scss +20 -16
- package/lib/mixins/_dimensions.scss +10 -7
- package/lib/mixins/_font-size.scss +7 -3
- package/lib/mixins/_line-height.scss +5 -2
- package/lib/mixins/_margin-padding.scss +21 -16
- package/lib/mixins/_root-variables.scss +4 -2
- package/lib/mixins/_theme.scss +5 -3
- package/lib/styles.scss +8 -8
- package/lib/variables/_.scss +3 -3
- package/lib/variables/_defaults.scss +29 -20
- package/package.json +4 -7
- package/styles.scss +1 -1
package/dist/styles.css
CHANGED
|
@@ -15,6 +15,16 @@
|
|
|
15
15
|
SOURCE: https://github.com/pierreburel/sass-rem
|
|
16
16
|
|
|
17
17
|
------------------------------------ */
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* !!! DO NOT REORDER -> Declarative loading
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* !!! DO NOT REORDER -> Declarative loading
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
18
28
|
:root {
|
|
19
29
|
--nappr-black: #000000;
|
|
20
30
|
--nappr-white: #ffffff;
|
|
@@ -67,836 +77,665 @@ SOURCE: https://github.com/pierreburel/sass-rem
|
|
|
67
77
|
}
|
|
68
78
|
|
|
69
79
|
.b1 {
|
|
70
|
-
border-width:
|
|
71
|
-
border-width: 0.0625rem;
|
|
80
|
+
border-width: number-to-pixel(1);
|
|
72
81
|
border-style: solid;
|
|
73
82
|
}
|
|
74
83
|
|
|
75
84
|
.by1 {
|
|
76
|
-
border-top-width:
|
|
77
|
-
border-
|
|
78
|
-
border-bottom-width: 1px;
|
|
79
|
-
border-bottom-width: 0.0625rem;
|
|
85
|
+
border-top-width: number-to-pixel(1);
|
|
86
|
+
border-bottom-width: number-to-pixel(1);
|
|
80
87
|
border-style: solid;
|
|
81
88
|
}
|
|
82
89
|
|
|
83
90
|
.bx1 {
|
|
84
|
-
border-left-width:
|
|
85
|
-
border-
|
|
86
|
-
border-right-width: 1px;
|
|
87
|
-
border-right-width: 0.0625rem;
|
|
91
|
+
border-left-width: number-to-pixel(1);
|
|
92
|
+
border-right-width: number-to-pixel(1);
|
|
88
93
|
border-style: solid;
|
|
89
94
|
}
|
|
90
95
|
|
|
91
96
|
.bt1 {
|
|
92
|
-
border-top-width:
|
|
93
|
-
border-top-width: 0.0625rem;
|
|
97
|
+
border-top-width: number-to-pixel(1);
|
|
94
98
|
border-style: solid;
|
|
95
99
|
}
|
|
96
100
|
|
|
97
101
|
.bl1 {
|
|
98
|
-
border-left-width:
|
|
99
|
-
border-left-width: 0.0625rem;
|
|
102
|
+
border-left-width: number-to-pixel(1);
|
|
100
103
|
border-style: solid;
|
|
101
104
|
}
|
|
102
105
|
|
|
103
106
|
.br1 {
|
|
104
|
-
border-right-width:
|
|
105
|
-
border-right-width: 0.0625rem;
|
|
107
|
+
border-right-width: number-to-pixel(1);
|
|
106
108
|
border-style: solid;
|
|
107
109
|
}
|
|
108
110
|
|
|
109
111
|
.bb1 {
|
|
110
|
-
border-bottom-width:
|
|
111
|
-
border-bottom-width: 0.0625rem;
|
|
112
|
+
border-bottom-width: number-to-pixel(1);
|
|
112
113
|
border-style: solid;
|
|
113
114
|
}
|
|
114
115
|
|
|
115
116
|
.b2 {
|
|
116
|
-
border-width:
|
|
117
|
-
border-width: 0.125rem;
|
|
117
|
+
border-width: number-to-pixel(2);
|
|
118
118
|
border-style: solid;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
.by2 {
|
|
122
|
-
border-top-width:
|
|
123
|
-
border-
|
|
124
|
-
border-bottom-width: 2px;
|
|
125
|
-
border-bottom-width: 0.125rem;
|
|
122
|
+
border-top-width: number-to-pixel(2);
|
|
123
|
+
border-bottom-width: number-to-pixel(2);
|
|
126
124
|
border-style: solid;
|
|
127
125
|
}
|
|
128
126
|
|
|
129
127
|
.bx2 {
|
|
130
|
-
border-left-width:
|
|
131
|
-
border-
|
|
132
|
-
border-right-width: 2px;
|
|
133
|
-
border-right-width: 0.125rem;
|
|
128
|
+
border-left-width: number-to-pixel(2);
|
|
129
|
+
border-right-width: number-to-pixel(2);
|
|
134
130
|
border-style: solid;
|
|
135
131
|
}
|
|
136
132
|
|
|
137
133
|
.bt2 {
|
|
138
|
-
border-top-width:
|
|
139
|
-
border-top-width: 0.125rem;
|
|
134
|
+
border-top-width: number-to-pixel(2);
|
|
140
135
|
border-style: solid;
|
|
141
136
|
}
|
|
142
137
|
|
|
143
138
|
.bl2 {
|
|
144
|
-
border-left-width:
|
|
145
|
-
border-left-width: 0.125rem;
|
|
139
|
+
border-left-width: number-to-pixel(2);
|
|
146
140
|
border-style: solid;
|
|
147
141
|
}
|
|
148
142
|
|
|
149
143
|
.br2 {
|
|
150
|
-
border-right-width:
|
|
151
|
-
border-right-width: 0.125rem;
|
|
144
|
+
border-right-width: number-to-pixel(2);
|
|
152
145
|
border-style: solid;
|
|
153
146
|
}
|
|
154
147
|
|
|
155
148
|
.bb2 {
|
|
156
|
-
border-bottom-width:
|
|
157
|
-
border-bottom-width: 0.125rem;
|
|
149
|
+
border-bottom-width: number-to-pixel(2);
|
|
158
150
|
border-style: solid;
|
|
159
151
|
}
|
|
160
152
|
|
|
161
153
|
.b3 {
|
|
162
|
-
border-width:
|
|
163
|
-
border-width: 0.1875rem;
|
|
154
|
+
border-width: number-to-pixel(3);
|
|
164
155
|
border-style: solid;
|
|
165
156
|
}
|
|
166
157
|
|
|
167
158
|
.by3 {
|
|
168
|
-
border-top-width:
|
|
169
|
-
border-
|
|
170
|
-
border-bottom-width: 3px;
|
|
171
|
-
border-bottom-width: 0.1875rem;
|
|
159
|
+
border-top-width: number-to-pixel(3);
|
|
160
|
+
border-bottom-width: number-to-pixel(3);
|
|
172
161
|
border-style: solid;
|
|
173
162
|
}
|
|
174
163
|
|
|
175
164
|
.bx3 {
|
|
176
|
-
border-left-width:
|
|
177
|
-
border-
|
|
178
|
-
border-right-width: 3px;
|
|
179
|
-
border-right-width: 0.1875rem;
|
|
165
|
+
border-left-width: number-to-pixel(3);
|
|
166
|
+
border-right-width: number-to-pixel(3);
|
|
180
167
|
border-style: solid;
|
|
181
168
|
}
|
|
182
169
|
|
|
183
170
|
.bt3 {
|
|
184
|
-
border-top-width:
|
|
185
|
-
border-top-width: 0.1875rem;
|
|
171
|
+
border-top-width: number-to-pixel(3);
|
|
186
172
|
border-style: solid;
|
|
187
173
|
}
|
|
188
174
|
|
|
189
175
|
.bl3 {
|
|
190
|
-
border-left-width:
|
|
191
|
-
border-left-width: 0.1875rem;
|
|
176
|
+
border-left-width: number-to-pixel(3);
|
|
192
177
|
border-style: solid;
|
|
193
178
|
}
|
|
194
179
|
|
|
195
180
|
.br3 {
|
|
196
|
-
border-right-width:
|
|
197
|
-
border-right-width: 0.1875rem;
|
|
181
|
+
border-right-width: number-to-pixel(3);
|
|
198
182
|
border-style: solid;
|
|
199
183
|
}
|
|
200
184
|
|
|
201
185
|
.bb3 {
|
|
202
|
-
border-bottom-width:
|
|
203
|
-
border-bottom-width: 0.1875rem;
|
|
186
|
+
border-bottom-width: number-to-pixel(3);
|
|
204
187
|
border-style: solid;
|
|
205
188
|
}
|
|
206
189
|
|
|
207
190
|
.b4 {
|
|
208
|
-
border-width:
|
|
209
|
-
border-width: 0.25rem;
|
|
191
|
+
border-width: number-to-pixel(4);
|
|
210
192
|
border-style: solid;
|
|
211
193
|
}
|
|
212
194
|
|
|
213
195
|
.by4 {
|
|
214
|
-
border-top-width:
|
|
215
|
-
border-
|
|
216
|
-
border-bottom-width: 4px;
|
|
217
|
-
border-bottom-width: 0.25rem;
|
|
196
|
+
border-top-width: number-to-pixel(4);
|
|
197
|
+
border-bottom-width: number-to-pixel(4);
|
|
218
198
|
border-style: solid;
|
|
219
199
|
}
|
|
220
200
|
|
|
221
201
|
.bx4 {
|
|
222
|
-
border-left-width:
|
|
223
|
-
border-
|
|
224
|
-
border-right-width: 4px;
|
|
225
|
-
border-right-width: 0.25rem;
|
|
202
|
+
border-left-width: number-to-pixel(4);
|
|
203
|
+
border-right-width: number-to-pixel(4);
|
|
226
204
|
border-style: solid;
|
|
227
205
|
}
|
|
228
206
|
|
|
229
207
|
.bt4 {
|
|
230
|
-
border-top-width:
|
|
231
|
-
border-top-width: 0.25rem;
|
|
208
|
+
border-top-width: number-to-pixel(4);
|
|
232
209
|
border-style: solid;
|
|
233
210
|
}
|
|
234
211
|
|
|
235
212
|
.bl4 {
|
|
236
|
-
border-left-width:
|
|
237
|
-
border-left-width: 0.25rem;
|
|
213
|
+
border-left-width: number-to-pixel(4);
|
|
238
214
|
border-style: solid;
|
|
239
215
|
}
|
|
240
216
|
|
|
241
217
|
.br4 {
|
|
242
|
-
border-right-width:
|
|
243
|
-
border-right-width: 0.25rem;
|
|
218
|
+
border-right-width: number-to-pixel(4);
|
|
244
219
|
border-style: solid;
|
|
245
220
|
}
|
|
246
221
|
|
|
247
222
|
.bb4 {
|
|
248
|
-
border-bottom-width:
|
|
249
|
-
border-bottom-width: 0.25rem;
|
|
223
|
+
border-bottom-width: number-to-pixel(4);
|
|
250
224
|
border-style: solid;
|
|
251
225
|
}
|
|
252
226
|
|
|
253
227
|
.b5 {
|
|
254
|
-
border-width:
|
|
255
|
-
border-width: 0.3125rem;
|
|
228
|
+
border-width: number-to-pixel(5);
|
|
256
229
|
border-style: solid;
|
|
257
230
|
}
|
|
258
231
|
|
|
259
232
|
.by5 {
|
|
260
|
-
border-top-width:
|
|
261
|
-
border-
|
|
262
|
-
border-bottom-width: 5px;
|
|
263
|
-
border-bottom-width: 0.3125rem;
|
|
233
|
+
border-top-width: number-to-pixel(5);
|
|
234
|
+
border-bottom-width: number-to-pixel(5);
|
|
264
235
|
border-style: solid;
|
|
265
236
|
}
|
|
266
237
|
|
|
267
238
|
.bx5 {
|
|
268
|
-
border-left-width:
|
|
269
|
-
border-
|
|
270
|
-
border-right-width: 5px;
|
|
271
|
-
border-right-width: 0.3125rem;
|
|
239
|
+
border-left-width: number-to-pixel(5);
|
|
240
|
+
border-right-width: number-to-pixel(5);
|
|
272
241
|
border-style: solid;
|
|
273
242
|
}
|
|
274
243
|
|
|
275
244
|
.bt5 {
|
|
276
|
-
border-top-width:
|
|
277
|
-
border-top-width: 0.3125rem;
|
|
245
|
+
border-top-width: number-to-pixel(5);
|
|
278
246
|
border-style: solid;
|
|
279
247
|
}
|
|
280
248
|
|
|
281
249
|
.bl5 {
|
|
282
|
-
border-left-width:
|
|
283
|
-
border-left-width: 0.3125rem;
|
|
250
|
+
border-left-width: number-to-pixel(5);
|
|
284
251
|
border-style: solid;
|
|
285
252
|
}
|
|
286
253
|
|
|
287
254
|
.br5 {
|
|
288
|
-
border-right-width:
|
|
289
|
-
border-right-width: 0.3125rem;
|
|
255
|
+
border-right-width: number-to-pixel(5);
|
|
290
256
|
border-style: solid;
|
|
291
257
|
}
|
|
292
258
|
|
|
293
259
|
.bb5 {
|
|
294
|
-
border-bottom-width:
|
|
295
|
-
border-bottom-width: 0.3125rem;
|
|
260
|
+
border-bottom-width: number-to-pixel(5);
|
|
296
261
|
border-style: solid;
|
|
297
262
|
}
|
|
298
263
|
|
|
299
264
|
.b6 {
|
|
300
|
-
border-width:
|
|
301
|
-
border-width: 0.375rem;
|
|
265
|
+
border-width: number-to-pixel(6);
|
|
302
266
|
border-style: solid;
|
|
303
267
|
}
|
|
304
268
|
|
|
305
269
|
.by6 {
|
|
306
|
-
border-top-width:
|
|
307
|
-
border-
|
|
308
|
-
border-bottom-width: 6px;
|
|
309
|
-
border-bottom-width: 0.375rem;
|
|
270
|
+
border-top-width: number-to-pixel(6);
|
|
271
|
+
border-bottom-width: number-to-pixel(6);
|
|
310
272
|
border-style: solid;
|
|
311
273
|
}
|
|
312
274
|
|
|
313
275
|
.bx6 {
|
|
314
|
-
border-left-width:
|
|
315
|
-
border-
|
|
316
|
-
border-right-width: 6px;
|
|
317
|
-
border-right-width: 0.375rem;
|
|
276
|
+
border-left-width: number-to-pixel(6);
|
|
277
|
+
border-right-width: number-to-pixel(6);
|
|
318
278
|
border-style: solid;
|
|
319
279
|
}
|
|
320
280
|
|
|
321
281
|
.bt6 {
|
|
322
|
-
border-top-width:
|
|
323
|
-
border-top-width: 0.375rem;
|
|
282
|
+
border-top-width: number-to-pixel(6);
|
|
324
283
|
border-style: solid;
|
|
325
284
|
}
|
|
326
285
|
|
|
327
286
|
.bl6 {
|
|
328
|
-
border-left-width:
|
|
329
|
-
border-left-width: 0.375rem;
|
|
287
|
+
border-left-width: number-to-pixel(6);
|
|
330
288
|
border-style: solid;
|
|
331
289
|
}
|
|
332
290
|
|
|
333
291
|
.br6 {
|
|
334
|
-
border-right-width:
|
|
335
|
-
border-right-width: 0.375rem;
|
|
292
|
+
border-right-width: number-to-pixel(6);
|
|
336
293
|
border-style: solid;
|
|
337
294
|
}
|
|
338
295
|
|
|
339
296
|
.bb6 {
|
|
340
|
-
border-bottom-width:
|
|
341
|
-
border-bottom-width: 0.375rem;
|
|
297
|
+
border-bottom-width: number-to-pixel(6);
|
|
342
298
|
border-style: solid;
|
|
343
299
|
}
|
|
344
300
|
|
|
345
301
|
.b7 {
|
|
346
|
-
border-width:
|
|
347
|
-
border-width: 0.4375rem;
|
|
302
|
+
border-width: number-to-pixel(7);
|
|
348
303
|
border-style: solid;
|
|
349
304
|
}
|
|
350
305
|
|
|
351
306
|
.by7 {
|
|
352
|
-
border-top-width:
|
|
353
|
-
border-
|
|
354
|
-
border-bottom-width: 7px;
|
|
355
|
-
border-bottom-width: 0.4375rem;
|
|
307
|
+
border-top-width: number-to-pixel(7);
|
|
308
|
+
border-bottom-width: number-to-pixel(7);
|
|
356
309
|
border-style: solid;
|
|
357
310
|
}
|
|
358
311
|
|
|
359
312
|
.bx7 {
|
|
360
|
-
border-left-width:
|
|
361
|
-
border-
|
|
362
|
-
border-right-width: 7px;
|
|
363
|
-
border-right-width: 0.4375rem;
|
|
313
|
+
border-left-width: number-to-pixel(7);
|
|
314
|
+
border-right-width: number-to-pixel(7);
|
|
364
315
|
border-style: solid;
|
|
365
316
|
}
|
|
366
317
|
|
|
367
318
|
.bt7 {
|
|
368
|
-
border-top-width:
|
|
369
|
-
border-top-width: 0.4375rem;
|
|
319
|
+
border-top-width: number-to-pixel(7);
|
|
370
320
|
border-style: solid;
|
|
371
321
|
}
|
|
372
322
|
|
|
373
323
|
.bl7 {
|
|
374
|
-
border-left-width:
|
|
375
|
-
border-left-width: 0.4375rem;
|
|
324
|
+
border-left-width: number-to-pixel(7);
|
|
376
325
|
border-style: solid;
|
|
377
326
|
}
|
|
378
327
|
|
|
379
328
|
.br7 {
|
|
380
|
-
border-right-width:
|
|
381
|
-
border-right-width: 0.4375rem;
|
|
329
|
+
border-right-width: number-to-pixel(7);
|
|
382
330
|
border-style: solid;
|
|
383
331
|
}
|
|
384
332
|
|
|
385
333
|
.bb7 {
|
|
386
|
-
border-bottom-width:
|
|
387
|
-
border-bottom-width: 0.4375rem;
|
|
334
|
+
border-bottom-width: number-to-pixel(7);
|
|
388
335
|
border-style: solid;
|
|
389
336
|
}
|
|
390
337
|
|
|
391
338
|
.b8 {
|
|
392
|
-
border-width:
|
|
393
|
-
border-width: 0.5rem;
|
|
339
|
+
border-width: number-to-pixel(8);
|
|
394
340
|
border-style: solid;
|
|
395
341
|
}
|
|
396
342
|
|
|
397
343
|
.by8 {
|
|
398
|
-
border-top-width:
|
|
399
|
-
border-
|
|
400
|
-
border-bottom-width: 8px;
|
|
401
|
-
border-bottom-width: 0.5rem;
|
|
344
|
+
border-top-width: number-to-pixel(8);
|
|
345
|
+
border-bottom-width: number-to-pixel(8);
|
|
402
346
|
border-style: solid;
|
|
403
347
|
}
|
|
404
348
|
|
|
405
349
|
.bx8 {
|
|
406
|
-
border-left-width:
|
|
407
|
-
border-
|
|
408
|
-
border-right-width: 8px;
|
|
409
|
-
border-right-width: 0.5rem;
|
|
350
|
+
border-left-width: number-to-pixel(8);
|
|
351
|
+
border-right-width: number-to-pixel(8);
|
|
410
352
|
border-style: solid;
|
|
411
353
|
}
|
|
412
354
|
|
|
413
355
|
.bt8 {
|
|
414
|
-
border-top-width:
|
|
415
|
-
border-top-width: 0.5rem;
|
|
356
|
+
border-top-width: number-to-pixel(8);
|
|
416
357
|
border-style: solid;
|
|
417
358
|
}
|
|
418
359
|
|
|
419
360
|
.bl8 {
|
|
420
|
-
border-left-width:
|
|
421
|
-
border-left-width: 0.5rem;
|
|
361
|
+
border-left-width: number-to-pixel(8);
|
|
422
362
|
border-style: solid;
|
|
423
363
|
}
|
|
424
364
|
|
|
425
365
|
.br8 {
|
|
426
|
-
border-right-width:
|
|
427
|
-
border-right-width: 0.5rem;
|
|
366
|
+
border-right-width: number-to-pixel(8);
|
|
428
367
|
border-style: solid;
|
|
429
368
|
}
|
|
430
369
|
|
|
431
370
|
.bb8 {
|
|
432
|
-
border-bottom-width:
|
|
433
|
-
border-bottom-width: 0.5rem;
|
|
371
|
+
border-bottom-width: number-to-pixel(8);
|
|
434
372
|
border-style: solid;
|
|
435
373
|
}
|
|
436
374
|
|
|
437
375
|
.b10 {
|
|
438
|
-
border-width:
|
|
439
|
-
border-width: 0.625rem;
|
|
376
|
+
border-width: number-to-pixel(10);
|
|
440
377
|
border-style: solid;
|
|
441
378
|
}
|
|
442
379
|
|
|
443
380
|
.by10 {
|
|
444
|
-
border-top-width:
|
|
445
|
-
border-
|
|
446
|
-
border-bottom-width: 10px;
|
|
447
|
-
border-bottom-width: 0.625rem;
|
|
381
|
+
border-top-width: number-to-pixel(10);
|
|
382
|
+
border-bottom-width: number-to-pixel(10);
|
|
448
383
|
border-style: solid;
|
|
449
384
|
}
|
|
450
385
|
|
|
451
386
|
.bx10 {
|
|
452
|
-
border-left-width:
|
|
453
|
-
border-
|
|
454
|
-
border-right-width: 10px;
|
|
455
|
-
border-right-width: 0.625rem;
|
|
387
|
+
border-left-width: number-to-pixel(10);
|
|
388
|
+
border-right-width: number-to-pixel(10);
|
|
456
389
|
border-style: solid;
|
|
457
390
|
}
|
|
458
391
|
|
|
459
392
|
.bt10 {
|
|
460
|
-
border-top-width:
|
|
461
|
-
border-top-width: 0.625rem;
|
|
393
|
+
border-top-width: number-to-pixel(10);
|
|
462
394
|
border-style: solid;
|
|
463
395
|
}
|
|
464
396
|
|
|
465
397
|
.bl10 {
|
|
466
|
-
border-left-width:
|
|
467
|
-
border-left-width: 0.625rem;
|
|
398
|
+
border-left-width: number-to-pixel(10);
|
|
468
399
|
border-style: solid;
|
|
469
400
|
}
|
|
470
401
|
|
|
471
402
|
.br10 {
|
|
472
|
-
border-right-width:
|
|
473
|
-
border-right-width: 0.625rem;
|
|
403
|
+
border-right-width: number-to-pixel(10);
|
|
474
404
|
border-style: solid;
|
|
475
405
|
}
|
|
476
406
|
|
|
477
407
|
.bb10 {
|
|
478
|
-
border-bottom-width:
|
|
479
|
-
border-bottom-width: 0.625rem;
|
|
408
|
+
border-bottom-width: number-to-pixel(10);
|
|
480
409
|
border-style: solid;
|
|
481
410
|
}
|
|
482
411
|
|
|
483
412
|
.rad2,
|
|
484
413
|
.brad2 {
|
|
485
|
-
border-radius:
|
|
486
|
-
border-radius: 0.125rem;
|
|
414
|
+
border-radius: number-to-pixel(2);
|
|
487
415
|
}
|
|
488
416
|
|
|
489
417
|
.radt2,
|
|
490
418
|
.bradt2 {
|
|
491
|
-
border-top-left-radius:
|
|
492
|
-
border-top-
|
|
493
|
-
border-top-right-radius: 2px;
|
|
494
|
-
border-top-right-radius: 0.125rem;
|
|
419
|
+
border-top-left-radius: number-to-pixel(2);
|
|
420
|
+
border-top-right-radius: number-to-pixel(2);
|
|
495
421
|
border-style: solid;
|
|
496
422
|
}
|
|
497
423
|
|
|
498
424
|
.radl2,
|
|
499
425
|
.bradl2 {
|
|
500
|
-
border-top-left-radius:
|
|
501
|
-
border-
|
|
502
|
-
border-bottom-left-radius: 2px;
|
|
503
|
-
border-bottom-left-radius: 0.125rem;
|
|
426
|
+
border-top-left-radius: number-to-pixel(2);
|
|
427
|
+
border-bottom-left-radius: number-to-pixel(2);
|
|
504
428
|
border-style: solid;
|
|
505
429
|
}
|
|
506
430
|
|
|
507
431
|
.radt2,
|
|
508
432
|
.bradt2 {
|
|
509
|
-
border-top-right-radius:
|
|
510
|
-
border-
|
|
511
|
-
border-bottom-right-radius: 2px;
|
|
512
|
-
border-bottom-right-radius: 0.125rem;
|
|
433
|
+
border-top-right-radius: number-to-pixel(2);
|
|
434
|
+
border-bottom-right-radius: number-to-pixel(2);
|
|
513
435
|
border-style: solid;
|
|
514
436
|
}
|
|
515
437
|
|
|
516
438
|
.radb2,
|
|
517
439
|
.bradb2 {
|
|
518
|
-
border-bottom-right-radius:
|
|
519
|
-
border-bottom-
|
|
520
|
-
border-bottom-left-radius: 2px;
|
|
521
|
-
border-bottom-left-radius: 0.125rem;
|
|
440
|
+
border-bottom-right-radius: number-to-pixel(2);
|
|
441
|
+
border-bottom-left-radius: number-to-pixel(2);
|
|
522
442
|
border-style: solid;
|
|
523
443
|
}
|
|
524
444
|
|
|
525
445
|
.rad3,
|
|
526
446
|
.brad3 {
|
|
527
|
-
border-radius:
|
|
528
|
-
border-radius: 0.1875rem;
|
|
447
|
+
border-radius: number-to-pixel(3);
|
|
529
448
|
}
|
|
530
449
|
|
|
531
450
|
.radt3,
|
|
532
451
|
.bradt3 {
|
|
533
|
-
border-top-left-radius:
|
|
534
|
-
border-top-
|
|
535
|
-
border-top-right-radius: 3px;
|
|
536
|
-
border-top-right-radius: 0.1875rem;
|
|
452
|
+
border-top-left-radius: number-to-pixel(3);
|
|
453
|
+
border-top-right-radius: number-to-pixel(3);
|
|
537
454
|
border-style: solid;
|
|
538
455
|
}
|
|
539
456
|
|
|
540
457
|
.radl3,
|
|
541
458
|
.bradl3 {
|
|
542
|
-
border-top-left-radius:
|
|
543
|
-
border-
|
|
544
|
-
border-bottom-left-radius: 3px;
|
|
545
|
-
border-bottom-left-radius: 0.1875rem;
|
|
459
|
+
border-top-left-radius: number-to-pixel(3);
|
|
460
|
+
border-bottom-left-radius: number-to-pixel(3);
|
|
546
461
|
border-style: solid;
|
|
547
462
|
}
|
|
548
463
|
|
|
549
464
|
.radt3,
|
|
550
465
|
.bradt3 {
|
|
551
|
-
border-top-right-radius:
|
|
552
|
-
border-
|
|
553
|
-
border-bottom-right-radius: 3px;
|
|
554
|
-
border-bottom-right-radius: 0.1875rem;
|
|
466
|
+
border-top-right-radius: number-to-pixel(3);
|
|
467
|
+
border-bottom-right-radius: number-to-pixel(3);
|
|
555
468
|
border-style: solid;
|
|
556
469
|
}
|
|
557
470
|
|
|
558
471
|
.radb3,
|
|
559
472
|
.bradb3 {
|
|
560
|
-
border-bottom-right-radius:
|
|
561
|
-
border-bottom-
|
|
562
|
-
border-bottom-left-radius: 3px;
|
|
563
|
-
border-bottom-left-radius: 0.1875rem;
|
|
473
|
+
border-bottom-right-radius: number-to-pixel(3);
|
|
474
|
+
border-bottom-left-radius: number-to-pixel(3);
|
|
564
475
|
border-style: solid;
|
|
565
476
|
}
|
|
566
477
|
|
|
567
478
|
.rad4,
|
|
568
479
|
.brad4 {
|
|
569
|
-
border-radius:
|
|
570
|
-
border-radius: 0.25rem;
|
|
480
|
+
border-radius: number-to-pixel(4);
|
|
571
481
|
}
|
|
572
482
|
|
|
573
483
|
.radt4,
|
|
574
484
|
.bradt4 {
|
|
575
|
-
border-top-left-radius:
|
|
576
|
-
border-top-
|
|
577
|
-
border-top-right-radius: 4px;
|
|
578
|
-
border-top-right-radius: 0.25rem;
|
|
485
|
+
border-top-left-radius: number-to-pixel(4);
|
|
486
|
+
border-top-right-radius: number-to-pixel(4);
|
|
579
487
|
border-style: solid;
|
|
580
488
|
}
|
|
581
489
|
|
|
582
490
|
.radl4,
|
|
583
491
|
.bradl4 {
|
|
584
|
-
border-top-left-radius:
|
|
585
|
-
border-
|
|
586
|
-
border-bottom-left-radius: 4px;
|
|
587
|
-
border-bottom-left-radius: 0.25rem;
|
|
492
|
+
border-top-left-radius: number-to-pixel(4);
|
|
493
|
+
border-bottom-left-radius: number-to-pixel(4);
|
|
588
494
|
border-style: solid;
|
|
589
495
|
}
|
|
590
496
|
|
|
591
497
|
.radt4,
|
|
592
498
|
.bradt4 {
|
|
593
|
-
border-top-right-radius:
|
|
594
|
-
border-
|
|
595
|
-
border-bottom-right-radius: 4px;
|
|
596
|
-
border-bottom-right-radius: 0.25rem;
|
|
499
|
+
border-top-right-radius: number-to-pixel(4);
|
|
500
|
+
border-bottom-right-radius: number-to-pixel(4);
|
|
597
501
|
border-style: solid;
|
|
598
502
|
}
|
|
599
503
|
|
|
600
504
|
.radb4,
|
|
601
505
|
.bradb4 {
|
|
602
|
-
border-bottom-right-radius:
|
|
603
|
-
border-bottom-
|
|
604
|
-
border-bottom-left-radius: 4px;
|
|
605
|
-
border-bottom-left-radius: 0.25rem;
|
|
506
|
+
border-bottom-right-radius: number-to-pixel(4);
|
|
507
|
+
border-bottom-left-radius: number-to-pixel(4);
|
|
606
508
|
border-style: solid;
|
|
607
509
|
}
|
|
608
510
|
|
|
609
511
|
.rad5,
|
|
610
512
|
.brad5 {
|
|
611
|
-
border-radius:
|
|
612
|
-
border-radius: 0.3125rem;
|
|
513
|
+
border-radius: number-to-pixel(5);
|
|
613
514
|
}
|
|
614
515
|
|
|
615
516
|
.radt5,
|
|
616
517
|
.bradt5 {
|
|
617
|
-
border-top-left-radius:
|
|
618
|
-
border-top-
|
|
619
|
-
border-top-right-radius: 5px;
|
|
620
|
-
border-top-right-radius: 0.3125rem;
|
|
518
|
+
border-top-left-radius: number-to-pixel(5);
|
|
519
|
+
border-top-right-radius: number-to-pixel(5);
|
|
621
520
|
border-style: solid;
|
|
622
521
|
}
|
|
623
522
|
|
|
624
523
|
.radl5,
|
|
625
524
|
.bradl5 {
|
|
626
|
-
border-top-left-radius:
|
|
627
|
-
border-
|
|
628
|
-
border-bottom-left-radius: 5px;
|
|
629
|
-
border-bottom-left-radius: 0.3125rem;
|
|
525
|
+
border-top-left-radius: number-to-pixel(5);
|
|
526
|
+
border-bottom-left-radius: number-to-pixel(5);
|
|
630
527
|
border-style: solid;
|
|
631
528
|
}
|
|
632
529
|
|
|
633
530
|
.radt5,
|
|
634
531
|
.bradt5 {
|
|
635
|
-
border-top-right-radius:
|
|
636
|
-
border-
|
|
637
|
-
border-bottom-right-radius: 5px;
|
|
638
|
-
border-bottom-right-radius: 0.3125rem;
|
|
532
|
+
border-top-right-radius: number-to-pixel(5);
|
|
533
|
+
border-bottom-right-radius: number-to-pixel(5);
|
|
639
534
|
border-style: solid;
|
|
640
535
|
}
|
|
641
536
|
|
|
642
537
|
.radb5,
|
|
643
538
|
.bradb5 {
|
|
644
|
-
border-bottom-right-radius:
|
|
645
|
-
border-bottom-
|
|
646
|
-
border-bottom-left-radius: 5px;
|
|
647
|
-
border-bottom-left-radius: 0.3125rem;
|
|
539
|
+
border-bottom-right-radius: number-to-pixel(5);
|
|
540
|
+
border-bottom-left-radius: number-to-pixel(5);
|
|
648
541
|
border-style: solid;
|
|
649
542
|
}
|
|
650
543
|
|
|
651
544
|
.rad6,
|
|
652
545
|
.brad6 {
|
|
653
|
-
border-radius:
|
|
654
|
-
border-radius: 0.375rem;
|
|
546
|
+
border-radius: number-to-pixel(6);
|
|
655
547
|
}
|
|
656
548
|
|
|
657
549
|
.radt6,
|
|
658
550
|
.bradt6 {
|
|
659
|
-
border-top-left-radius:
|
|
660
|
-
border-top-
|
|
661
|
-
border-top-right-radius: 6px;
|
|
662
|
-
border-top-right-radius: 0.375rem;
|
|
551
|
+
border-top-left-radius: number-to-pixel(6);
|
|
552
|
+
border-top-right-radius: number-to-pixel(6);
|
|
663
553
|
border-style: solid;
|
|
664
554
|
}
|
|
665
555
|
|
|
666
556
|
.radl6,
|
|
667
557
|
.bradl6 {
|
|
668
|
-
border-top-left-radius:
|
|
669
|
-
border-
|
|
670
|
-
border-bottom-left-radius: 6px;
|
|
671
|
-
border-bottom-left-radius: 0.375rem;
|
|
558
|
+
border-top-left-radius: number-to-pixel(6);
|
|
559
|
+
border-bottom-left-radius: number-to-pixel(6);
|
|
672
560
|
border-style: solid;
|
|
673
561
|
}
|
|
674
562
|
|
|
675
563
|
.radt6,
|
|
676
564
|
.bradt6 {
|
|
677
|
-
border-top-right-radius:
|
|
678
|
-
border-
|
|
679
|
-
border-bottom-right-radius: 6px;
|
|
680
|
-
border-bottom-right-radius: 0.375rem;
|
|
565
|
+
border-top-right-radius: number-to-pixel(6);
|
|
566
|
+
border-bottom-right-radius: number-to-pixel(6);
|
|
681
567
|
border-style: solid;
|
|
682
568
|
}
|
|
683
569
|
|
|
684
570
|
.radb6,
|
|
685
571
|
.bradb6 {
|
|
686
|
-
border-bottom-right-radius:
|
|
687
|
-
border-bottom-
|
|
688
|
-
border-bottom-left-radius: 6px;
|
|
689
|
-
border-bottom-left-radius: 0.375rem;
|
|
572
|
+
border-bottom-right-radius: number-to-pixel(6);
|
|
573
|
+
border-bottom-left-radius: number-to-pixel(6);
|
|
690
574
|
border-style: solid;
|
|
691
575
|
}
|
|
692
576
|
|
|
693
577
|
.rad7,
|
|
694
578
|
.brad7 {
|
|
695
|
-
border-radius:
|
|
696
|
-
border-radius: 0.4375rem;
|
|
579
|
+
border-radius: number-to-pixel(7);
|
|
697
580
|
}
|
|
698
581
|
|
|
699
582
|
.radt7,
|
|
700
583
|
.bradt7 {
|
|
701
|
-
border-top-left-radius:
|
|
702
|
-
border-top-
|
|
703
|
-
border-top-right-radius: 7px;
|
|
704
|
-
border-top-right-radius: 0.4375rem;
|
|
584
|
+
border-top-left-radius: number-to-pixel(7);
|
|
585
|
+
border-top-right-radius: number-to-pixel(7);
|
|
705
586
|
border-style: solid;
|
|
706
587
|
}
|
|
707
588
|
|
|
708
589
|
.radl7,
|
|
709
590
|
.bradl7 {
|
|
710
|
-
border-top-left-radius:
|
|
711
|
-
border-
|
|
712
|
-
border-bottom-left-radius: 7px;
|
|
713
|
-
border-bottom-left-radius: 0.4375rem;
|
|
591
|
+
border-top-left-radius: number-to-pixel(7);
|
|
592
|
+
border-bottom-left-radius: number-to-pixel(7);
|
|
714
593
|
border-style: solid;
|
|
715
594
|
}
|
|
716
595
|
|
|
717
596
|
.radt7,
|
|
718
597
|
.bradt7 {
|
|
719
|
-
border-top-right-radius:
|
|
720
|
-
border-
|
|
721
|
-
border-bottom-right-radius: 7px;
|
|
722
|
-
border-bottom-right-radius: 0.4375rem;
|
|
598
|
+
border-top-right-radius: number-to-pixel(7);
|
|
599
|
+
border-bottom-right-radius: number-to-pixel(7);
|
|
723
600
|
border-style: solid;
|
|
724
601
|
}
|
|
725
602
|
|
|
726
603
|
.radb7,
|
|
727
604
|
.bradb7 {
|
|
728
|
-
border-bottom-right-radius:
|
|
729
|
-
border-bottom-
|
|
730
|
-
border-bottom-left-radius: 7px;
|
|
731
|
-
border-bottom-left-radius: 0.4375rem;
|
|
605
|
+
border-bottom-right-radius: number-to-pixel(7);
|
|
606
|
+
border-bottom-left-radius: number-to-pixel(7);
|
|
732
607
|
border-style: solid;
|
|
733
608
|
}
|
|
734
609
|
|
|
735
610
|
.rad8,
|
|
736
611
|
.brad8 {
|
|
737
|
-
border-radius:
|
|
738
|
-
border-radius: 0.5rem;
|
|
612
|
+
border-radius: number-to-pixel(8);
|
|
739
613
|
}
|
|
740
614
|
|
|
741
615
|
.radt8,
|
|
742
616
|
.bradt8 {
|
|
743
|
-
border-top-left-radius:
|
|
744
|
-
border-top-
|
|
745
|
-
border-top-right-radius: 8px;
|
|
746
|
-
border-top-right-radius: 0.5rem;
|
|
617
|
+
border-top-left-radius: number-to-pixel(8);
|
|
618
|
+
border-top-right-radius: number-to-pixel(8);
|
|
747
619
|
border-style: solid;
|
|
748
620
|
}
|
|
749
621
|
|
|
750
622
|
.radl8,
|
|
751
623
|
.bradl8 {
|
|
752
|
-
border-top-left-radius:
|
|
753
|
-
border-
|
|
754
|
-
border-bottom-left-radius: 8px;
|
|
755
|
-
border-bottom-left-radius: 0.5rem;
|
|
624
|
+
border-top-left-radius: number-to-pixel(8);
|
|
625
|
+
border-bottom-left-radius: number-to-pixel(8);
|
|
756
626
|
border-style: solid;
|
|
757
627
|
}
|
|
758
628
|
|
|
759
629
|
.radt8,
|
|
760
630
|
.bradt8 {
|
|
761
|
-
border-top-right-radius:
|
|
762
|
-
border-
|
|
763
|
-
border-bottom-right-radius: 8px;
|
|
764
|
-
border-bottom-right-radius: 0.5rem;
|
|
631
|
+
border-top-right-radius: number-to-pixel(8);
|
|
632
|
+
border-bottom-right-radius: number-to-pixel(8);
|
|
765
633
|
border-style: solid;
|
|
766
634
|
}
|
|
767
635
|
|
|
768
636
|
.radb8,
|
|
769
637
|
.bradb8 {
|
|
770
|
-
border-bottom-right-radius:
|
|
771
|
-
border-bottom-
|
|
772
|
-
border-bottom-left-radius: 8px;
|
|
773
|
-
border-bottom-left-radius: 0.5rem;
|
|
638
|
+
border-bottom-right-radius: number-to-pixel(8);
|
|
639
|
+
border-bottom-left-radius: number-to-pixel(8);
|
|
774
640
|
border-style: solid;
|
|
775
641
|
}
|
|
776
642
|
|
|
777
643
|
.rad10,
|
|
778
644
|
.brad10 {
|
|
779
|
-
border-radius:
|
|
780
|
-
border-radius: 0.625rem;
|
|
645
|
+
border-radius: number-to-pixel(10);
|
|
781
646
|
}
|
|
782
647
|
|
|
783
648
|
.radt10,
|
|
784
649
|
.bradt10 {
|
|
785
|
-
border-top-left-radius:
|
|
786
|
-
border-top-
|
|
787
|
-
border-top-right-radius: 10px;
|
|
788
|
-
border-top-right-radius: 0.625rem;
|
|
650
|
+
border-top-left-radius: number-to-pixel(10);
|
|
651
|
+
border-top-right-radius: number-to-pixel(10);
|
|
789
652
|
border-style: solid;
|
|
790
653
|
}
|
|
791
654
|
|
|
792
655
|
.radl10,
|
|
793
656
|
.bradl10 {
|
|
794
|
-
border-top-left-radius:
|
|
795
|
-
border-
|
|
796
|
-
border-bottom-left-radius: 10px;
|
|
797
|
-
border-bottom-left-radius: 0.625rem;
|
|
657
|
+
border-top-left-radius: number-to-pixel(10);
|
|
658
|
+
border-bottom-left-radius: number-to-pixel(10);
|
|
798
659
|
border-style: solid;
|
|
799
660
|
}
|
|
800
661
|
|
|
801
662
|
.radt10,
|
|
802
663
|
.bradt10 {
|
|
803
|
-
border-top-right-radius:
|
|
804
|
-
border-
|
|
805
|
-
border-bottom-right-radius: 10px;
|
|
806
|
-
border-bottom-right-radius: 0.625rem;
|
|
664
|
+
border-top-right-radius: number-to-pixel(10);
|
|
665
|
+
border-bottom-right-radius: number-to-pixel(10);
|
|
807
666
|
border-style: solid;
|
|
808
667
|
}
|
|
809
668
|
|
|
810
669
|
.radb10,
|
|
811
670
|
.bradb10 {
|
|
812
|
-
border-bottom-right-radius:
|
|
813
|
-
border-bottom-
|
|
814
|
-
border-bottom-left-radius: 10px;
|
|
815
|
-
border-bottom-left-radius: 0.625rem;
|
|
671
|
+
border-bottom-right-radius: number-to-pixel(10);
|
|
672
|
+
border-bottom-left-radius: number-to-pixel(10);
|
|
816
673
|
border-style: solid;
|
|
817
674
|
}
|
|
818
675
|
|
|
819
676
|
.rad12,
|
|
820
677
|
.brad12 {
|
|
821
|
-
border-radius:
|
|
822
|
-
border-radius: 0.75rem;
|
|
678
|
+
border-radius: number-to-pixel(12);
|
|
823
679
|
}
|
|
824
680
|
|
|
825
681
|
.radt12,
|
|
826
682
|
.bradt12 {
|
|
827
|
-
border-top-left-radius:
|
|
828
|
-
border-top-
|
|
829
|
-
border-top-right-radius: 12px;
|
|
830
|
-
border-top-right-radius: 0.75rem;
|
|
683
|
+
border-top-left-radius: number-to-pixel(12);
|
|
684
|
+
border-top-right-radius: number-to-pixel(12);
|
|
831
685
|
border-style: solid;
|
|
832
686
|
}
|
|
833
687
|
|
|
834
688
|
.radl12,
|
|
835
689
|
.bradl12 {
|
|
836
|
-
border-top-left-radius:
|
|
837
|
-
border-
|
|
838
|
-
border-bottom-left-radius: 12px;
|
|
839
|
-
border-bottom-left-radius: 0.75rem;
|
|
690
|
+
border-top-left-radius: number-to-pixel(12);
|
|
691
|
+
border-bottom-left-radius: number-to-pixel(12);
|
|
840
692
|
border-style: solid;
|
|
841
693
|
}
|
|
842
694
|
|
|
843
695
|
.radt12,
|
|
844
696
|
.bradt12 {
|
|
845
|
-
border-top-right-radius:
|
|
846
|
-
border-
|
|
847
|
-
border-bottom-right-radius: 12px;
|
|
848
|
-
border-bottom-right-radius: 0.75rem;
|
|
697
|
+
border-top-right-radius: number-to-pixel(12);
|
|
698
|
+
border-bottom-right-radius: number-to-pixel(12);
|
|
849
699
|
border-style: solid;
|
|
850
700
|
}
|
|
851
701
|
|
|
852
702
|
.radb12,
|
|
853
703
|
.bradb12 {
|
|
854
|
-
border-bottom-right-radius:
|
|
855
|
-
border-bottom-
|
|
856
|
-
border-bottom-left-radius: 12px;
|
|
857
|
-
border-bottom-left-radius: 0.75rem;
|
|
704
|
+
border-bottom-right-radius: number-to-pixel(12);
|
|
705
|
+
border-bottom-left-radius: number-to-pixel(12);
|
|
858
706
|
border-style: solid;
|
|
859
707
|
}
|
|
860
708
|
|
|
861
709
|
.rad24,
|
|
862
710
|
.brad24 {
|
|
863
|
-
border-radius:
|
|
864
|
-
border-radius: 1.5rem;
|
|
711
|
+
border-radius: number-to-pixel(24);
|
|
865
712
|
}
|
|
866
713
|
|
|
867
714
|
.radt24,
|
|
868
715
|
.bradt24 {
|
|
869
|
-
border-top-left-radius:
|
|
870
|
-
border-top-
|
|
871
|
-
border-top-right-radius: 24px;
|
|
872
|
-
border-top-right-radius: 1.5rem;
|
|
716
|
+
border-top-left-radius: number-to-pixel(24);
|
|
717
|
+
border-top-right-radius: number-to-pixel(24);
|
|
873
718
|
border-style: solid;
|
|
874
719
|
}
|
|
875
720
|
|
|
876
721
|
.radl24,
|
|
877
722
|
.bradl24 {
|
|
878
|
-
border-top-left-radius:
|
|
879
|
-
border-
|
|
880
|
-
border-bottom-left-radius: 24px;
|
|
881
|
-
border-bottom-left-radius: 1.5rem;
|
|
723
|
+
border-top-left-radius: number-to-pixel(24);
|
|
724
|
+
border-bottom-left-radius: number-to-pixel(24);
|
|
882
725
|
border-style: solid;
|
|
883
726
|
}
|
|
884
727
|
|
|
885
728
|
.radt24,
|
|
886
729
|
.bradt24 {
|
|
887
|
-
border-top-right-radius:
|
|
888
|
-
border-
|
|
889
|
-
border-bottom-right-radius: 24px;
|
|
890
|
-
border-bottom-right-radius: 1.5rem;
|
|
730
|
+
border-top-right-radius: number-to-pixel(24);
|
|
731
|
+
border-bottom-right-radius: number-to-pixel(24);
|
|
891
732
|
border-style: solid;
|
|
892
733
|
}
|
|
893
734
|
|
|
894
735
|
.radb24,
|
|
895
736
|
.bradb24 {
|
|
896
|
-
border-bottom-right-radius:
|
|
897
|
-
border-bottom-
|
|
898
|
-
border-bottom-left-radius: 24px;
|
|
899
|
-
border-bottom-left-radius: 1.5rem;
|
|
737
|
+
border-bottom-right-radius: number-to-pixel(24);
|
|
738
|
+
border-bottom-left-radius: number-to-pixel(24);
|
|
900
739
|
border-style: solid;
|
|
901
740
|
}
|
|
902
741
|
|
|
@@ -1097,63 +936,51 @@ SOURCE: https://github.com/pierreburel/sass-rem
|
|
|
1097
936
|
* .fs12 -> font-size 12px converted to rem
|
|
1098
937
|
*/
|
|
1099
938
|
.fs6 {
|
|
1100
|
-
font-size:
|
|
1101
|
-
font-size: 0.375rem;
|
|
939
|
+
font-size: number-to-pixel(6);
|
|
1102
940
|
}
|
|
1103
941
|
|
|
1104
942
|
.fs7 {
|
|
1105
|
-
font-size:
|
|
1106
|
-
font-size: 0.4375rem;
|
|
943
|
+
font-size: number-to-pixel(7);
|
|
1107
944
|
}
|
|
1108
945
|
|
|
1109
946
|
.fs8 {
|
|
1110
|
-
font-size:
|
|
1111
|
-
font-size: 0.5rem;
|
|
947
|
+
font-size: number-to-pixel(8);
|
|
1112
948
|
}
|
|
1113
949
|
|
|
1114
950
|
.fs9 {
|
|
1115
|
-
font-size:
|
|
1116
|
-
font-size: 0.5625rem;
|
|
951
|
+
font-size: number-to-pixel(9);
|
|
1117
952
|
}
|
|
1118
953
|
|
|
1119
954
|
.fs10 {
|
|
1120
|
-
font-size:
|
|
1121
|
-
font-size: 0.625rem;
|
|
955
|
+
font-size: number-to-pixel(10);
|
|
1122
956
|
}
|
|
1123
957
|
|
|
1124
958
|
.fs11 {
|
|
1125
|
-
font-size:
|
|
1126
|
-
font-size: 0.6875rem;
|
|
959
|
+
font-size: number-to-pixel(11);
|
|
1127
960
|
}
|
|
1128
961
|
|
|
1129
962
|
.fs12 {
|
|
1130
|
-
font-size:
|
|
1131
|
-
font-size: 0.75rem;
|
|
963
|
+
font-size: number-to-pixel(12);
|
|
1132
964
|
}
|
|
1133
965
|
|
|
1134
966
|
.fs14 {
|
|
1135
|
-
font-size:
|
|
1136
|
-
font-size: 0.875rem;
|
|
967
|
+
font-size: number-to-pixel(14);
|
|
1137
968
|
}
|
|
1138
969
|
|
|
1139
970
|
.fs24 {
|
|
1140
|
-
font-size:
|
|
1141
|
-
font-size: 1.5rem;
|
|
971
|
+
font-size: number-to-pixel(24);
|
|
1142
972
|
}
|
|
1143
973
|
|
|
1144
974
|
.fs26 {
|
|
1145
|
-
font-size:
|
|
1146
|
-
font-size: 1.625rem;
|
|
975
|
+
font-size: number-to-pixel(26);
|
|
1147
976
|
}
|
|
1148
977
|
|
|
1149
978
|
.fs32 {
|
|
1150
|
-
font-size:
|
|
1151
|
-
font-size: 2rem;
|
|
979
|
+
font-size: number-to-pixel(32);
|
|
1152
980
|
}
|
|
1153
981
|
|
|
1154
982
|
.fs40 {
|
|
1155
|
-
font-size:
|
|
1156
|
-
font-size: 2.5rem;
|
|
983
|
+
font-size: number-to-pixel(40);
|
|
1157
984
|
}
|
|
1158
985
|
|
|
1159
986
|
/**
|
|
@@ -1163,8 +990,7 @@ SOURCE: https://github.com/pierreburel/sass-rem
|
|
|
1163
990
|
* .ln12 -> line-height 12px converted to rem
|
|
1164
991
|
*/
|
|
1165
992
|
.lh12 {
|
|
1166
|
-
line-height:
|
|
1167
|
-
line-height: 0.75rem;
|
|
993
|
+
line-height: number-to-pixel(number-to-pixel(12));
|
|
1168
994
|
}
|
|
1169
995
|
|
|
1170
996
|
/**
|
|
@@ -1176,629 +1002,490 @@ SOURCE: https://github.com/pierreburel/sass-rem
|
|
|
1176
1002
|
* .pr12 -> padding right 12px converted to rem
|
|
1177
1003
|
*/
|
|
1178
1004
|
.m3 {
|
|
1179
|
-
margin:
|
|
1180
|
-
margin: 0.1875rem;
|
|
1005
|
+
margin: number-to-pixel(3);
|
|
1181
1006
|
}
|
|
1182
1007
|
|
|
1183
1008
|
.p3 {
|
|
1184
|
-
padding:
|
|
1185
|
-
padding: 0.1875rem;
|
|
1009
|
+
padding: number-to-pixel(3);
|
|
1186
1010
|
}
|
|
1187
1011
|
|
|
1188
1012
|
.my3 {
|
|
1189
|
-
margin-top:
|
|
1190
|
-
margin-
|
|
1191
|
-
margin-bottom: 3px;
|
|
1192
|
-
margin-bottom: 0.1875rem;
|
|
1013
|
+
margin-top: number-to-pixel(3);
|
|
1014
|
+
margin-bottom: number-to-pixel(3);
|
|
1193
1015
|
}
|
|
1194
1016
|
|
|
1195
1017
|
.py3 {
|
|
1196
|
-
padding-top:
|
|
1197
|
-
padding-
|
|
1198
|
-
padding-bottom: 3px;
|
|
1199
|
-
padding-bottom: 0.1875rem;
|
|
1018
|
+
padding-top: number-to-pixel(3);
|
|
1019
|
+
padding-bottom: number-to-pixel(3);
|
|
1200
1020
|
}
|
|
1201
1021
|
|
|
1202
1022
|
.mx3 {
|
|
1203
|
-
margin-left:
|
|
1204
|
-
margin-
|
|
1205
|
-
margin-right: 3px;
|
|
1206
|
-
margin-right: 0.1875rem;
|
|
1023
|
+
margin-left: number-to-pixel(3);
|
|
1024
|
+
margin-right: number-to-pixel(3);
|
|
1207
1025
|
}
|
|
1208
1026
|
|
|
1209
1027
|
.px3 {
|
|
1210
|
-
padding-left:
|
|
1211
|
-
padding-
|
|
1212
|
-
padding-right: 3px;
|
|
1213
|
-
padding-right: 0.1875rem;
|
|
1028
|
+
padding-left: number-to-pixel(3);
|
|
1029
|
+
padding-right: number-to-pixel(3);
|
|
1214
1030
|
}
|
|
1215
1031
|
|
|
1216
1032
|
.mt3 {
|
|
1217
|
-
margin-top:
|
|
1218
|
-
margin-top: 0.1875rem;
|
|
1033
|
+
margin-top: number-to-pixel(3);
|
|
1219
1034
|
}
|
|
1220
1035
|
|
|
1221
1036
|
.pt3 {
|
|
1222
|
-
padding-top:
|
|
1223
|
-
padding-top: 0.1875rem;
|
|
1037
|
+
padding-top: number-to-pixel(3);
|
|
1224
1038
|
}
|
|
1225
1039
|
|
|
1226
1040
|
.ml3 {
|
|
1227
|
-
margin-left:
|
|
1228
|
-
margin-left: 0.1875rem;
|
|
1041
|
+
margin-left: number-to-pixel(3);
|
|
1229
1042
|
}
|
|
1230
1043
|
|
|
1231
1044
|
.pl3 {
|
|
1232
|
-
padding-left:
|
|
1233
|
-
padding-left: 0.1875rem;
|
|
1045
|
+
padding-left: number-to-pixel(3);
|
|
1234
1046
|
}
|
|
1235
1047
|
|
|
1236
1048
|
.mr3 {
|
|
1237
|
-
margin-right:
|
|
1238
|
-
margin-right: 0.1875rem;
|
|
1049
|
+
margin-right: number-to-pixel(3);
|
|
1239
1050
|
}
|
|
1240
1051
|
|
|
1241
1052
|
.pr3 {
|
|
1242
|
-
padding-right:
|
|
1243
|
-
padding-right: 0.1875rem;
|
|
1053
|
+
padding-right: number-to-pixel(3);
|
|
1244
1054
|
}
|
|
1245
1055
|
|
|
1246
1056
|
.mb3 {
|
|
1247
|
-
margin-bottom:
|
|
1248
|
-
margin-bottom: 0.1875rem;
|
|
1057
|
+
margin-bottom: number-to-pixel(3);
|
|
1249
1058
|
}
|
|
1250
1059
|
|
|
1251
1060
|
.pb3 {
|
|
1252
|
-
padding-bottom:
|
|
1253
|
-
padding-bottom: 0.1875rem;
|
|
1061
|
+
padding-bottom: number-to-pixel(3);
|
|
1254
1062
|
}
|
|
1255
1063
|
|
|
1256
1064
|
.m6 {
|
|
1257
|
-
margin:
|
|
1258
|
-
margin: 0.375rem;
|
|
1065
|
+
margin: number-to-pixel(6);
|
|
1259
1066
|
}
|
|
1260
1067
|
|
|
1261
1068
|
.p6 {
|
|
1262
|
-
padding:
|
|
1263
|
-
padding: 0.375rem;
|
|
1069
|
+
padding: number-to-pixel(6);
|
|
1264
1070
|
}
|
|
1265
1071
|
|
|
1266
1072
|
.my6 {
|
|
1267
|
-
margin-top:
|
|
1268
|
-
margin-
|
|
1269
|
-
margin-bottom: 6px;
|
|
1270
|
-
margin-bottom: 0.375rem;
|
|
1073
|
+
margin-top: number-to-pixel(6);
|
|
1074
|
+
margin-bottom: number-to-pixel(6);
|
|
1271
1075
|
}
|
|
1272
1076
|
|
|
1273
1077
|
.py6 {
|
|
1274
|
-
padding-top:
|
|
1275
|
-
padding-
|
|
1276
|
-
padding-bottom: 6px;
|
|
1277
|
-
padding-bottom: 0.375rem;
|
|
1078
|
+
padding-top: number-to-pixel(6);
|
|
1079
|
+
padding-bottom: number-to-pixel(6);
|
|
1278
1080
|
}
|
|
1279
1081
|
|
|
1280
1082
|
.mx6 {
|
|
1281
|
-
margin-left:
|
|
1282
|
-
margin-
|
|
1283
|
-
margin-right: 6px;
|
|
1284
|
-
margin-right: 0.375rem;
|
|
1083
|
+
margin-left: number-to-pixel(6);
|
|
1084
|
+
margin-right: number-to-pixel(6);
|
|
1285
1085
|
}
|
|
1286
1086
|
|
|
1287
1087
|
.px6 {
|
|
1288
|
-
padding-left:
|
|
1289
|
-
padding-
|
|
1290
|
-
padding-right: 6px;
|
|
1291
|
-
padding-right: 0.375rem;
|
|
1088
|
+
padding-left: number-to-pixel(6);
|
|
1089
|
+
padding-right: number-to-pixel(6);
|
|
1292
1090
|
}
|
|
1293
1091
|
|
|
1294
1092
|
.mt6 {
|
|
1295
|
-
margin-top:
|
|
1296
|
-
margin-top: 0.375rem;
|
|
1093
|
+
margin-top: number-to-pixel(6);
|
|
1297
1094
|
}
|
|
1298
1095
|
|
|
1299
1096
|
.pt6 {
|
|
1300
|
-
padding-top:
|
|
1301
|
-
padding-top: 0.375rem;
|
|
1097
|
+
padding-top: number-to-pixel(6);
|
|
1302
1098
|
}
|
|
1303
1099
|
|
|
1304
1100
|
.ml6 {
|
|
1305
|
-
margin-left:
|
|
1306
|
-
margin-left: 0.375rem;
|
|
1101
|
+
margin-left: number-to-pixel(6);
|
|
1307
1102
|
}
|
|
1308
1103
|
|
|
1309
1104
|
.pl6 {
|
|
1310
|
-
padding-left:
|
|
1311
|
-
padding-left: 0.375rem;
|
|
1105
|
+
padding-left: number-to-pixel(6);
|
|
1312
1106
|
}
|
|
1313
1107
|
|
|
1314
1108
|
.mr6 {
|
|
1315
|
-
margin-right:
|
|
1316
|
-
margin-right: 0.375rem;
|
|
1109
|
+
margin-right: number-to-pixel(6);
|
|
1317
1110
|
}
|
|
1318
1111
|
|
|
1319
1112
|
.pr6 {
|
|
1320
|
-
padding-right:
|
|
1321
|
-
padding-right: 0.375rem;
|
|
1113
|
+
padding-right: number-to-pixel(6);
|
|
1322
1114
|
}
|
|
1323
1115
|
|
|
1324
1116
|
.mb6 {
|
|
1325
|
-
margin-bottom:
|
|
1326
|
-
margin-bottom: 0.375rem;
|
|
1117
|
+
margin-bottom: number-to-pixel(6);
|
|
1327
1118
|
}
|
|
1328
1119
|
|
|
1329
1120
|
.pb6 {
|
|
1330
|
-
padding-bottom:
|
|
1331
|
-
padding-bottom: 0.375rem;
|
|
1121
|
+
padding-bottom: number-to-pixel(6);
|
|
1332
1122
|
}
|
|
1333
1123
|
|
|
1334
1124
|
.m9 {
|
|
1335
|
-
margin:
|
|
1336
|
-
margin: 0.5625rem;
|
|
1125
|
+
margin: number-to-pixel(9);
|
|
1337
1126
|
}
|
|
1338
1127
|
|
|
1339
1128
|
.p9 {
|
|
1340
|
-
padding:
|
|
1341
|
-
padding: 0.5625rem;
|
|
1129
|
+
padding: number-to-pixel(9);
|
|
1342
1130
|
}
|
|
1343
1131
|
|
|
1344
1132
|
.my9 {
|
|
1345
|
-
margin-top:
|
|
1346
|
-
margin-
|
|
1347
|
-
margin-bottom: 9px;
|
|
1348
|
-
margin-bottom: 0.5625rem;
|
|
1133
|
+
margin-top: number-to-pixel(9);
|
|
1134
|
+
margin-bottom: number-to-pixel(9);
|
|
1349
1135
|
}
|
|
1350
1136
|
|
|
1351
1137
|
.py9 {
|
|
1352
|
-
padding-top:
|
|
1353
|
-
padding-
|
|
1354
|
-
padding-bottom: 9px;
|
|
1355
|
-
padding-bottom: 0.5625rem;
|
|
1138
|
+
padding-top: number-to-pixel(9);
|
|
1139
|
+
padding-bottom: number-to-pixel(9);
|
|
1356
1140
|
}
|
|
1357
1141
|
|
|
1358
1142
|
.mx9 {
|
|
1359
|
-
margin-left:
|
|
1360
|
-
margin-
|
|
1361
|
-
margin-right: 9px;
|
|
1362
|
-
margin-right: 0.5625rem;
|
|
1143
|
+
margin-left: number-to-pixel(9);
|
|
1144
|
+
margin-right: number-to-pixel(9);
|
|
1363
1145
|
}
|
|
1364
1146
|
|
|
1365
1147
|
.px9 {
|
|
1366
|
-
padding-left:
|
|
1367
|
-
padding-
|
|
1368
|
-
padding-right: 9px;
|
|
1369
|
-
padding-right: 0.5625rem;
|
|
1148
|
+
padding-left: number-to-pixel(9);
|
|
1149
|
+
padding-right: number-to-pixel(9);
|
|
1370
1150
|
}
|
|
1371
1151
|
|
|
1372
1152
|
.mt9 {
|
|
1373
|
-
margin-top:
|
|
1374
|
-
margin-top: 0.5625rem;
|
|
1153
|
+
margin-top: number-to-pixel(9);
|
|
1375
1154
|
}
|
|
1376
1155
|
|
|
1377
1156
|
.pt9 {
|
|
1378
|
-
padding-top:
|
|
1379
|
-
padding-top: 0.5625rem;
|
|
1157
|
+
padding-top: number-to-pixel(9);
|
|
1380
1158
|
}
|
|
1381
1159
|
|
|
1382
1160
|
.ml9 {
|
|
1383
|
-
margin-left:
|
|
1384
|
-
margin-left: 0.5625rem;
|
|
1161
|
+
margin-left: number-to-pixel(9);
|
|
1385
1162
|
}
|
|
1386
1163
|
|
|
1387
1164
|
.pl9 {
|
|
1388
|
-
padding-left:
|
|
1389
|
-
padding-left: 0.5625rem;
|
|
1165
|
+
padding-left: number-to-pixel(9);
|
|
1390
1166
|
}
|
|
1391
1167
|
|
|
1392
1168
|
.mr9 {
|
|
1393
|
-
margin-right:
|
|
1394
|
-
margin-right: 0.5625rem;
|
|
1169
|
+
margin-right: number-to-pixel(9);
|
|
1395
1170
|
}
|
|
1396
1171
|
|
|
1397
1172
|
.pr9 {
|
|
1398
|
-
padding-right:
|
|
1399
|
-
padding-right: 0.5625rem;
|
|
1173
|
+
padding-right: number-to-pixel(9);
|
|
1400
1174
|
}
|
|
1401
1175
|
|
|
1402
1176
|
.mb9 {
|
|
1403
|
-
margin-bottom:
|
|
1404
|
-
margin-bottom: 0.5625rem;
|
|
1177
|
+
margin-bottom: number-to-pixel(9);
|
|
1405
1178
|
}
|
|
1406
1179
|
|
|
1407
1180
|
.pb9 {
|
|
1408
|
-
padding-bottom:
|
|
1409
|
-
padding-bottom: 0.5625rem;
|
|
1181
|
+
padding-bottom: number-to-pixel(9);
|
|
1410
1182
|
}
|
|
1411
1183
|
|
|
1412
1184
|
.m12 {
|
|
1413
|
-
margin:
|
|
1414
|
-
margin: 0.75rem;
|
|
1185
|
+
margin: number-to-pixel(12);
|
|
1415
1186
|
}
|
|
1416
1187
|
|
|
1417
1188
|
.p12 {
|
|
1418
|
-
padding:
|
|
1419
|
-
padding: 0.75rem;
|
|
1189
|
+
padding: number-to-pixel(12);
|
|
1420
1190
|
}
|
|
1421
1191
|
|
|
1422
1192
|
.my12 {
|
|
1423
|
-
margin-top:
|
|
1424
|
-
margin-
|
|
1425
|
-
margin-bottom: 12px;
|
|
1426
|
-
margin-bottom: 0.75rem;
|
|
1193
|
+
margin-top: number-to-pixel(12);
|
|
1194
|
+
margin-bottom: number-to-pixel(12);
|
|
1427
1195
|
}
|
|
1428
1196
|
|
|
1429
1197
|
.py12 {
|
|
1430
|
-
padding-top:
|
|
1431
|
-
padding-
|
|
1432
|
-
padding-bottom: 12px;
|
|
1433
|
-
padding-bottom: 0.75rem;
|
|
1198
|
+
padding-top: number-to-pixel(12);
|
|
1199
|
+
padding-bottom: number-to-pixel(12);
|
|
1434
1200
|
}
|
|
1435
1201
|
|
|
1436
1202
|
.mx12 {
|
|
1437
|
-
margin-left:
|
|
1438
|
-
margin-
|
|
1439
|
-
margin-right: 12px;
|
|
1440
|
-
margin-right: 0.75rem;
|
|
1203
|
+
margin-left: number-to-pixel(12);
|
|
1204
|
+
margin-right: number-to-pixel(12);
|
|
1441
1205
|
}
|
|
1442
1206
|
|
|
1443
1207
|
.px12 {
|
|
1444
|
-
padding-left:
|
|
1445
|
-
padding-
|
|
1446
|
-
padding-right: 12px;
|
|
1447
|
-
padding-right: 0.75rem;
|
|
1208
|
+
padding-left: number-to-pixel(12);
|
|
1209
|
+
padding-right: number-to-pixel(12);
|
|
1448
1210
|
}
|
|
1449
1211
|
|
|
1450
1212
|
.mt12 {
|
|
1451
|
-
margin-top:
|
|
1452
|
-
margin-top: 0.75rem;
|
|
1213
|
+
margin-top: number-to-pixel(12);
|
|
1453
1214
|
}
|
|
1454
1215
|
|
|
1455
1216
|
.pt12 {
|
|
1456
|
-
padding-top:
|
|
1457
|
-
padding-top: 0.75rem;
|
|
1217
|
+
padding-top: number-to-pixel(12);
|
|
1458
1218
|
}
|
|
1459
1219
|
|
|
1460
1220
|
.ml12 {
|
|
1461
|
-
margin-left:
|
|
1462
|
-
margin-left: 0.75rem;
|
|
1221
|
+
margin-left: number-to-pixel(12);
|
|
1463
1222
|
}
|
|
1464
1223
|
|
|
1465
1224
|
.pl12 {
|
|
1466
|
-
padding-left:
|
|
1467
|
-
padding-left: 0.75rem;
|
|
1225
|
+
padding-left: number-to-pixel(12);
|
|
1468
1226
|
}
|
|
1469
1227
|
|
|
1470
1228
|
.mr12 {
|
|
1471
|
-
margin-right:
|
|
1472
|
-
margin-right: 0.75rem;
|
|
1229
|
+
margin-right: number-to-pixel(12);
|
|
1473
1230
|
}
|
|
1474
1231
|
|
|
1475
1232
|
.pr12 {
|
|
1476
|
-
padding-right:
|
|
1477
|
-
padding-right: 0.75rem;
|
|
1233
|
+
padding-right: number-to-pixel(12);
|
|
1478
1234
|
}
|
|
1479
1235
|
|
|
1480
1236
|
.mb12 {
|
|
1481
|
-
margin-bottom:
|
|
1482
|
-
margin-bottom: 0.75rem;
|
|
1237
|
+
margin-bottom: number-to-pixel(12);
|
|
1483
1238
|
}
|
|
1484
1239
|
|
|
1485
1240
|
.pb12 {
|
|
1486
|
-
padding-bottom:
|
|
1487
|
-
padding-bottom: 0.75rem;
|
|
1241
|
+
padding-bottom: number-to-pixel(12);
|
|
1488
1242
|
}
|
|
1489
1243
|
|
|
1490
1244
|
.m18 {
|
|
1491
|
-
margin:
|
|
1492
|
-
margin: 1.125rem;
|
|
1245
|
+
margin: number-to-pixel(18);
|
|
1493
1246
|
}
|
|
1494
1247
|
|
|
1495
1248
|
.p18 {
|
|
1496
|
-
padding:
|
|
1497
|
-
padding: 1.125rem;
|
|
1249
|
+
padding: number-to-pixel(18);
|
|
1498
1250
|
}
|
|
1499
1251
|
|
|
1500
1252
|
.my18 {
|
|
1501
|
-
margin-top:
|
|
1502
|
-
margin-
|
|
1503
|
-
margin-bottom: 18px;
|
|
1504
|
-
margin-bottom: 1.125rem;
|
|
1253
|
+
margin-top: number-to-pixel(18);
|
|
1254
|
+
margin-bottom: number-to-pixel(18);
|
|
1505
1255
|
}
|
|
1506
1256
|
|
|
1507
1257
|
.py18 {
|
|
1508
|
-
padding-top:
|
|
1509
|
-
padding-
|
|
1510
|
-
padding-bottom: 18px;
|
|
1511
|
-
padding-bottom: 1.125rem;
|
|
1258
|
+
padding-top: number-to-pixel(18);
|
|
1259
|
+
padding-bottom: number-to-pixel(18);
|
|
1512
1260
|
}
|
|
1513
1261
|
|
|
1514
1262
|
.mx18 {
|
|
1515
|
-
margin-left:
|
|
1516
|
-
margin-
|
|
1517
|
-
margin-right: 18px;
|
|
1518
|
-
margin-right: 1.125rem;
|
|
1263
|
+
margin-left: number-to-pixel(18);
|
|
1264
|
+
margin-right: number-to-pixel(18);
|
|
1519
1265
|
}
|
|
1520
1266
|
|
|
1521
1267
|
.px18 {
|
|
1522
|
-
padding-left:
|
|
1523
|
-
padding-
|
|
1524
|
-
padding-right: 18px;
|
|
1525
|
-
padding-right: 1.125rem;
|
|
1268
|
+
padding-left: number-to-pixel(18);
|
|
1269
|
+
padding-right: number-to-pixel(18);
|
|
1526
1270
|
}
|
|
1527
1271
|
|
|
1528
1272
|
.mt18 {
|
|
1529
|
-
margin-top:
|
|
1530
|
-
margin-top: 1.125rem;
|
|
1273
|
+
margin-top: number-to-pixel(18);
|
|
1531
1274
|
}
|
|
1532
1275
|
|
|
1533
1276
|
.pt18 {
|
|
1534
|
-
padding-top:
|
|
1535
|
-
padding-top: 1.125rem;
|
|
1277
|
+
padding-top: number-to-pixel(18);
|
|
1536
1278
|
}
|
|
1537
1279
|
|
|
1538
1280
|
.ml18 {
|
|
1539
|
-
margin-left:
|
|
1540
|
-
margin-left: 1.125rem;
|
|
1281
|
+
margin-left: number-to-pixel(18);
|
|
1541
1282
|
}
|
|
1542
1283
|
|
|
1543
1284
|
.pl18 {
|
|
1544
|
-
padding-left:
|
|
1545
|
-
padding-left: 1.125rem;
|
|
1285
|
+
padding-left: number-to-pixel(18);
|
|
1546
1286
|
}
|
|
1547
1287
|
|
|
1548
1288
|
.mr18 {
|
|
1549
|
-
margin-right:
|
|
1550
|
-
margin-right: 1.125rem;
|
|
1289
|
+
margin-right: number-to-pixel(18);
|
|
1551
1290
|
}
|
|
1552
1291
|
|
|
1553
1292
|
.pr18 {
|
|
1554
|
-
padding-right:
|
|
1555
|
-
padding-right: 1.125rem;
|
|
1293
|
+
padding-right: number-to-pixel(18);
|
|
1556
1294
|
}
|
|
1557
1295
|
|
|
1558
1296
|
.mb18 {
|
|
1559
|
-
margin-bottom:
|
|
1560
|
-
margin-bottom: 1.125rem;
|
|
1297
|
+
margin-bottom: number-to-pixel(18);
|
|
1561
1298
|
}
|
|
1562
1299
|
|
|
1563
1300
|
.pb18 {
|
|
1564
|
-
padding-bottom:
|
|
1565
|
-
padding-bottom: 1.125rem;
|
|
1301
|
+
padding-bottom: number-to-pixel(18);
|
|
1566
1302
|
}
|
|
1567
1303
|
|
|
1568
1304
|
.m24 {
|
|
1569
|
-
margin:
|
|
1570
|
-
margin: 1.5rem;
|
|
1305
|
+
margin: number-to-pixel(24);
|
|
1571
1306
|
}
|
|
1572
1307
|
|
|
1573
1308
|
.p24 {
|
|
1574
|
-
padding:
|
|
1575
|
-
padding: 1.5rem;
|
|
1309
|
+
padding: number-to-pixel(24);
|
|
1576
1310
|
}
|
|
1577
1311
|
|
|
1578
1312
|
.my24 {
|
|
1579
|
-
margin-top:
|
|
1580
|
-
margin-
|
|
1581
|
-
margin-bottom: 24px;
|
|
1582
|
-
margin-bottom: 1.5rem;
|
|
1313
|
+
margin-top: number-to-pixel(24);
|
|
1314
|
+
margin-bottom: number-to-pixel(24);
|
|
1583
1315
|
}
|
|
1584
1316
|
|
|
1585
1317
|
.py24 {
|
|
1586
|
-
padding-top:
|
|
1587
|
-
padding-
|
|
1588
|
-
padding-bottom: 24px;
|
|
1589
|
-
padding-bottom: 1.5rem;
|
|
1318
|
+
padding-top: number-to-pixel(24);
|
|
1319
|
+
padding-bottom: number-to-pixel(24);
|
|
1590
1320
|
}
|
|
1591
1321
|
|
|
1592
1322
|
.mx24 {
|
|
1593
|
-
margin-left:
|
|
1594
|
-
margin-
|
|
1595
|
-
margin-right: 24px;
|
|
1596
|
-
margin-right: 1.5rem;
|
|
1323
|
+
margin-left: number-to-pixel(24);
|
|
1324
|
+
margin-right: number-to-pixel(24);
|
|
1597
1325
|
}
|
|
1598
1326
|
|
|
1599
1327
|
.px24 {
|
|
1600
|
-
padding-left:
|
|
1601
|
-
padding-
|
|
1602
|
-
padding-right: 24px;
|
|
1603
|
-
padding-right: 1.5rem;
|
|
1328
|
+
padding-left: number-to-pixel(24);
|
|
1329
|
+
padding-right: number-to-pixel(24);
|
|
1604
1330
|
}
|
|
1605
1331
|
|
|
1606
1332
|
.mt24 {
|
|
1607
|
-
margin-top:
|
|
1608
|
-
margin-top: 1.5rem;
|
|
1333
|
+
margin-top: number-to-pixel(24);
|
|
1609
1334
|
}
|
|
1610
1335
|
|
|
1611
1336
|
.pt24 {
|
|
1612
|
-
padding-top:
|
|
1613
|
-
padding-top: 1.5rem;
|
|
1337
|
+
padding-top: number-to-pixel(24);
|
|
1614
1338
|
}
|
|
1615
1339
|
|
|
1616
1340
|
.ml24 {
|
|
1617
|
-
margin-left:
|
|
1618
|
-
margin-left: 1.5rem;
|
|
1341
|
+
margin-left: number-to-pixel(24);
|
|
1619
1342
|
}
|
|
1620
1343
|
|
|
1621
1344
|
.pl24 {
|
|
1622
|
-
padding-left:
|
|
1623
|
-
padding-left: 1.5rem;
|
|
1345
|
+
padding-left: number-to-pixel(24);
|
|
1624
1346
|
}
|
|
1625
1347
|
|
|
1626
1348
|
.mr24 {
|
|
1627
|
-
margin-right:
|
|
1628
|
-
margin-right: 1.5rem;
|
|
1349
|
+
margin-right: number-to-pixel(24);
|
|
1629
1350
|
}
|
|
1630
1351
|
|
|
1631
1352
|
.pr24 {
|
|
1632
|
-
padding-right:
|
|
1633
|
-
padding-right: 1.5rem;
|
|
1353
|
+
padding-right: number-to-pixel(24);
|
|
1634
1354
|
}
|
|
1635
1355
|
|
|
1636
1356
|
.mb24 {
|
|
1637
|
-
margin-bottom:
|
|
1638
|
-
margin-bottom: 1.5rem;
|
|
1357
|
+
margin-bottom: number-to-pixel(24);
|
|
1639
1358
|
}
|
|
1640
1359
|
|
|
1641
1360
|
.pb24 {
|
|
1642
|
-
padding-bottom:
|
|
1643
|
-
padding-bottom: 1.5rem;
|
|
1361
|
+
padding-bottom: number-to-pixel(24);
|
|
1644
1362
|
}
|
|
1645
1363
|
|
|
1646
1364
|
.m26 {
|
|
1647
|
-
margin:
|
|
1648
|
-
margin: 1.625rem;
|
|
1365
|
+
margin: number-to-pixel(26);
|
|
1649
1366
|
}
|
|
1650
1367
|
|
|
1651
1368
|
.p26 {
|
|
1652
|
-
padding:
|
|
1653
|
-
padding: 1.625rem;
|
|
1369
|
+
padding: number-to-pixel(26);
|
|
1654
1370
|
}
|
|
1655
1371
|
|
|
1656
1372
|
.my26 {
|
|
1657
|
-
margin-top:
|
|
1658
|
-
margin-
|
|
1659
|
-
margin-bottom: 26px;
|
|
1660
|
-
margin-bottom: 1.625rem;
|
|
1373
|
+
margin-top: number-to-pixel(26);
|
|
1374
|
+
margin-bottom: number-to-pixel(26);
|
|
1661
1375
|
}
|
|
1662
1376
|
|
|
1663
1377
|
.py26 {
|
|
1664
|
-
padding-top:
|
|
1665
|
-
padding-
|
|
1666
|
-
padding-bottom: 26px;
|
|
1667
|
-
padding-bottom: 1.625rem;
|
|
1378
|
+
padding-top: number-to-pixel(26);
|
|
1379
|
+
padding-bottom: number-to-pixel(26);
|
|
1668
1380
|
}
|
|
1669
1381
|
|
|
1670
1382
|
.mx26 {
|
|
1671
|
-
margin-left:
|
|
1672
|
-
margin-
|
|
1673
|
-
margin-right: 26px;
|
|
1674
|
-
margin-right: 1.625rem;
|
|
1383
|
+
margin-left: number-to-pixel(26);
|
|
1384
|
+
margin-right: number-to-pixel(26);
|
|
1675
1385
|
}
|
|
1676
1386
|
|
|
1677
1387
|
.px26 {
|
|
1678
|
-
padding-left:
|
|
1679
|
-
padding-
|
|
1680
|
-
padding-right: 26px;
|
|
1681
|
-
padding-right: 1.625rem;
|
|
1388
|
+
padding-left: number-to-pixel(26);
|
|
1389
|
+
padding-right: number-to-pixel(26);
|
|
1682
1390
|
}
|
|
1683
1391
|
|
|
1684
1392
|
.mt26 {
|
|
1685
|
-
margin-top:
|
|
1686
|
-
margin-top: 1.625rem;
|
|
1393
|
+
margin-top: number-to-pixel(26);
|
|
1687
1394
|
}
|
|
1688
1395
|
|
|
1689
1396
|
.pt26 {
|
|
1690
|
-
padding-top:
|
|
1691
|
-
padding-top: 1.625rem;
|
|
1397
|
+
padding-top: number-to-pixel(26);
|
|
1692
1398
|
}
|
|
1693
1399
|
|
|
1694
1400
|
.ml26 {
|
|
1695
|
-
margin-left:
|
|
1696
|
-
margin-left: 1.625rem;
|
|
1401
|
+
margin-left: number-to-pixel(26);
|
|
1697
1402
|
}
|
|
1698
1403
|
|
|
1699
1404
|
.pl26 {
|
|
1700
|
-
padding-left:
|
|
1701
|
-
padding-left: 1.625rem;
|
|
1405
|
+
padding-left: number-to-pixel(26);
|
|
1702
1406
|
}
|
|
1703
1407
|
|
|
1704
1408
|
.mr26 {
|
|
1705
|
-
margin-right:
|
|
1706
|
-
margin-right: 1.625rem;
|
|
1409
|
+
margin-right: number-to-pixel(26);
|
|
1707
1410
|
}
|
|
1708
1411
|
|
|
1709
1412
|
.pr26 {
|
|
1710
|
-
padding-right:
|
|
1711
|
-
padding-right: 1.625rem;
|
|
1413
|
+
padding-right: number-to-pixel(26);
|
|
1712
1414
|
}
|
|
1713
1415
|
|
|
1714
1416
|
.mb26 {
|
|
1715
|
-
margin-bottom:
|
|
1716
|
-
margin-bottom: 1.625rem;
|
|
1417
|
+
margin-bottom: number-to-pixel(26);
|
|
1717
1418
|
}
|
|
1718
1419
|
|
|
1719
1420
|
.pb26 {
|
|
1720
|
-
padding-bottom:
|
|
1721
|
-
padding-bottom: 1.625rem;
|
|
1421
|
+
padding-bottom: number-to-pixel(26);
|
|
1722
1422
|
}
|
|
1723
1423
|
|
|
1724
1424
|
.m48 {
|
|
1725
|
-
margin:
|
|
1726
|
-
margin: 3rem;
|
|
1425
|
+
margin: number-to-pixel(48);
|
|
1727
1426
|
}
|
|
1728
1427
|
|
|
1729
1428
|
.p48 {
|
|
1730
|
-
padding:
|
|
1731
|
-
padding: 3rem;
|
|
1429
|
+
padding: number-to-pixel(48);
|
|
1732
1430
|
}
|
|
1733
1431
|
|
|
1734
1432
|
.my48 {
|
|
1735
|
-
margin-top:
|
|
1736
|
-
margin-
|
|
1737
|
-
margin-bottom: 48px;
|
|
1738
|
-
margin-bottom: 3rem;
|
|
1433
|
+
margin-top: number-to-pixel(48);
|
|
1434
|
+
margin-bottom: number-to-pixel(48);
|
|
1739
1435
|
}
|
|
1740
1436
|
|
|
1741
1437
|
.py48 {
|
|
1742
|
-
padding-top:
|
|
1743
|
-
padding-
|
|
1744
|
-
padding-bottom: 48px;
|
|
1745
|
-
padding-bottom: 3rem;
|
|
1438
|
+
padding-top: number-to-pixel(48);
|
|
1439
|
+
padding-bottom: number-to-pixel(48);
|
|
1746
1440
|
}
|
|
1747
1441
|
|
|
1748
1442
|
.mx48 {
|
|
1749
|
-
margin-left:
|
|
1750
|
-
margin-
|
|
1751
|
-
margin-right: 48px;
|
|
1752
|
-
margin-right: 3rem;
|
|
1443
|
+
margin-left: number-to-pixel(48);
|
|
1444
|
+
margin-right: number-to-pixel(48);
|
|
1753
1445
|
}
|
|
1754
1446
|
|
|
1755
1447
|
.px48 {
|
|
1756
|
-
padding-left:
|
|
1757
|
-
padding-
|
|
1758
|
-
padding-right: 48px;
|
|
1759
|
-
padding-right: 3rem;
|
|
1448
|
+
padding-left: number-to-pixel(48);
|
|
1449
|
+
padding-right: number-to-pixel(48);
|
|
1760
1450
|
}
|
|
1761
1451
|
|
|
1762
1452
|
.mt48 {
|
|
1763
|
-
margin-top:
|
|
1764
|
-
margin-top: 3rem;
|
|
1453
|
+
margin-top: number-to-pixel(48);
|
|
1765
1454
|
}
|
|
1766
1455
|
|
|
1767
1456
|
.pt48 {
|
|
1768
|
-
padding-top:
|
|
1769
|
-
padding-top: 3rem;
|
|
1457
|
+
padding-top: number-to-pixel(48);
|
|
1770
1458
|
}
|
|
1771
1459
|
|
|
1772
1460
|
.ml48 {
|
|
1773
|
-
margin-left:
|
|
1774
|
-
margin-left: 3rem;
|
|
1461
|
+
margin-left: number-to-pixel(48);
|
|
1775
1462
|
}
|
|
1776
1463
|
|
|
1777
1464
|
.pl48 {
|
|
1778
|
-
padding-left:
|
|
1779
|
-
padding-left: 3rem;
|
|
1465
|
+
padding-left: number-to-pixel(48);
|
|
1780
1466
|
}
|
|
1781
1467
|
|
|
1782
1468
|
.mr48 {
|
|
1783
|
-
margin-right:
|
|
1784
|
-
margin-right: 3rem;
|
|
1469
|
+
margin-right: number-to-pixel(48);
|
|
1785
1470
|
}
|
|
1786
1471
|
|
|
1787
1472
|
.pr48 {
|
|
1788
|
-
padding-right:
|
|
1789
|
-
padding-right: 3rem;
|
|
1473
|
+
padding-right: number-to-pixel(48);
|
|
1790
1474
|
}
|
|
1791
1475
|
|
|
1792
1476
|
.mb48 {
|
|
1793
|
-
margin-bottom:
|
|
1794
|
-
margin-bottom: 3rem;
|
|
1477
|
+
margin-bottom: number-to-pixel(48);
|
|
1795
1478
|
}
|
|
1796
1479
|
|
|
1797
1480
|
.pb48 {
|
|
1798
|
-
padding-bottom:
|
|
1799
|
-
padding-bottom: 3rem;
|
|
1481
|
+
padding-bottom: number-to-pixel(48);
|
|
1800
1482
|
}
|
|
1801
1483
|
|
|
1484
|
+
/**
|
|
1485
|
+
*
|
|
1486
|
+
* !!! DO NOT REORDER -> Declarative loading
|
|
1487
|
+
*
|
|
1488
|
+
*/
|
|
1802
1489
|
.is-black {
|
|
1803
1490
|
color: #000000;
|
|
1804
1491
|
}
|
|
@@ -2364,414 +2051,236 @@ a:active:not(.is-underline) {
|
|
|
2364
2051
|
text-decoration: none;
|
|
2365
2052
|
}
|
|
2366
2053
|
*/
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
NEGATES
|
|
2370
|
-
|
|
2371
|
-
------------------------------------------------- */
|
|
2372
|
-
.no-events {
|
|
2373
|
-
pointer-events: none;
|
|
2054
|
+
::-webkit-search-decoration {
|
|
2055
|
+
display: none;
|
|
2374
2056
|
}
|
|
2375
2057
|
|
|
2376
|
-
|
|
2377
|
-
|
|
2058
|
+
::-webkit-file-upload-button {
|
|
2059
|
+
background: none;
|
|
2060
|
+
border: 0;
|
|
2061
|
+
padding: 0;
|
|
2378
2062
|
}
|
|
2379
2063
|
|
|
2380
|
-
|
|
2381
|
-
|
|
2064
|
+
::placeholder {
|
|
2065
|
+
font-style: italic;
|
|
2382
2066
|
}
|
|
2383
2067
|
|
|
2384
|
-
|
|
2385
|
-
|
|
2068
|
+
:disabled {
|
|
2069
|
+
cursor: default;
|
|
2386
2070
|
}
|
|
2387
2071
|
|
|
2388
|
-
.no-
|
|
2389
|
-
|
|
2072
|
+
.no-click,
|
|
2073
|
+
.not-allowed {
|
|
2074
|
+
cursor: not-allowed;
|
|
2390
2075
|
}
|
|
2391
2076
|
|
|
2392
|
-
|
|
2393
|
-
|
|
2077
|
+
input,
|
|
2078
|
+
label,
|
|
2079
|
+
select,
|
|
2080
|
+
button,
|
|
2081
|
+
textarea {
|
|
2082
|
+
background: none;
|
|
2083
|
+
border: 0;
|
|
2084
|
+
display: inline-block;
|
|
2085
|
+
line-height: 1;
|
|
2086
|
+
margin: 0;
|
|
2087
|
+
padding: 0;
|
|
2088
|
+
vertical-align: middle;
|
|
2089
|
+
white-space: normal;
|
|
2394
2090
|
}
|
|
2395
2091
|
|
|
2396
|
-
|
|
2397
|
-
|
|
2092
|
+
input,
|
|
2093
|
+
select,
|
|
2094
|
+
textarea {
|
|
2095
|
+
box-sizing: border-box;
|
|
2398
2096
|
}
|
|
2399
2097
|
|
|
2400
|
-
|
|
2401
|
-
|
|
2098
|
+
input[type=radio],
|
|
2099
|
+
input[type=checkbox] {
|
|
2100
|
+
cursor: pointer;
|
|
2101
|
+
height: 1.1rem;
|
|
2102
|
+
width: 1.1rem;
|
|
2402
2103
|
}
|
|
2403
2104
|
|
|
2404
|
-
|
|
2405
|
-
|
|
2105
|
+
input[type=search] {
|
|
2106
|
+
-webkit-appearance: textfield;
|
|
2107
|
+
-webkit-box-sizing: content-box;
|
|
2406
2108
|
}
|
|
2407
2109
|
|
|
2408
|
-
|
|
2409
|
-
|
|
2110
|
+
button,
|
|
2111
|
+
input[type=reset],
|
|
2112
|
+
input[type=button],
|
|
2113
|
+
input[type=submit] {
|
|
2114
|
+
overflow: visible;
|
|
2115
|
+
width: auto;
|
|
2410
2116
|
}
|
|
2411
2117
|
|
|
2412
|
-
|
|
2413
|
-
|
|
2118
|
+
textarea {
|
|
2119
|
+
line-height: 1.2em;
|
|
2120
|
+
min-height: 2.4rem;
|
|
2121
|
+
overflow: auto;
|
|
2122
|
+
resize: vertical;
|
|
2123
|
+
vertical-align: top;
|
|
2414
2124
|
}
|
|
2415
2125
|
|
|
2416
|
-
|
|
2417
|
-
|
|
2126
|
+
select[multiple] {
|
|
2127
|
+
vertical-align: top;
|
|
2418
2128
|
}
|
|
2419
2129
|
|
|
2420
|
-
|
|
2130
|
+
fieldset {
|
|
2131
|
+
border: 0;
|
|
2132
|
+
display: block;
|
|
2133
|
+
margin: 0;
|
|
2421
2134
|
padding: 0;
|
|
2135
|
+
width: 100%;
|
|
2422
2136
|
}
|
|
2423
2137
|
|
|
2424
|
-
|
|
2425
|
-
|
|
2138
|
+
h1 {
|
|
2139
|
+
font-size: 2.8rem;
|
|
2140
|
+
line-height: 1.1;
|
|
2426
2141
|
}
|
|
2427
2142
|
|
|
2428
|
-
|
|
2429
|
-
|
|
2143
|
+
h2 {
|
|
2144
|
+
font-size: 2.2rem;
|
|
2145
|
+
line-height: 1.1;
|
|
2430
2146
|
}
|
|
2431
2147
|
|
|
2432
|
-
|
|
2433
|
-
|
|
2148
|
+
h3 {
|
|
2149
|
+
font-size: 1.6rem;
|
|
2150
|
+
line-height: 1.1;
|
|
2434
2151
|
}
|
|
2435
2152
|
|
|
2436
|
-
|
|
2437
|
-
|
|
2153
|
+
h4 {
|
|
2154
|
+
font-size: 1.4rem;
|
|
2155
|
+
line-height: 1.1;
|
|
2438
2156
|
}
|
|
2439
2157
|
|
|
2440
|
-
|
|
2441
|
-
|
|
2158
|
+
h5 {
|
|
2159
|
+
font-size: 1.2rem;
|
|
2160
|
+
line-height: 1.1;
|
|
2442
2161
|
}
|
|
2443
2162
|
|
|
2444
|
-
|
|
2445
|
-
|
|
2163
|
+
h6 {
|
|
2164
|
+
font-size: 1.1rem;
|
|
2165
|
+
line-height: 1.1;
|
|
2446
2166
|
}
|
|
2447
2167
|
|
|
2448
|
-
|
|
2449
|
-
|
|
2168
|
+
table {
|
|
2169
|
+
font-size: 12px;
|
|
2170
|
+
border-collapse: collapse;
|
|
2171
|
+
border-spacing: 0;
|
|
2172
|
+
max-width: 100%;
|
|
2173
|
+
min-width: 100%;
|
|
2174
|
+
overflow: scroll;
|
|
2175
|
+
text-align: left;
|
|
2176
|
+
width: 100%;
|
|
2450
2177
|
}
|
|
2451
2178
|
|
|
2452
|
-
|
|
2453
|
-
|
|
2179
|
+
table th {
|
|
2180
|
+
font-weight: bold;
|
|
2454
2181
|
}
|
|
2455
2182
|
|
|
2456
|
-
|
|
2457
|
-
|
|
2183
|
+
table th,
|
|
2184
|
+
table td {
|
|
2185
|
+
padding: 12px 15px;
|
|
2186
|
+
display: table-cell;
|
|
2187
|
+
overflow: hidden;
|
|
2188
|
+
text-overflow: ellipsis;
|
|
2189
|
+
white-space: nowrap;
|
|
2458
2190
|
}
|
|
2459
2191
|
|
|
2460
|
-
|
|
2461
|
-
|
|
2192
|
+
table th:last-child,
|
|
2193
|
+
table td:last-child {
|
|
2194
|
+
border-right: 0;
|
|
2462
2195
|
}
|
|
2463
2196
|
|
|
2464
|
-
|
|
2465
|
-
|
|
2197
|
+
table caption {
|
|
2198
|
+
caption-side: top;
|
|
2466
2199
|
}
|
|
2467
2200
|
|
|
2468
|
-
|
|
2469
|
-
|
|
2201
|
+
a:link, a:visited, a:active {
|
|
2202
|
+
text-decoration: none;
|
|
2470
2203
|
}
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
user-select: none !important;
|
|
2204
|
+
a:hover {
|
|
2205
|
+
text-decoration: underline;
|
|
2474
2206
|
}
|
|
2475
2207
|
|
|
2476
|
-
.
|
|
2477
|
-
|
|
2478
|
-
a.no-underline:hover,
|
|
2479
|
-
a.no-underline:active,
|
|
2480
|
-
a.no-underline:visited {
|
|
2481
|
-
text-decoration: none;
|
|
2208
|
+
.flex-0 {
|
|
2209
|
+
flex: 0;
|
|
2482
2210
|
}
|
|
2483
2211
|
|
|
2484
|
-
.
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2212
|
+
.flex-1, .rows .row-100,
|
|
2213
|
+
.rows .row-80,
|
|
2214
|
+
.rows .row-75,
|
|
2215
|
+
.rows .row-66,
|
|
2216
|
+
.rows .row-50,
|
|
2217
|
+
.rows .row-40,
|
|
2218
|
+
.rows .row-33,
|
|
2219
|
+
.rows .row-25,
|
|
2220
|
+
.rows .row-20,
|
|
2221
|
+
.rows .row-1of1,
|
|
2222
|
+
.rows .row-2of2,
|
|
2223
|
+
.rows .row-3of3,
|
|
2224
|
+
.rows .row-4of4,
|
|
2225
|
+
.rows .row-5of5,
|
|
2226
|
+
.rows .row-4of5,
|
|
2227
|
+
.rows .row-3of4,
|
|
2228
|
+
.rows .row-2of3, .rows .row-60,
|
|
2229
|
+
.rows .row-3of5,
|
|
2230
|
+
.rows .row-1of2,
|
|
2231
|
+
.rows .row-2of4,
|
|
2232
|
+
.rows .row-2of5,
|
|
2233
|
+
.rows .row-1of3,
|
|
2234
|
+
.rows .row-1of4,
|
|
2235
|
+
.rows .row-1of5, .rows .row-0, .columns .col-100,
|
|
2236
|
+
.columns .col-80,
|
|
2237
|
+
.columns .col-75,
|
|
2238
|
+
.columns .col-66,
|
|
2239
|
+
.columns .col-50,
|
|
2240
|
+
.columns .col-40,
|
|
2241
|
+
.columns .col-33,
|
|
2242
|
+
.columns .col-25,
|
|
2243
|
+
.columns .col-20,
|
|
2244
|
+
.columns .col-1of1,
|
|
2245
|
+
.columns .col-2of2,
|
|
2246
|
+
.columns .col-3of3,
|
|
2247
|
+
.columns .col-4of4,
|
|
2248
|
+
.columns .col-5of5,
|
|
2249
|
+
.columns .col-4of5,
|
|
2250
|
+
.columns .col-3of4,
|
|
2251
|
+
.columns .col-2of3, .columns .col-60,
|
|
2252
|
+
.columns .col-3of5,
|
|
2253
|
+
.columns .col-1of2,
|
|
2254
|
+
.columns .col-2of4,
|
|
2255
|
+
.columns .col-2of5,
|
|
2256
|
+
.columns .col-1of3,
|
|
2257
|
+
.columns .col-1of4,
|
|
2258
|
+
.columns .col-1of5, .columns .col-0 {
|
|
2259
|
+
flex: 1;
|
|
2490
2260
|
}
|
|
2491
2261
|
|
|
2492
|
-
.
|
|
2493
|
-
|
|
2494
|
-
overflow: hidden;
|
|
2262
|
+
.flex-2 {
|
|
2263
|
+
flex: 2;
|
|
2495
2264
|
}
|
|
2496
2265
|
|
|
2497
|
-
.
|
|
2498
|
-
|
|
2499
|
-
overflow: hidden !important;
|
|
2266
|
+
.flex-3 {
|
|
2267
|
+
flex: 3;
|
|
2500
2268
|
}
|
|
2501
2269
|
|
|
2502
|
-
.
|
|
2503
|
-
|
|
2270
|
+
.flex-4 {
|
|
2271
|
+
flex: 4;
|
|
2504
2272
|
}
|
|
2505
2273
|
|
|
2506
|
-
.
|
|
2507
|
-
|
|
2274
|
+
.flex-5 {
|
|
2275
|
+
flex: 5;
|
|
2508
2276
|
}
|
|
2509
2277
|
|
|
2510
|
-
.
|
|
2511
|
-
|
|
2278
|
+
.flex-6 {
|
|
2279
|
+
flex: 6;
|
|
2512
2280
|
}
|
|
2513
2281
|
|
|
2514
|
-
.
|
|
2515
|
-
|
|
2516
|
-
}
|
|
2517
|
-
|
|
2518
|
-
.nowrap,
|
|
2519
|
-
.no-wrap,
|
|
2520
|
-
.text-overflow,
|
|
2521
|
-
.text-ellipsis {
|
|
2522
|
-
white-space: nowrap;
|
|
2523
|
-
}
|
|
2524
|
-
|
|
2525
|
-
.no-nowrap,
|
|
2526
|
-
.no-no-wrap {
|
|
2527
|
-
white-space: nowrap !important;
|
|
2528
|
-
}
|
|
2529
|
-
|
|
2530
|
-
.no-margin-padding {
|
|
2531
|
-
margin: 0;
|
|
2532
|
-
padding: 0;
|
|
2533
|
-
}
|
|
2534
|
-
|
|
2535
|
-
.is-circle {
|
|
2536
|
-
border-radius: 50%;
|
|
2537
|
-
}
|
|
2538
|
-
|
|
2539
|
-
.v-align-top {
|
|
2540
|
-
vertical-align: top;
|
|
2541
|
-
}
|
|
2542
|
-
|
|
2543
|
-
.v-align-middle {
|
|
2544
|
-
vertical-align: middle;
|
|
2545
|
-
}
|
|
2546
|
-
|
|
2547
|
-
.v-align-bottom {
|
|
2548
|
-
vertical-align: bottom;
|
|
2549
|
-
}
|
|
2550
|
-
|
|
2551
|
-
/* --------------------------------------------
|
|
2552
|
-
|
|
2553
|
-
TYPES
|
|
2554
|
-
|
|
2555
|
-
-------------------------------------------- */
|
|
2556
|
-
.is-flex {
|
|
2557
|
-
display: flex;
|
|
2558
|
-
}
|
|
2559
|
-
|
|
2560
|
-
.is-block {
|
|
2561
|
-
display: block;
|
|
2562
|
-
}
|
|
2563
|
-
|
|
2564
|
-
.is-inline {
|
|
2565
|
-
display: inline;
|
|
2566
|
-
}
|
|
2567
|
-
|
|
2568
|
-
.is-inflex,
|
|
2569
|
-
.is-inline-flex {
|
|
2570
|
-
display: inline-flex;
|
|
2571
|
-
}
|
|
2572
|
-
|
|
2573
|
-
.is-inblock,
|
|
2574
|
-
.is-inline-block {
|
|
2575
|
-
display: inline-block;
|
|
2576
|
-
}
|
|
2577
|
-
|
|
2578
|
-
/* --------------------------------------------
|
|
2579
|
-
|
|
2580
|
-
POSITIONING
|
|
2581
|
-
|
|
2582
|
-
-------------------------------------------- */
|
|
2583
|
-
.is-relative, .is-scrollbox-wrapper {
|
|
2584
|
-
position: relative;
|
|
2585
|
-
}
|
|
2586
|
-
|
|
2587
|
-
.is-absolute, .is-scrollbox, .is-scrollbox-x, .is-scrollbox-y, .is-overlay {
|
|
2588
|
-
position: absolute;
|
|
2589
|
-
}
|
|
2590
|
-
|
|
2591
|
-
.is-fixed, .is-popin,
|
|
2592
|
-
.is-popup,
|
|
2593
|
-
.is-fixed-overlay {
|
|
2594
|
-
position: fixed;
|
|
2595
|
-
}
|
|
2596
|
-
|
|
2597
|
-
.is-sticky {
|
|
2598
|
-
position: sticky;
|
|
2599
|
-
}
|
|
2600
|
-
|
|
2601
|
-
/* --------------------------------------------
|
|
2602
|
-
|
|
2603
|
-
ABSOLUTE PLACEMENTS
|
|
2604
|
-
|
|
2605
|
-
-------------------------------------------- */
|
|
2606
|
-
.is-zero-abs, .is-overlay, .is-popin,
|
|
2607
|
-
.is-popup,
|
|
2608
|
-
.is-fixed-overlay,
|
|
2609
|
-
.is-trbl {
|
|
2610
|
-
bottom: 0;
|
|
2611
|
-
left: 0;
|
|
2612
|
-
right: 0;
|
|
2613
|
-
top: 0;
|
|
2614
|
-
}
|
|
2615
|
-
|
|
2616
|
-
.is-top-left-abs,
|
|
2617
|
-
.is-top-left {
|
|
2618
|
-
left: 0;
|
|
2619
|
-
top: 0;
|
|
2620
|
-
}
|
|
2621
|
-
|
|
2622
|
-
.is-top-right-abs,
|
|
2623
|
-
.is-top-right {
|
|
2624
|
-
right: 0;
|
|
2625
|
-
top: 0;
|
|
2626
|
-
}
|
|
2627
|
-
|
|
2628
|
-
.is-bottom-right-abs,
|
|
2629
|
-
.is-bottom-right {
|
|
2630
|
-
bottom: 0;
|
|
2631
|
-
right: 0;
|
|
2632
|
-
}
|
|
2633
|
-
|
|
2634
|
-
.is-bottom-left-abs,
|
|
2635
|
-
.is-bottom-left {
|
|
2636
|
-
bottom: 0;
|
|
2637
|
-
left: 0;
|
|
2638
|
-
}
|
|
2639
|
-
|
|
2640
|
-
.is-top-to-bottom-abs,
|
|
2641
|
-
.is-top-to-bottom,
|
|
2642
|
-
.is-popin,
|
|
2643
|
-
.is-popup,
|
|
2644
|
-
.is-fixed-overlay {
|
|
2645
|
-
bottom: 0;
|
|
2646
|
-
top: 0;
|
|
2647
|
-
}
|
|
2648
|
-
|
|
2649
|
-
.is-left-to-right-abs,
|
|
2650
|
-
.is-left-to-right {
|
|
2651
|
-
left: 0;
|
|
2652
|
-
right: 0;
|
|
2653
|
-
}
|
|
2654
|
-
|
|
2655
|
-
/* --------------------------------------------
|
|
2656
|
-
|
|
2657
|
-
SIZES
|
|
2658
|
-
|
|
2659
|
-
-------------------------------------------- */
|
|
2660
|
-
.is-full-width, .is-full-layout, .is-scrollbox, .is-scrollbox-x, .is-scrollbox-y {
|
|
2661
|
-
max-width: 100%;
|
|
2662
|
-
min-width: 100%;
|
|
2663
|
-
width: 100%;
|
|
2664
|
-
}
|
|
2665
|
-
|
|
2666
|
-
.is-full-height, .is-full-layout, .is-scrollbox, .is-scrollbox-x, .is-scrollbox-y {
|
|
2667
|
-
height: 100%;
|
|
2668
|
-
max-height: 100%;
|
|
2669
|
-
min-height: 100%;
|
|
2670
|
-
}
|
|
2671
|
-
|
|
2672
|
-
.is-hidden, .hide::after, .hide::before, .hide {
|
|
2673
|
-
display: none;
|
|
2674
|
-
visibility: hidden;
|
|
2675
|
-
}
|
|
2676
|
-
|
|
2677
|
-
.is-visible {
|
|
2678
|
-
display: inherit;
|
|
2679
|
-
visibility: inherit;
|
|
2680
|
-
}
|
|
2681
|
-
|
|
2682
|
-
.hide {
|
|
2683
|
-
font-size: 0;
|
|
2684
|
-
height: 0;
|
|
2685
|
-
line-height: 0;
|
|
2686
|
-
max-height: 0;
|
|
2687
|
-
max-width: 0;
|
|
2688
|
-
min-height: 0;
|
|
2689
|
-
min-width: 0;
|
|
2690
|
-
width: 0;
|
|
2691
|
-
}
|
|
2692
|
-
.hide::before {
|
|
2693
|
-
content: none;
|
|
2694
|
-
}
|
|
2695
|
-
.hide::after {
|
|
2696
|
-
content: none;
|
|
2697
|
-
}
|
|
2698
|
-
|
|
2699
|
-
.flex-0 {
|
|
2700
|
-
flex: 0;
|
|
2701
|
-
}
|
|
2702
|
-
|
|
2703
|
-
.flex-1, .rows .row-0,
|
|
2704
|
-
.rows .row-1of5,
|
|
2705
|
-
.rows .row-1of4,
|
|
2706
|
-
.rows .row-1of3,
|
|
2707
|
-
.rows .row-2of5,
|
|
2708
|
-
.rows .row-1of2,
|
|
2709
|
-
.rows .row-2of4, .rows .row-60,
|
|
2710
|
-
.rows .row-3of5,
|
|
2711
|
-
.rows .row-2of3,
|
|
2712
|
-
.rows .row-3of4,
|
|
2713
|
-
.rows .row-4of5, .rows .row-100,
|
|
2714
|
-
.rows .row-80,
|
|
2715
|
-
.rows .row-75,
|
|
2716
|
-
.rows .row-66,
|
|
2717
|
-
.rows .row-50,
|
|
2718
|
-
.rows .row-40,
|
|
2719
|
-
.rows .row-33,
|
|
2720
|
-
.rows .row-25,
|
|
2721
|
-
.rows .row-20,
|
|
2722
|
-
.rows .row-1of1,
|
|
2723
|
-
.rows .row-2of2,
|
|
2724
|
-
.rows .row-3of3,
|
|
2725
|
-
.rows .row-4of4,
|
|
2726
|
-
.rows .row-5of5, .columns .col-0,
|
|
2727
|
-
.columns .col-1of5,
|
|
2728
|
-
.columns .col-1of4,
|
|
2729
|
-
.columns .col-1of3,
|
|
2730
|
-
.columns .col-2of5,
|
|
2731
|
-
.columns .col-1of2,
|
|
2732
|
-
.columns .col-2of4, .columns .col-60,
|
|
2733
|
-
.columns .col-3of5,
|
|
2734
|
-
.columns .col-2of3,
|
|
2735
|
-
.columns .col-3of4,
|
|
2736
|
-
.columns .col-4of5, .columns .col-100,
|
|
2737
|
-
.columns .col-80,
|
|
2738
|
-
.columns .col-75,
|
|
2739
|
-
.columns .col-66,
|
|
2740
|
-
.columns .col-50,
|
|
2741
|
-
.columns .col-40,
|
|
2742
|
-
.columns .col-33,
|
|
2743
|
-
.columns .col-25,
|
|
2744
|
-
.columns .col-20,
|
|
2745
|
-
.columns .col-1of1,
|
|
2746
|
-
.columns .col-2of2,
|
|
2747
|
-
.columns .col-3of3,
|
|
2748
|
-
.columns .col-4of4,
|
|
2749
|
-
.columns .col-5of5 {
|
|
2750
|
-
flex: 1;
|
|
2751
|
-
}
|
|
2752
|
-
|
|
2753
|
-
.flex-2 {
|
|
2754
|
-
flex: 2;
|
|
2755
|
-
}
|
|
2756
|
-
|
|
2757
|
-
.flex-3 {
|
|
2758
|
-
flex: 3;
|
|
2759
|
-
}
|
|
2760
|
-
|
|
2761
|
-
.flex-4 {
|
|
2762
|
-
flex: 4;
|
|
2763
|
-
}
|
|
2764
|
-
|
|
2765
|
-
.flex-5 {
|
|
2766
|
-
flex: 5;
|
|
2767
|
-
}
|
|
2768
|
-
|
|
2769
|
-
.flex-6 {
|
|
2770
|
-
flex: 6;
|
|
2771
|
-
}
|
|
2772
|
-
|
|
2773
|
-
.flex-7 {
|
|
2774
|
-
flex: 7;
|
|
2282
|
+
.flex-7 {
|
|
2283
|
+
flex: 7;
|
|
2775
2284
|
}
|
|
2776
2285
|
|
|
2777
2286
|
.flex-8 {
|
|
@@ -2878,615 +2387,793 @@ a.no-no-underline:visited {
|
|
|
2878
2387
|
align-self: center;
|
|
2879
2388
|
}
|
|
2880
2389
|
|
|
2881
|
-
.
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
.
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
.
|
|
2895
|
-
|
|
2390
|
+
.columns .col-100,
|
|
2391
|
+
.columns .col-80,
|
|
2392
|
+
.columns .col-75,
|
|
2393
|
+
.columns .col-66,
|
|
2394
|
+
.columns .col-50,
|
|
2395
|
+
.columns .col-40,
|
|
2396
|
+
.columns .col-33,
|
|
2397
|
+
.columns .col-25,
|
|
2398
|
+
.columns .col-20,
|
|
2399
|
+
.columns .col-1of1,
|
|
2400
|
+
.columns .col-2of2,
|
|
2401
|
+
.columns .col-3of3,
|
|
2402
|
+
.columns .col-4of4,
|
|
2403
|
+
.columns .col-5of5 {
|
|
2404
|
+
max-width: 100%;
|
|
2405
|
+
min-width: 100%;
|
|
2406
|
+
width: 100%;
|
|
2896
2407
|
}
|
|
2897
2408
|
|
|
2898
|
-
.
|
|
2899
|
-
|
|
2409
|
+
.columns .col-80,
|
|
2410
|
+
.columns .col-4of5 {
|
|
2411
|
+
max-width: 78.5%;
|
|
2412
|
+
min-width: 78.5%;
|
|
2413
|
+
width: 78.5%;
|
|
2900
2414
|
}
|
|
2901
2415
|
|
|
2902
|
-
.
|
|
2903
|
-
|
|
2416
|
+
.columns .col-75,
|
|
2417
|
+
.columns .col-3of4 {
|
|
2418
|
+
max-width: 73.5%;
|
|
2419
|
+
min-width: 73.5%;
|
|
2420
|
+
width: 73.5%;
|
|
2904
2421
|
}
|
|
2905
2422
|
|
|
2906
|
-
.
|
|
2907
|
-
|
|
2423
|
+
.columns .col-66,
|
|
2424
|
+
.columns .col-2of3 {
|
|
2425
|
+
max-width: 65.5%;
|
|
2426
|
+
min-width: 65.5%;
|
|
2427
|
+
width: 65.5%;
|
|
2908
2428
|
}
|
|
2909
2429
|
|
|
2910
|
-
.
|
|
2911
|
-
|
|
2430
|
+
.columns .col-60,
|
|
2431
|
+
.columns .col-3of5 {
|
|
2432
|
+
max-width: 59.5%;
|
|
2433
|
+
min-width: 59.5%;
|
|
2434
|
+
width: 59.5%;
|
|
2912
2435
|
}
|
|
2913
2436
|
|
|
2914
|
-
.
|
|
2915
|
-
|
|
2437
|
+
.columns .col-50,
|
|
2438
|
+
.columns .col-1of2,
|
|
2439
|
+
.columns .col-2of4 {
|
|
2440
|
+
max-width: 47.5%;
|
|
2441
|
+
min-width: 47.5%;
|
|
2442
|
+
width: 47.5%;
|
|
2916
2443
|
}
|
|
2917
2444
|
|
|
2918
|
-
.
|
|
2919
|
-
|
|
2920
|
-
|
|
2445
|
+
.columns .col-40,
|
|
2446
|
+
.columns .col-2of5 {
|
|
2447
|
+
max-width: 38%;
|
|
2448
|
+
min-width: 38%;
|
|
2449
|
+
width: 38%;
|
|
2921
2450
|
}
|
|
2922
2451
|
|
|
2923
|
-
.
|
|
2924
|
-
|
|
2925
|
-
|
|
2452
|
+
.columns .col-33,
|
|
2453
|
+
.columns .col-1of3 {
|
|
2454
|
+
max-width: 31%;
|
|
2455
|
+
min-width: 31%;
|
|
2456
|
+
width: 31%;
|
|
2926
2457
|
}
|
|
2927
2458
|
|
|
2928
|
-
.
|
|
2929
|
-
|
|
2930
|
-
|
|
2459
|
+
.columns .col-25,
|
|
2460
|
+
.columns .col-1of4 {
|
|
2461
|
+
max-width: 23%;
|
|
2462
|
+
min-width: 23%;
|
|
2463
|
+
width: 23%;
|
|
2931
2464
|
}
|
|
2932
2465
|
|
|
2933
|
-
.
|
|
2934
|
-
|
|
2935
|
-
|
|
2466
|
+
.columns .col-20,
|
|
2467
|
+
.columns .col-1of5 {
|
|
2468
|
+
max-width: 18%;
|
|
2469
|
+
min-width: 18%;
|
|
2470
|
+
width: 18%;
|
|
2936
2471
|
}
|
|
2937
2472
|
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
---------------------------------------- */
|
|
2943
|
-
.is-scrollbox, .is-scrollbox-x, .is-scrollbox-y {
|
|
2944
|
-
overflow-x: auto;
|
|
2945
|
-
overflow-y: auto;
|
|
2473
|
+
.columns .col-0 {
|
|
2474
|
+
max-width: 0%;
|
|
2475
|
+
min-width: 0%;
|
|
2476
|
+
width: 0%;
|
|
2946
2477
|
}
|
|
2947
2478
|
|
|
2948
|
-
.
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2479
|
+
.rows .row-100,
|
|
2480
|
+
.rows .row-80,
|
|
2481
|
+
.rows .row-75,
|
|
2482
|
+
.rows .row-66,
|
|
2483
|
+
.rows .row-50,
|
|
2484
|
+
.rows .row-40,
|
|
2485
|
+
.rows .row-33,
|
|
2486
|
+
.rows .row-25,
|
|
2487
|
+
.rows .row-20,
|
|
2488
|
+
.rows .row-1of1,
|
|
2489
|
+
.rows .row-2of2,
|
|
2490
|
+
.rows .row-3of3,
|
|
2491
|
+
.rows .row-4of4,
|
|
2492
|
+
.rows .row-5of5 {
|
|
2493
|
+
height: 100%;
|
|
2494
|
+
max-height: 100%;
|
|
2495
|
+
min-height: 100%;
|
|
2952
2496
|
}
|
|
2953
2497
|
|
|
2954
|
-
.
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2498
|
+
.rows .row-80,
|
|
2499
|
+
.rows .row-4of5 {
|
|
2500
|
+
height: 78.5%;
|
|
2501
|
+
max-height: 78.5%;
|
|
2502
|
+
min-height: 78.5%;
|
|
2958
2503
|
}
|
|
2959
2504
|
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
.text-left {
|
|
2966
|
-
text-align: left;
|
|
2505
|
+
.rows .row-75,
|
|
2506
|
+
.rows .row-3of4 {
|
|
2507
|
+
height: 73.5%;
|
|
2508
|
+
max-height: 73.5%;
|
|
2509
|
+
min-height: 73.5%;
|
|
2967
2510
|
}
|
|
2968
2511
|
|
|
2969
|
-
.
|
|
2970
|
-
|
|
2512
|
+
.rows .row-66,
|
|
2513
|
+
.rows .row-2of3 {
|
|
2514
|
+
height: 65.5%;
|
|
2515
|
+
max-height: 65.5%;
|
|
2516
|
+
min-height: 65.5%;
|
|
2971
2517
|
}
|
|
2972
2518
|
|
|
2973
|
-
.
|
|
2974
|
-
|
|
2519
|
+
.rows .row-60,
|
|
2520
|
+
.rows .row-3of5 {
|
|
2521
|
+
height: 59.5%;
|
|
2522
|
+
max-height: 59.5%;
|
|
2523
|
+
min-height: 59.5%;
|
|
2975
2524
|
}
|
|
2976
2525
|
|
|
2977
|
-
.
|
|
2978
|
-
|
|
2526
|
+
.rows .row-50,
|
|
2527
|
+
.rows .row-1of2,
|
|
2528
|
+
.rows .row-2of4 {
|
|
2529
|
+
height: 47.5%;
|
|
2530
|
+
max-height: 47.5%;
|
|
2531
|
+
min-height: 47.5%;
|
|
2979
2532
|
}
|
|
2980
2533
|
|
|
2981
|
-
.
|
|
2982
|
-
.
|
|
2983
|
-
|
|
2534
|
+
.rows .row-40,
|
|
2535
|
+
.rows .row-2of5 {
|
|
2536
|
+
height: 38%;
|
|
2537
|
+
max-height: 38%;
|
|
2538
|
+
min-height: 38%;
|
|
2984
2539
|
}
|
|
2985
2540
|
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
.is-thin {
|
|
2992
|
-
font-weight: 100;
|
|
2541
|
+
.rows .row-33,
|
|
2542
|
+
.rows .row-1of3 {
|
|
2543
|
+
height: 31%;
|
|
2544
|
+
max-height: 31%;
|
|
2545
|
+
min-height: 31%;
|
|
2993
2546
|
}
|
|
2994
2547
|
|
|
2995
|
-
.
|
|
2996
|
-
|
|
2548
|
+
.rows .row-25,
|
|
2549
|
+
.rows .row-1of4 {
|
|
2550
|
+
height: 23%;
|
|
2551
|
+
max-height: 23%;
|
|
2552
|
+
min-height: 23%;
|
|
2997
2553
|
}
|
|
2998
2554
|
|
|
2999
|
-
.
|
|
3000
|
-
.
|
|
3001
|
-
|
|
2555
|
+
.rows .row-20,
|
|
2556
|
+
.rows .row-1of5 {
|
|
2557
|
+
height: 18%;
|
|
2558
|
+
max-height: 18%;
|
|
2559
|
+
min-height: 18%;
|
|
3002
2560
|
}
|
|
3003
2561
|
|
|
3004
|
-
.
|
|
3005
|
-
|
|
2562
|
+
.rows .row-0 {
|
|
2563
|
+
height: 0%;
|
|
2564
|
+
max-height: 0%;
|
|
2565
|
+
min-height: 0%;
|
|
3006
2566
|
}
|
|
3007
2567
|
|
|
3008
|
-
.
|
|
3009
|
-
|
|
2568
|
+
.wrap-1 > *,
|
|
2569
|
+
.wrap-2 > *,
|
|
2570
|
+
.wrap-3 > *,
|
|
2571
|
+
.wrap-4 > *,
|
|
2572
|
+
.wrap-5 > * {
|
|
2573
|
+
margin-bottom: 12px;
|
|
2574
|
+
flex: 0 0 auto;
|
|
3010
2575
|
}
|
|
3011
2576
|
|
|
3012
|
-
.
|
|
3013
|
-
|
|
2577
|
+
.wrap-1 > * {
|
|
2578
|
+
width: 100%;
|
|
3014
2579
|
}
|
|
3015
2580
|
|
|
3016
|
-
.
|
|
3017
|
-
|
|
3018
|
-
font-weight: 900;
|
|
2581
|
+
.wrap-2 > * {
|
|
2582
|
+
width: 50%;
|
|
3019
2583
|
}
|
|
3020
2584
|
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
Font Style
|
|
3024
|
-
|
|
3025
|
-
---------------------------- */
|
|
3026
|
-
.is-italic {
|
|
3027
|
-
font-style: italic;
|
|
2585
|
+
.wrap-3 > * {
|
|
2586
|
+
width: 33.333333%;
|
|
3028
2587
|
}
|
|
3029
2588
|
|
|
3030
|
-
.
|
|
3031
|
-
|
|
2589
|
+
.wrap-4 > * {
|
|
2590
|
+
width: 25%;
|
|
3032
2591
|
}
|
|
3033
2592
|
|
|
3034
|
-
.
|
|
3035
|
-
|
|
2593
|
+
.wrap-5 > * {
|
|
2594
|
+
width: 12.5%;
|
|
3036
2595
|
}
|
|
3037
2596
|
|
|
3038
|
-
.
|
|
3039
|
-
|
|
2597
|
+
.square-grid {
|
|
2598
|
+
display: flex;
|
|
2599
|
+
flex-direction: row;
|
|
2600
|
+
flex-wrap: wrap;
|
|
2601
|
+
justify-content: flex-start;
|
|
3040
2602
|
}
|
|
3041
2603
|
|
|
3042
|
-
.
|
|
3043
|
-
|
|
2604
|
+
.square-grid-2 {
|
|
2605
|
+
margin: 0 1% 1% 0;
|
|
2606
|
+
max-width: 49%;
|
|
2607
|
+
min-width: 49%;
|
|
2608
|
+
width: 49%;
|
|
3044
2609
|
}
|
|
3045
2610
|
|
|
3046
|
-
.
|
|
3047
|
-
|
|
2611
|
+
.square-grid-3 > * {
|
|
2612
|
+
margin: 0 1% 1% 0;
|
|
2613
|
+
max-width: 32%;
|
|
2614
|
+
min-width: 32%;
|
|
2615
|
+
width: 32%;
|
|
3048
2616
|
}
|
|
3049
2617
|
|
|
3050
|
-
.
|
|
3051
|
-
|
|
2618
|
+
.square-grid-4 > * {
|
|
2619
|
+
margin: 0 1% 1% 0;
|
|
2620
|
+
max-width: 24%;
|
|
2621
|
+
min-width: 24%;
|
|
2622
|
+
width: 24%;
|
|
3052
2623
|
}
|
|
3053
2624
|
|
|
3054
|
-
.
|
|
3055
|
-
|
|
2625
|
+
.square-grid-5 > * {
|
|
2626
|
+
margin: 0 1% 1% 0;
|
|
2627
|
+
max-width: 19%;
|
|
2628
|
+
min-width: 19%;
|
|
2629
|
+
width: 19%;
|
|
3056
2630
|
}
|
|
3057
2631
|
|
|
3058
|
-
|
|
3059
|
-
|
|
2632
|
+
/* -------------------------------------------------
|
|
2633
|
+
|
|
2634
|
+
NEGATES
|
|
2635
|
+
|
|
2636
|
+
------------------------------------------------- */
|
|
2637
|
+
.no-events {
|
|
2638
|
+
pointer-events: none;
|
|
3060
2639
|
}
|
|
3061
2640
|
|
|
3062
|
-
.
|
|
3063
|
-
|
|
3064
|
-
margin-right: auto;
|
|
2641
|
+
.no-no-events {
|
|
2642
|
+
pointer-events: none !important;
|
|
3065
2643
|
}
|
|
3066
2644
|
|
|
3067
|
-
.
|
|
3068
|
-
|
|
3069
|
-
margin-right: auto;
|
|
2645
|
+
.no-flex-grow {
|
|
2646
|
+
flex: 0 1;
|
|
3070
2647
|
}
|
|
3071
2648
|
|
|
3072
|
-
.
|
|
3073
|
-
|
|
3074
|
-
cursor: pointer;
|
|
3075
|
-
cursor: default;
|
|
2649
|
+
.no-no-flex-grow {
|
|
2650
|
+
flex: 0 1 !important;
|
|
3076
2651
|
}
|
|
3077
2652
|
|
|
3078
|
-
.
|
|
3079
|
-
|
|
3080
|
-
cursor: none;
|
|
2653
|
+
.no-flex-shrink {
|
|
2654
|
+
flex: 1 0;
|
|
3081
2655
|
}
|
|
3082
2656
|
|
|
3083
|
-
.
|
|
3084
|
-
|
|
3085
|
-
cursor: default;
|
|
2657
|
+
.no-no-flex-shrink {
|
|
2658
|
+
flex: 1 0 !important;
|
|
3086
2659
|
}
|
|
3087
2660
|
|
|
3088
|
-
.
|
|
3089
|
-
|
|
3090
|
-
cursor: default;
|
|
2661
|
+
.no-float {
|
|
2662
|
+
float: none;
|
|
3091
2663
|
}
|
|
3092
2664
|
|
|
3093
|
-
|
|
3094
|
-
|
|
2665
|
+
.no-no-float {
|
|
2666
|
+
float: none !important;
|
|
3095
2667
|
}
|
|
3096
2668
|
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
2669
|
+
.no-flex {
|
|
2670
|
+
flex: none;
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
.no-no-flex {
|
|
2674
|
+
flex: none !important;
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
.no-margin {
|
|
2678
|
+
margin: 0;
|
|
2679
|
+
}
|
|
2680
|
+
|
|
2681
|
+
.no-no-margin {
|
|
2682
|
+
margin: 0 !important;
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
.no-padding {
|
|
3100
2686
|
padding: 0;
|
|
3101
2687
|
}
|
|
3102
2688
|
|
|
3103
|
-
|
|
3104
|
-
|
|
2689
|
+
.no-no-padding {
|
|
2690
|
+
padding: 0 !important;
|
|
3105
2691
|
}
|
|
3106
2692
|
|
|
3107
|
-
|
|
2693
|
+
.no-border {
|
|
2694
|
+
border: 0;
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2697
|
+
.no-no-border {
|
|
2698
|
+
border: 0 !important;
|
|
2699
|
+
}
|
|
2700
|
+
|
|
2701
|
+
.no-radius {
|
|
2702
|
+
border-radius: 0;
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2705
|
+
.no-no-radius {
|
|
2706
|
+
border-radius: 0 !important;
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2709
|
+
.no-background {
|
|
2710
|
+
background-color: transparent;
|
|
2711
|
+
}
|
|
2712
|
+
|
|
2713
|
+
.no-no-background {
|
|
2714
|
+
background: none !important;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
.no-outline {
|
|
2718
|
+
outline: none;
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
.no-no-outline {
|
|
2722
|
+
outline: none !important;
|
|
2723
|
+
}
|
|
2724
|
+
|
|
2725
|
+
.no-pointer {
|
|
3108
2726
|
cursor: default;
|
|
3109
2727
|
}
|
|
3110
2728
|
|
|
3111
|
-
.no-
|
|
3112
|
-
|
|
3113
|
-
cursor: not-allowed;
|
|
2729
|
+
.no-no-pointer {
|
|
2730
|
+
cursor: default !important;
|
|
3114
2731
|
}
|
|
3115
2732
|
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
2733
|
+
.no-select {
|
|
2734
|
+
user-select: none;
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2737
|
+
.no-no-select {
|
|
2738
|
+
user-select: none !important;
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
.no-underline,
|
|
2742
|
+
a.no-underline,
|
|
2743
|
+
a.no-underline:hover,
|
|
2744
|
+
a.no-underline:active,
|
|
2745
|
+
a.no-underline:visited {
|
|
2746
|
+
text-decoration: none;
|
|
2747
|
+
}
|
|
2748
|
+
|
|
2749
|
+
.no-no-underline,
|
|
2750
|
+
a.no-no-underline,
|
|
2751
|
+
a.no-no-underline:hover,
|
|
2752
|
+
a.no-no-underline:active,
|
|
2753
|
+
a.no-no-underline:visited {
|
|
2754
|
+
text-decoration: none !important;
|
|
2755
|
+
}
|
|
2756
|
+
|
|
2757
|
+
.no-scroll,
|
|
2758
|
+
.no-overflow {
|
|
2759
|
+
overflow: hidden;
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
.no-no-overflow,
|
|
2763
|
+
.no-no-scroll {
|
|
2764
|
+
overflow: hidden !important;
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2767
|
+
.no-scroll-x {
|
|
2768
|
+
overflow-x: hidden;
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
.no-no-scroll-x {
|
|
2772
|
+
overflow-x: hidden !important;
|
|
2773
|
+
}
|
|
2774
|
+
|
|
2775
|
+
.no-scroll-y {
|
|
2776
|
+
overflow-y: hidden;
|
|
2777
|
+
}
|
|
2778
|
+
|
|
2779
|
+
.no-no-scroll-y {
|
|
2780
|
+
overflow-y: hidden !important;
|
|
2781
|
+
}
|
|
2782
|
+
|
|
2783
|
+
.nowrap,
|
|
2784
|
+
.no-wrap {
|
|
2785
|
+
white-space: nowrap;
|
|
2786
|
+
}
|
|
2787
|
+
|
|
2788
|
+
.no-nowrap,
|
|
2789
|
+
.no-no-wrap {
|
|
2790
|
+
white-space: nowrap !important;
|
|
2791
|
+
}
|
|
2792
|
+
|
|
2793
|
+
.no-margin-padding {
|
|
3125
2794
|
margin: 0;
|
|
3126
2795
|
padding: 0;
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2798
|
+
.is-circle {
|
|
2799
|
+
border-radius: 50%;
|
|
2800
|
+
}
|
|
2801
|
+
|
|
2802
|
+
.v-align-top {
|
|
2803
|
+
vertical-align: top;
|
|
2804
|
+
}
|
|
2805
|
+
|
|
2806
|
+
.v-align-middle {
|
|
3127
2807
|
vertical-align: middle;
|
|
3128
|
-
white-space: normal;
|
|
3129
2808
|
}
|
|
3130
2809
|
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
textarea {
|
|
3134
|
-
box-sizing: border-box;
|
|
2810
|
+
.v-align-bottom {
|
|
2811
|
+
vertical-align: bottom;
|
|
3135
2812
|
}
|
|
3136
2813
|
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
2814
|
+
/* --------------------------------------------
|
|
2815
|
+
|
|
2816
|
+
TYPES
|
|
2817
|
+
|
|
2818
|
+
-------------------------------------------- */
|
|
2819
|
+
.is-flex {
|
|
2820
|
+
display: flex;
|
|
3142
2821
|
}
|
|
3143
2822
|
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
-webkit-box-sizing: content-box;
|
|
2823
|
+
.is-block {
|
|
2824
|
+
display: block;
|
|
3147
2825
|
}
|
|
3148
2826
|
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
input[type=button],
|
|
3152
|
-
input[type=submit] {
|
|
3153
|
-
overflow: visible;
|
|
3154
|
-
width: auto;
|
|
2827
|
+
.is-inline {
|
|
2828
|
+
display: inline;
|
|
3155
2829
|
}
|
|
3156
2830
|
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
overflow: auto;
|
|
3161
|
-
resize: vertical;
|
|
3162
|
-
vertical-align: top;
|
|
2831
|
+
.is-inflex,
|
|
2832
|
+
.is-inline-flex {
|
|
2833
|
+
display: inline-flex;
|
|
3163
2834
|
}
|
|
3164
2835
|
|
|
3165
|
-
|
|
3166
|
-
|
|
2836
|
+
.is-inblock,
|
|
2837
|
+
.is-inline-block {
|
|
2838
|
+
display: inline-block;
|
|
3167
2839
|
}
|
|
3168
2840
|
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
2841
|
+
/* --------------------------------------------
|
|
2842
|
+
|
|
2843
|
+
POSITIONING
|
|
2844
|
+
|
|
2845
|
+
-------------------------------------------- */
|
|
2846
|
+
.is-relative, .is-scrollbox-wrapper {
|
|
2847
|
+
position: relative;
|
|
3175
2848
|
}
|
|
3176
2849
|
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
line-height: 1.1;
|
|
2850
|
+
.is-absolute, .is-scrollbox, .is-scrollbox-y, .is-scrollbox-x, .is-overlay {
|
|
2851
|
+
position: absolute;
|
|
3180
2852
|
}
|
|
3181
2853
|
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
2854
|
+
.is-fixed, .is-popin,
|
|
2855
|
+
.is-popup,
|
|
2856
|
+
.is-fixed-overlay {
|
|
2857
|
+
position: fixed;
|
|
3185
2858
|
}
|
|
3186
2859
|
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
line-height: 1.1;
|
|
2860
|
+
.is-sticky {
|
|
2861
|
+
position: sticky;
|
|
3190
2862
|
}
|
|
3191
2863
|
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
2864
|
+
/* --------------------------------------------
|
|
2865
|
+
|
|
2866
|
+
ABSOLUTE PLACEMENTS
|
|
2867
|
+
|
|
2868
|
+
-------------------------------------------- */
|
|
2869
|
+
.is-zero-abs, .is-overlay, .is-popin,
|
|
2870
|
+
.is-popup,
|
|
2871
|
+
.is-fixed-overlay,
|
|
2872
|
+
.is-trbl {
|
|
2873
|
+
bottom: 0;
|
|
2874
|
+
left: 0;
|
|
2875
|
+
right: 0;
|
|
2876
|
+
top: 0;
|
|
3195
2877
|
}
|
|
3196
2878
|
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
2879
|
+
.is-top-left-abs,
|
|
2880
|
+
.is-top-left {
|
|
2881
|
+
left: 0;
|
|
2882
|
+
top: 0;
|
|
3200
2883
|
}
|
|
3201
2884
|
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
2885
|
+
.is-top-right-abs,
|
|
2886
|
+
.is-top-right {
|
|
2887
|
+
right: 0;
|
|
2888
|
+
top: 0;
|
|
3205
2889
|
}
|
|
3206
2890
|
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
2891
|
+
.is-bottom-right-abs,
|
|
2892
|
+
.is-bottom-right {
|
|
2893
|
+
bottom: 0;
|
|
2894
|
+
right: 0;
|
|
2895
|
+
}
|
|
2896
|
+
|
|
2897
|
+
.is-bottom-left-abs,
|
|
2898
|
+
.is-bottom-left {
|
|
2899
|
+
bottom: 0;
|
|
2900
|
+
left: 0;
|
|
2901
|
+
}
|
|
2902
|
+
|
|
2903
|
+
.is-top-to-bottom-abs,
|
|
2904
|
+
.is-top-to-bottom,
|
|
2905
|
+
.is-popin,
|
|
2906
|
+
.is-popup,
|
|
2907
|
+
.is-fixed-overlay {
|
|
2908
|
+
bottom: 0;
|
|
2909
|
+
top: 0;
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2912
|
+
.is-left-to-right-abs,
|
|
2913
|
+
.is-left-to-right {
|
|
2914
|
+
left: 0;
|
|
2915
|
+
right: 0;
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
/* --------------------------------------------
|
|
2919
|
+
|
|
2920
|
+
SIZES
|
|
2921
|
+
|
|
2922
|
+
-------------------------------------------- */
|
|
2923
|
+
.is-full-width, .is-full-layout, .is-scrollbox, .is-scrollbox-y, .is-scrollbox-x {
|
|
3212
2924
|
max-width: 100%;
|
|
3213
2925
|
min-width: 100%;
|
|
3214
|
-
overflow: scroll;
|
|
3215
|
-
text-align: left;
|
|
3216
2926
|
width: 100%;
|
|
3217
2927
|
}
|
|
3218
2928
|
|
|
3219
|
-
|
|
3220
|
-
|
|
2929
|
+
.is-full-height, .is-full-layout, .is-scrollbox, .is-scrollbox-y, .is-scrollbox-x {
|
|
2930
|
+
height: 100%;
|
|
2931
|
+
max-height: 100%;
|
|
2932
|
+
min-height: 100%;
|
|
3221
2933
|
}
|
|
3222
2934
|
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
2935
|
+
.is-hidden, .hide::after, .hide::before, .hide {
|
|
2936
|
+
display: none;
|
|
2937
|
+
visibility: hidden;
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
.is-visible {
|
|
2941
|
+
display: inherit;
|
|
2942
|
+
visibility: inherit;
|
|
2943
|
+
}
|
|
2944
|
+
|
|
2945
|
+
.hide {
|
|
2946
|
+
font-size: 0;
|
|
2947
|
+
height: 0;
|
|
2948
|
+
line-height: 0;
|
|
2949
|
+
max-height: 0;
|
|
2950
|
+
max-width: 0;
|
|
2951
|
+
min-height: 0;
|
|
2952
|
+
min-width: 0;
|
|
2953
|
+
width: 0;
|
|
2954
|
+
}
|
|
2955
|
+
.hide::before {
|
|
2956
|
+
content: none;
|
|
2957
|
+
}
|
|
2958
|
+
.hide::after {
|
|
2959
|
+
content: none;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
.clearfix {
|
|
2963
|
+
*zoom: 1;
|
|
2964
|
+
}
|
|
2965
|
+
.clearfix::after, .clearfix::before {
|
|
2966
|
+
content: ".";
|
|
2967
|
+
display: block;
|
|
2968
|
+
font-size: 0;
|
|
2969
|
+
height: 0;
|
|
2970
|
+
line-height: 0;
|
|
3228
2971
|
overflow: hidden;
|
|
3229
|
-
|
|
3230
|
-
|
|
2972
|
+
visibility: hidden;
|
|
2973
|
+
width: 0;
|
|
2974
|
+
}
|
|
2975
|
+
.clearfix::after {
|
|
2976
|
+
clear: both;
|
|
3231
2977
|
}
|
|
3232
2978
|
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
border-right: 0;
|
|
2979
|
+
.clear {
|
|
2980
|
+
clear: both;
|
|
3236
2981
|
}
|
|
3237
2982
|
|
|
3238
|
-
|
|
3239
|
-
|
|
2983
|
+
.clear-right {
|
|
2984
|
+
clear: right;
|
|
3240
2985
|
}
|
|
3241
2986
|
|
|
3242
|
-
|
|
3243
|
-
|
|
2987
|
+
.clear-left {
|
|
2988
|
+
clear: left;
|
|
3244
2989
|
}
|
|
3245
|
-
|
|
3246
|
-
|
|
2990
|
+
|
|
2991
|
+
.float-left {
|
|
2992
|
+
float: left;
|
|
3247
2993
|
}
|
|
3248
2994
|
|
|
3249
|
-
.
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
.
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
.
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
2995
|
+
.float-right {
|
|
2996
|
+
float: right;
|
|
2997
|
+
}
|
|
2998
|
+
|
|
2999
|
+
.scroll-x {
|
|
3000
|
+
overflow-x: scroll;
|
|
3001
|
+
overflow-y: hidden;
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
.scroll-y {
|
|
3005
|
+
overflow-x: hidden;
|
|
3006
|
+
overflow-y: scroll;
|
|
3007
|
+
}
|
|
3008
|
+
|
|
3009
|
+
.scroll-x-auto {
|
|
3010
|
+
overflow-x: auto;
|
|
3011
|
+
overflow-y: hidden;
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
.scroll-y-auto {
|
|
3015
|
+
overflow-x: hidden;
|
|
3016
|
+
overflow-y: auto;
|
|
3266
3017
|
}
|
|
3267
3018
|
|
|
3268
|
-
|
|
3269
|
-
.columns .col-4of5 {
|
|
3270
|
-
max-width: 78.5%;
|
|
3271
|
-
min-width: 78.5%;
|
|
3272
|
-
width: 78.5%;
|
|
3273
|
-
}
|
|
3019
|
+
/* ----------------------------------------
|
|
3274
3020
|
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3021
|
+
SCROLLBOX
|
|
3022
|
+
|
|
3023
|
+
---------------------------------------- */
|
|
3024
|
+
.is-scrollbox, .is-scrollbox-x, .is-scrollbox-y {
|
|
3025
|
+
overflow-x: auto;
|
|
3026
|
+
overflow-y: auto;
|
|
3280
3027
|
}
|
|
3281
3028
|
|
|
3282
|
-
.
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
width: 65.5%;
|
|
3029
|
+
.is-scrollbox-y {
|
|
3030
|
+
height: auto;
|
|
3031
|
+
overflow-x: hidden;
|
|
3032
|
+
overflow-y: auto;
|
|
3287
3033
|
}
|
|
3288
3034
|
|
|
3289
|
-
.
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
width: 59.5%;
|
|
3035
|
+
.is-scrollbox-x {
|
|
3036
|
+
height: auto;
|
|
3037
|
+
overflow-x: auto;
|
|
3038
|
+
overflow-y: hidden;
|
|
3294
3039
|
}
|
|
3295
3040
|
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3041
|
+
/* ----------------------------
|
|
3042
|
+
|
|
3043
|
+
Alignments
|
|
3044
|
+
|
|
3045
|
+
---------------------------- */
|
|
3046
|
+
.text-left {
|
|
3047
|
+
text-align: left;
|
|
3302
3048
|
}
|
|
3303
3049
|
|
|
3304
|
-
.
|
|
3305
|
-
|
|
3306
|
-
max-width: 38%;
|
|
3307
|
-
min-width: 38%;
|
|
3308
|
-
width: 38%;
|
|
3050
|
+
.text-right {
|
|
3051
|
+
text-align: right;
|
|
3309
3052
|
}
|
|
3310
3053
|
|
|
3311
|
-
.
|
|
3312
|
-
|
|
3313
|
-
max-width: 31%;
|
|
3314
|
-
min-width: 31%;
|
|
3315
|
-
width: 31%;
|
|
3054
|
+
.text-center {
|
|
3055
|
+
text-align: center;
|
|
3316
3056
|
}
|
|
3317
3057
|
|
|
3318
|
-
.
|
|
3319
|
-
|
|
3320
|
-
max-width: 23%;
|
|
3321
|
-
min-width: 23%;
|
|
3322
|
-
width: 23%;
|
|
3058
|
+
.text-justify {
|
|
3059
|
+
text-align: justify;
|
|
3323
3060
|
}
|
|
3324
3061
|
|
|
3325
|
-
.
|
|
3326
|
-
.
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
width: 18%;
|
|
3062
|
+
.text-overflow,
|
|
3063
|
+
.text-ellipsis {
|
|
3064
|
+
white-space: nowrap;
|
|
3065
|
+
text-overflow: ellipsis;
|
|
3330
3066
|
}
|
|
3331
3067
|
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3068
|
+
/* ----------------------------
|
|
3069
|
+
|
|
3070
|
+
Font Weight
|
|
3071
|
+
|
|
3072
|
+
---------------------------- */
|
|
3073
|
+
.is-thin {
|
|
3074
|
+
font-weight: 100;
|
|
3336
3075
|
}
|
|
3337
3076
|
|
|
3338
|
-
.
|
|
3339
|
-
|
|
3340
|
-
.rows .row-75,
|
|
3341
|
-
.rows .row-66,
|
|
3342
|
-
.rows .row-50,
|
|
3343
|
-
.rows .row-40,
|
|
3344
|
-
.rows .row-33,
|
|
3345
|
-
.rows .row-25,
|
|
3346
|
-
.rows .row-20,
|
|
3347
|
-
.rows .row-1of1,
|
|
3348
|
-
.rows .row-2of2,
|
|
3349
|
-
.rows .row-3of3,
|
|
3350
|
-
.rows .row-4of4,
|
|
3351
|
-
.rows .row-5of5 {
|
|
3352
|
-
height: 100%;
|
|
3353
|
-
max-height: 100%;
|
|
3354
|
-
min-height: 100%;
|
|
3077
|
+
.is-light {
|
|
3078
|
+
font-weight: 300;
|
|
3355
3079
|
}
|
|
3356
3080
|
|
|
3357
|
-
.
|
|
3358
|
-
.
|
|
3359
|
-
|
|
3360
|
-
max-height: 78.5%;
|
|
3361
|
-
min-height: 78.5%;
|
|
3081
|
+
.is-normal,
|
|
3082
|
+
.is-regular {
|
|
3083
|
+
font-weight: 400;
|
|
3362
3084
|
}
|
|
3363
3085
|
|
|
3364
|
-
.
|
|
3365
|
-
|
|
3366
|
-
height: 73.5%;
|
|
3367
|
-
max-height: 73.5%;
|
|
3368
|
-
min-height: 73.5%;
|
|
3086
|
+
.is-medium {
|
|
3087
|
+
font-weight: 500;
|
|
3369
3088
|
}
|
|
3370
3089
|
|
|
3371
|
-
.
|
|
3372
|
-
|
|
3373
|
-
height: 65.5%;
|
|
3374
|
-
max-height: 65.5%;
|
|
3375
|
-
min-height: 65.5%;
|
|
3090
|
+
.is-semi-bold {
|
|
3091
|
+
font-weight: 600;
|
|
3376
3092
|
}
|
|
3377
3093
|
|
|
3378
|
-
.
|
|
3379
|
-
|
|
3380
|
-
height: 59.5%;
|
|
3381
|
-
max-height: 59.5%;
|
|
3382
|
-
min-height: 59.5%;
|
|
3094
|
+
.is-bold {
|
|
3095
|
+
font-weight: 700;
|
|
3383
3096
|
}
|
|
3384
3097
|
|
|
3385
|
-
.
|
|
3386
|
-
.
|
|
3387
|
-
|
|
3388
|
-
height: 47.5%;
|
|
3389
|
-
max-height: 47.5%;
|
|
3390
|
-
min-height: 47.5%;
|
|
3098
|
+
.is-black,
|
|
3099
|
+
.is-extra-bold {
|
|
3100
|
+
font-weight: 900;
|
|
3391
3101
|
}
|
|
3392
3102
|
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3103
|
+
/* ----------------------------
|
|
3104
|
+
|
|
3105
|
+
Font Style
|
|
3106
|
+
|
|
3107
|
+
---------------------------- */
|
|
3108
|
+
.is-italic {
|
|
3109
|
+
font-style: italic;
|
|
3398
3110
|
}
|
|
3399
3111
|
|
|
3400
|
-
.
|
|
3401
|
-
|
|
3402
|
-
height: 31%;
|
|
3403
|
-
max-height: 31%;
|
|
3404
|
-
min-height: 31%;
|
|
3112
|
+
.is-lowercase {
|
|
3113
|
+
text-transform: lowercase;
|
|
3405
3114
|
}
|
|
3406
3115
|
|
|
3407
|
-
.
|
|
3408
|
-
|
|
3409
|
-
height: 23%;
|
|
3410
|
-
max-height: 23%;
|
|
3411
|
-
min-height: 23%;
|
|
3116
|
+
.is-uppercase {
|
|
3117
|
+
text-transform: uppercase;
|
|
3412
3118
|
}
|
|
3413
3119
|
|
|
3414
|
-
.
|
|
3415
|
-
|
|
3416
|
-
height: 18%;
|
|
3417
|
-
max-height: 18%;
|
|
3418
|
-
min-height: 18%;
|
|
3120
|
+
.is-capitalize {
|
|
3121
|
+
text-transform: capitalize;
|
|
3419
3122
|
}
|
|
3420
3123
|
|
|
3421
|
-
.
|
|
3422
|
-
|
|
3423
|
-
max-height: 0%;
|
|
3424
|
-
min-height: 0%;
|
|
3124
|
+
.is-underline {
|
|
3125
|
+
text-decoration: underline;
|
|
3425
3126
|
}
|
|
3426
3127
|
|
|
3427
|
-
.
|
|
3428
|
-
|
|
3429
|
-
.wrap-3 > *,
|
|
3430
|
-
.wrap-4 > *,
|
|
3431
|
-
.wrap-5 > * {
|
|
3432
|
-
margin-bottom: 12px;
|
|
3433
|
-
margin-bottom: 0.75rem;
|
|
3434
|
-
flex: 0 0 auto;
|
|
3128
|
+
.is-stroked {
|
|
3129
|
+
text-decoration: line-through;
|
|
3435
3130
|
}
|
|
3436
3131
|
|
|
3437
|
-
.
|
|
3438
|
-
|
|
3132
|
+
.is-small-caps {
|
|
3133
|
+
font-variant: small-caps;
|
|
3439
3134
|
}
|
|
3440
3135
|
|
|
3441
|
-
.
|
|
3442
|
-
|
|
3136
|
+
.force-line-break {
|
|
3137
|
+
white-space: normal;
|
|
3443
3138
|
}
|
|
3444
3139
|
|
|
3445
|
-
.
|
|
3446
|
-
|
|
3140
|
+
.margin-auto {
|
|
3141
|
+
margin: 0 auto;
|
|
3447
3142
|
}
|
|
3448
3143
|
|
|
3449
|
-
.
|
|
3450
|
-
|
|
3144
|
+
.margin-x-auto {
|
|
3145
|
+
margin-left: auto;
|
|
3146
|
+
margin-right: auto;
|
|
3451
3147
|
}
|
|
3452
3148
|
|
|
3453
|
-
.
|
|
3454
|
-
|
|
3149
|
+
.margin-y-auto {
|
|
3150
|
+
margin-left: auto;
|
|
3151
|
+
margin-right: auto;
|
|
3455
3152
|
}
|
|
3456
3153
|
|
|
3457
|
-
.
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
justify-content: flex-start;
|
|
3154
|
+
.use-hand,
|
|
3155
|
+
.use-pointer {
|
|
3156
|
+
cursor: pointer;
|
|
3157
|
+
cursor: default;
|
|
3462
3158
|
}
|
|
3463
3159
|
|
|
3464
|
-
.
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
min-width: 49%;
|
|
3468
|
-
width: 49%;
|
|
3160
|
+
.use-cursor {
|
|
3161
|
+
cursor: default;
|
|
3162
|
+
cursor: none;
|
|
3469
3163
|
}
|
|
3470
3164
|
|
|
3471
|
-
.
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
min-width: 32%;
|
|
3475
|
-
width: 32%;
|
|
3165
|
+
.use-move {
|
|
3166
|
+
cursor: move;
|
|
3167
|
+
cursor: default;
|
|
3476
3168
|
}
|
|
3477
3169
|
|
|
3478
|
-
.
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
min-width: 24%;
|
|
3482
|
-
width: 24%;
|
|
3170
|
+
.use-disabled {
|
|
3171
|
+
cursor: not-allowed;
|
|
3172
|
+
cursor: default;
|
|
3483
3173
|
}
|
|
3484
3174
|
|
|
3485
|
-
.
|
|
3486
|
-
|
|
3487
|
-
max-width: 19%;
|
|
3488
|
-
min-width: 19%;
|
|
3489
|
-
width: 19%;
|
|
3175
|
+
.debug * {
|
|
3176
|
+
outline: 1px solid rgba(255, 0, 0, 0.3);
|
|
3490
3177
|
}
|
|
3491
3178
|
|
|
3492
3179
|
/*# sourceMappingURL=styles.css.map */
|