@enigmatry/scss-foundation 19.0.1-preview.1 → 19.0.1-preview.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/coverage/clover.xml +2 -2
- package/coverage/lcov-report/index.html +1 -1
- package/package.json +1 -1
- package/src/modules/_map.scss +2 -2
- package/src/modules/layout/_grid.scss +2 -1
- package/src/modules/responsiveness/_breakpoints.scss +2 -1
- package/src/modules/sizes/_set-size.scss +2 -1
- package/tests/layout/grid-core.tests.scss +6 -10
- package/tests/layout/grid.tests.scss +200 -197
package/coverage/clover.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
2
|
+
<coverage generated="1746714355918" clover="3.2.0">
|
|
3
|
+
<project timestamp="1746714355918" name="All files">
|
|
4
4
|
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0" elements="0" coveredelements="0" complexity="0" loc="0" ncloc="0" packages="0" files="0" classes="0"/>
|
|
5
5
|
</project>
|
|
6
6
|
</coverage>
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
87
87
|
Code coverage generated by
|
|
88
88
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
89
|
-
at 2025-
|
|
89
|
+
at 2025-05-08T14:25:55.914Z
|
|
90
90
|
</div>
|
|
91
91
|
<script src="prettify.js"></script>
|
|
92
92
|
<script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enigmatry/scss-foundation",
|
|
3
|
-
"version": "19.0.1-preview.
|
|
3
|
+
"version": "19.0.1-preview.4",
|
|
4
4
|
"author": "Enigmatry",
|
|
5
5
|
"description": "Collection of SCSS utilities useful for the most of projects.",
|
|
6
6
|
"homepage": "https://github.com/enigmatry/entry-angular-building-blocks/tree/master/libs/scss-foundation#readme",
|
package/src/modules/_map.scss
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
@use 'variables' as vars;
|
|
6
6
|
|
|
7
7
|
@function value-from($object, $path) {
|
|
8
|
-
|
|
9
8
|
@if meta.type-of($object) != map {
|
|
10
9
|
@return -error('Please provide valid object! Given value: ' + $object);
|
|
11
10
|
}
|
|
@@ -22,7 +21,7 @@
|
|
|
22
21
|
@if (map.has-key($result, $key) == false) {
|
|
23
22
|
@return -error('Path segment must be any of following values: ' + map.keys($result) + '. Given path segment: ' + $key);
|
|
24
23
|
}
|
|
25
|
-
|
|
24
|
+
|
|
26
25
|
$result: map.get($result, $key);
|
|
27
26
|
}
|
|
28
27
|
|
|
@@ -32,6 +31,7 @@
|
|
|
32
31
|
@function -split($string, $separator: '.') {
|
|
33
32
|
$result: ();
|
|
34
33
|
$current-index: string.index($string, $separator);
|
|
34
|
+
|
|
35
35
|
@while $current-index != null {
|
|
36
36
|
$key: string.slice($string, 1, $current-index - 1);
|
|
37
37
|
$result: list.append($result, $key);
|
|
@@ -8,6 +8,7 @@ $breakpoints: () !default;
|
|
|
8
8
|
@use 'sass-true/sass/throw';
|
|
9
9
|
@use '../../modules/variables' as vars;
|
|
10
10
|
@use 'sass:list';
|
|
11
|
+
|
|
11
12
|
@forward '../../modules/responsiveness/breakpoints' with (
|
|
12
13
|
$breakpoints: $breakpoints
|
|
13
14
|
);
|
|
@@ -37,7 +38,6 @@ $offset-prefix: 'offset-';
|
|
|
37
38
|
$catch: vars.$testing
|
|
38
39
|
);
|
|
39
40
|
}
|
|
40
|
-
|
|
41
41
|
@else {
|
|
42
42
|
@include grid-core.generate($column-prefix, $offset-prefix, $spacing);
|
|
43
43
|
@include grid-core.generate-reverse-row($breakpoints);
|
|
@@ -71,6 +71,7 @@ $offset-prefix: 'offset-';
|
|
|
71
71
|
|
|
72
72
|
@mixin -responsive-grid-from($spacing, $divisions) {
|
|
73
73
|
$division-limit: $divisions + 1;
|
|
74
|
+
|
|
74
75
|
@each $item, $value in $breakpoints {
|
|
75
76
|
$size: map.get($value, description);
|
|
76
77
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* stylelint-disable at-rule-allowed-list */
|
|
1
|
+
/* stylelint-disable at-rule-allowed-list, media-query-no-invalid */
|
|
2
2
|
$breakpoints: () !default;
|
|
3
3
|
|
|
4
4
|
@use 'sass:list';
|
|
@@ -15,6 +15,7 @@ $breakpoints: () !default;
|
|
|
15
15
|
@function -get-size($size) {
|
|
16
16
|
@if (map.has-key($breakpoints, $size)) {
|
|
17
17
|
$gotten-size: map.get($breakpoints, $size);
|
|
18
|
+
|
|
18
19
|
@return map.get($gotten-size, size);
|
|
19
20
|
}
|
|
20
21
|
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
/* stylelint-disable selector-max-attribute */
|
|
2
|
-
/* stylelint-disable csstools/use-nesting */
|
|
3
|
-
/* stylelint-disable shorthand-property-no-redundant-values */
|
|
4
|
-
/* stylelint-disable max-nesting-depth */
|
|
5
|
-
/* stylelint-disable at-rule-allowed-list */
|
|
1
|
+
/* stylelint-disable shorthand-property-no-redundant-values, selector-max-attribute, at-rule-allowed-list */
|
|
6
2
|
$custom-breakpoints: () !default;
|
|
7
3
|
|
|
8
4
|
@use 'sass-true/sass/true';
|
|
@@ -88,24 +84,24 @@ $custom-breakpoints: () !default;
|
|
|
88
84
|
flex-direction: row-reverse;
|
|
89
85
|
}
|
|
90
86
|
}
|
|
91
|
-
|
|
87
|
+
|
|
92
88
|
@media only screen and (width >= 800px) {
|
|
93
89
|
.row.reverse-row-md {
|
|
94
90
|
flex-direction: row-reverse;
|
|
95
91
|
}
|
|
96
92
|
}
|
|
97
|
-
|
|
93
|
+
|
|
98
94
|
.row.reverse-row-under-sm {
|
|
99
95
|
flex-direction: row-reverse;
|
|
100
|
-
|
|
96
|
+
|
|
101
97
|
@media only screen and (width >= 540px) {
|
|
102
98
|
flex-direction: row;
|
|
103
99
|
}
|
|
104
100
|
}
|
|
105
|
-
|
|
101
|
+
|
|
106
102
|
.row.reverse-row-under-md {
|
|
107
103
|
flex-direction: row-reverse;
|
|
108
|
-
|
|
104
|
+
|
|
109
105
|
@media only screen and (width >= 800px) {
|
|
110
106
|
flex-direction: row;
|
|
111
107
|
}
|
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
/* stylelint-disable pitcher/max-lines */
|
|
2
|
-
/* stylelint-disable csstools/use-nesting */
|
|
3
|
-
/* stylelint-disable selector-max-attribute */
|
|
4
|
-
/* stylelint-disable shorthand-property-no-redundant-values */
|
|
5
|
-
/* stylelint-disable number-max-precision */
|
|
6
|
-
/* stylelint-disable max-nesting-depth */
|
|
7
|
-
/* stylelint-disable at-rule-allowed-list */
|
|
1
|
+
/* stylelint-disable pitcher/max-lines, csstools/use-nesting, selector-max-attribute, plugin/file-max-lines, shorthand-property-no-redundant-values, at-rule-allowed-list, number-max-precision */
|
|
8
2
|
@use '../../src/modules/layout/grid';
|
|
9
3
|
@use '../../src/modules/variables' as vars;
|
|
10
4
|
@use 'sass-true';
|
|
@@ -133,778 +127,778 @@ vars.$testing: true;
|
|
|
133
127
|
max-width: 100%;
|
|
134
128
|
padding: 0 0;
|
|
135
129
|
}
|
|
136
|
-
|
|
130
|
+
|
|
137
131
|
.col-auto {
|
|
138
132
|
flex: 0 0 auto;
|
|
139
133
|
width: auto;
|
|
140
134
|
padding: 0 0;
|
|
141
135
|
}
|
|
142
|
-
|
|
136
|
+
|
|
143
137
|
@media only screen and (width >= 576px) {
|
|
144
138
|
.row.reverse-row-sm {
|
|
145
139
|
flex-direction: row-reverse;
|
|
146
140
|
}
|
|
147
141
|
}
|
|
148
|
-
|
|
142
|
+
|
|
149
143
|
@media only screen and (width >= 768px) {
|
|
150
144
|
.row.reverse-row-md {
|
|
151
145
|
flex-direction: row-reverse;
|
|
152
146
|
}
|
|
153
147
|
}
|
|
154
|
-
|
|
148
|
+
|
|
155
149
|
@media only screen and (width >= 992px) {
|
|
156
150
|
.row.reverse-row-lg {
|
|
157
151
|
flex-direction: row-reverse;
|
|
158
152
|
}
|
|
159
153
|
}
|
|
160
|
-
|
|
154
|
+
|
|
161
155
|
@media only screen and (width >= 1200px) {
|
|
162
156
|
.row.reverse-row-xl {
|
|
163
157
|
flex-direction: row-reverse;
|
|
164
158
|
}
|
|
165
159
|
}
|
|
166
|
-
|
|
160
|
+
|
|
167
161
|
@media only screen and (width >= 1400px) {
|
|
168
162
|
.row.reverse-row-xxl {
|
|
169
163
|
flex-direction: row-reverse;
|
|
170
164
|
}
|
|
171
165
|
}
|
|
172
|
-
|
|
166
|
+
|
|
173
167
|
.row.reverse-row-under-sm {
|
|
174
168
|
flex-direction: row-reverse;
|
|
175
|
-
|
|
169
|
+
|
|
176
170
|
@media only screen and (width >= 576px) {
|
|
177
171
|
flex-direction: row;
|
|
178
172
|
}
|
|
179
173
|
}
|
|
180
|
-
|
|
174
|
+
|
|
181
175
|
.row.reverse-row-under-md {
|
|
182
176
|
flex-direction: row-reverse;
|
|
183
|
-
|
|
177
|
+
|
|
184
178
|
@media only screen and (width >= 768px) {
|
|
185
179
|
flex-direction: row;
|
|
186
180
|
}
|
|
187
181
|
}
|
|
188
|
-
|
|
182
|
+
|
|
189
183
|
.row.reverse-row-under-lg {
|
|
190
184
|
flex-direction: row-reverse;
|
|
191
|
-
|
|
185
|
+
|
|
192
186
|
@media only screen and (width >= 992px) {
|
|
193
187
|
flex-direction: row;
|
|
194
188
|
}
|
|
195
189
|
}
|
|
196
|
-
|
|
190
|
+
|
|
197
191
|
.row.reverse-row-under-xl {
|
|
198
192
|
flex-direction: row-reverse;
|
|
199
|
-
|
|
193
|
+
|
|
200
194
|
@media only screen and (width >= 1200px) {
|
|
201
195
|
flex-direction: row;
|
|
202
196
|
}
|
|
203
197
|
}
|
|
204
|
-
|
|
198
|
+
|
|
205
199
|
.row.reverse-row-under-xxl {
|
|
206
200
|
flex-direction: row-reverse;
|
|
207
|
-
|
|
201
|
+
|
|
208
202
|
@media only screen and (width >= 1400px) {
|
|
209
203
|
flex-direction: row;
|
|
210
204
|
}
|
|
211
205
|
}
|
|
212
|
-
|
|
206
|
+
|
|
213
207
|
.col-1 {
|
|
214
208
|
flex: 0 0 auto;
|
|
215
209
|
width: 8.3333333333%;
|
|
216
210
|
padding: 0 0;
|
|
217
211
|
}
|
|
218
|
-
|
|
212
|
+
|
|
219
213
|
.offset-1 {
|
|
220
214
|
margin-left: 8.3333333333%;
|
|
221
215
|
}
|
|
222
|
-
|
|
216
|
+
|
|
223
217
|
.col-2 {
|
|
224
218
|
flex: 0 0 auto;
|
|
225
219
|
width: 16.6666666667%;
|
|
226
220
|
padding: 0 0;
|
|
227
221
|
}
|
|
228
|
-
|
|
222
|
+
|
|
229
223
|
.offset-2 {
|
|
230
224
|
margin-left: 16.6666666667%;
|
|
231
225
|
}
|
|
232
|
-
|
|
226
|
+
|
|
233
227
|
.col-3 {
|
|
234
228
|
flex: 0 0 auto;
|
|
235
229
|
width: 25%;
|
|
236
230
|
padding: 0 0;
|
|
237
231
|
}
|
|
238
|
-
|
|
232
|
+
|
|
239
233
|
.offset-3 {
|
|
240
234
|
margin-left: 25%;
|
|
241
235
|
}
|
|
242
|
-
|
|
236
|
+
|
|
243
237
|
.col-4 {
|
|
244
238
|
flex: 0 0 auto;
|
|
245
239
|
width: 33.3333333333%;
|
|
246
240
|
padding: 0 0;
|
|
247
241
|
}
|
|
248
|
-
|
|
242
|
+
|
|
249
243
|
.offset-4 {
|
|
250
244
|
margin-left: 33.3333333333%;
|
|
251
245
|
}
|
|
252
|
-
|
|
246
|
+
|
|
253
247
|
.col-5 {
|
|
254
248
|
flex: 0 0 auto;
|
|
255
249
|
width: 41.6666666667%;
|
|
256
250
|
padding: 0 0;
|
|
257
251
|
}
|
|
258
|
-
|
|
252
|
+
|
|
259
253
|
.offset-5 {
|
|
260
254
|
margin-left: 41.6666666667%;
|
|
261
255
|
}
|
|
262
|
-
|
|
256
|
+
|
|
263
257
|
.col-6 {
|
|
264
258
|
flex: 0 0 auto;
|
|
265
259
|
width: 50%;
|
|
266
260
|
padding: 0 0;
|
|
267
261
|
}
|
|
268
|
-
|
|
262
|
+
|
|
269
263
|
.offset-6 {
|
|
270
264
|
margin-left: 50%;
|
|
271
265
|
}
|
|
272
|
-
|
|
266
|
+
|
|
273
267
|
.col-7 {
|
|
274
268
|
flex: 0 0 auto;
|
|
275
269
|
width: 58.3333333333%;
|
|
276
270
|
padding: 0 0;
|
|
277
271
|
}
|
|
278
|
-
|
|
272
|
+
|
|
279
273
|
.offset-7 {
|
|
280
274
|
margin-left: 58.3333333333%;
|
|
281
275
|
}
|
|
282
|
-
|
|
276
|
+
|
|
283
277
|
.col-8 {
|
|
284
278
|
flex: 0 0 auto;
|
|
285
279
|
width: 66.6666666667%;
|
|
286
280
|
padding: 0 0;
|
|
287
281
|
}
|
|
288
|
-
|
|
282
|
+
|
|
289
283
|
.offset-8 {
|
|
290
284
|
margin-left: 66.6666666667%;
|
|
291
285
|
}
|
|
292
|
-
|
|
286
|
+
|
|
293
287
|
.col-9 {
|
|
294
288
|
flex: 0 0 auto;
|
|
295
289
|
width: 75%;
|
|
296
290
|
padding: 0 0;
|
|
297
291
|
}
|
|
298
|
-
|
|
292
|
+
|
|
299
293
|
.offset-9 {
|
|
300
294
|
margin-left: 75%;
|
|
301
295
|
}
|
|
302
|
-
|
|
296
|
+
|
|
303
297
|
.col-10 {
|
|
304
298
|
flex: 0 0 auto;
|
|
305
299
|
width: 83.3333333333%;
|
|
306
300
|
padding: 0 0;
|
|
307
301
|
}
|
|
308
|
-
|
|
302
|
+
|
|
309
303
|
.offset-10 {
|
|
310
304
|
margin-left: 83.3333333333%;
|
|
311
305
|
}
|
|
312
|
-
|
|
306
|
+
|
|
313
307
|
.col-11 {
|
|
314
308
|
flex: 0 0 auto;
|
|
315
309
|
width: 91.6666666667%;
|
|
316
310
|
padding: 0 0;
|
|
317
311
|
}
|
|
318
|
-
|
|
312
|
+
|
|
319
313
|
.offset-11 {
|
|
320
314
|
margin-left: 91.6666666667%;
|
|
321
315
|
}
|
|
322
|
-
|
|
316
|
+
|
|
323
317
|
.col-12 {
|
|
324
318
|
flex: 0 0 auto;
|
|
325
319
|
width: 100%;
|
|
326
320
|
padding: 0 0;
|
|
327
321
|
}
|
|
328
|
-
|
|
322
|
+
|
|
329
323
|
.offset-12 {
|
|
330
324
|
margin-left: 100%;
|
|
331
325
|
}
|
|
332
|
-
|
|
326
|
+
|
|
333
327
|
@media only screen and (width >= 576px) {
|
|
334
328
|
.col-sm-auto {
|
|
335
329
|
flex: 0 0 auto;
|
|
336
330
|
width: auto;
|
|
337
331
|
padding: 0 0;
|
|
338
332
|
}
|
|
339
|
-
|
|
333
|
+
|
|
340
334
|
.col-sm-1 {
|
|
341
335
|
flex: 0 0 auto;
|
|
342
336
|
width: 8.3333333333%;
|
|
343
337
|
}
|
|
344
|
-
|
|
338
|
+
|
|
345
339
|
.offset-sm-1 {
|
|
346
340
|
margin-left: 8.3333333333%;
|
|
347
341
|
}
|
|
348
|
-
|
|
342
|
+
|
|
349
343
|
.col-sm-2 {
|
|
350
344
|
flex: 0 0 auto;
|
|
351
345
|
width: 16.6666666667%;
|
|
352
346
|
}
|
|
353
|
-
|
|
347
|
+
|
|
354
348
|
.offset-sm-2 {
|
|
355
349
|
margin-left: 16.6666666667%;
|
|
356
350
|
}
|
|
357
|
-
|
|
351
|
+
|
|
358
352
|
.col-sm-3 {
|
|
359
353
|
flex: 0 0 auto;
|
|
360
354
|
width: 25%;
|
|
361
355
|
}
|
|
362
|
-
|
|
356
|
+
|
|
363
357
|
.offset-sm-3 {
|
|
364
358
|
margin-left: 25%;
|
|
365
359
|
}
|
|
366
|
-
|
|
360
|
+
|
|
367
361
|
.col-sm-4 {
|
|
368
362
|
flex: 0 0 auto;
|
|
369
363
|
width: 33.3333333333%;
|
|
370
364
|
}
|
|
371
|
-
|
|
365
|
+
|
|
372
366
|
.offset-sm-4 {
|
|
373
367
|
margin-left: 33.3333333333%;
|
|
374
368
|
}
|
|
375
|
-
|
|
369
|
+
|
|
376
370
|
.col-sm-5 {
|
|
377
371
|
flex: 0 0 auto;
|
|
378
372
|
width: 41.6666666667%;
|
|
379
373
|
}
|
|
380
|
-
|
|
374
|
+
|
|
381
375
|
.offset-sm-5 {
|
|
382
376
|
margin-left: 41.6666666667%;
|
|
383
377
|
}
|
|
384
|
-
|
|
378
|
+
|
|
385
379
|
.col-sm-6 {
|
|
386
380
|
flex: 0 0 auto;
|
|
387
381
|
width: 50%;
|
|
388
382
|
}
|
|
389
|
-
|
|
383
|
+
|
|
390
384
|
.offset-sm-6 {
|
|
391
385
|
margin-left: 50%;
|
|
392
386
|
}
|
|
393
|
-
|
|
387
|
+
|
|
394
388
|
.col-sm-7 {
|
|
395
389
|
flex: 0 0 auto;
|
|
396
390
|
width: 58.3333333333%;
|
|
397
391
|
}
|
|
398
|
-
|
|
392
|
+
|
|
399
393
|
.offset-sm-7 {
|
|
400
394
|
margin-left: 58.3333333333%;
|
|
401
395
|
}
|
|
402
|
-
|
|
396
|
+
|
|
403
397
|
.col-sm-8 {
|
|
404
398
|
flex: 0 0 auto;
|
|
405
399
|
width: 66.6666666667%;
|
|
406
400
|
}
|
|
407
|
-
|
|
401
|
+
|
|
408
402
|
.offset-sm-8 {
|
|
409
403
|
margin-left: 66.6666666667%;
|
|
410
404
|
}
|
|
411
|
-
|
|
405
|
+
|
|
412
406
|
.col-sm-9 {
|
|
413
407
|
flex: 0 0 auto;
|
|
414
408
|
width: 75%;
|
|
415
409
|
}
|
|
416
|
-
|
|
410
|
+
|
|
417
411
|
.offset-sm-9 {
|
|
418
412
|
margin-left: 75%;
|
|
419
413
|
}
|
|
420
|
-
|
|
414
|
+
|
|
421
415
|
.col-sm-10 {
|
|
422
416
|
flex: 0 0 auto;
|
|
423
417
|
width: 83.3333333333%;
|
|
424
418
|
}
|
|
425
|
-
|
|
419
|
+
|
|
426
420
|
.offset-sm-10 {
|
|
427
421
|
margin-left: 83.3333333333%;
|
|
428
422
|
}
|
|
429
|
-
|
|
423
|
+
|
|
430
424
|
.col-sm-11 {
|
|
431
425
|
flex: 0 0 auto;
|
|
432
426
|
width: 91.6666666667%;
|
|
433
427
|
}
|
|
434
|
-
|
|
428
|
+
|
|
435
429
|
.offset-sm-11 {
|
|
436
430
|
margin-left: 91.6666666667%;
|
|
437
431
|
}
|
|
438
|
-
|
|
432
|
+
|
|
439
433
|
.col-sm-12 {
|
|
440
434
|
flex: 0 0 auto;
|
|
441
435
|
width: 100%;
|
|
442
436
|
}
|
|
443
|
-
|
|
437
|
+
|
|
444
438
|
.offset-sm-12 {
|
|
445
439
|
margin-left: 100%;
|
|
446
440
|
}
|
|
447
441
|
}
|
|
448
|
-
|
|
442
|
+
|
|
449
443
|
@media only screen and (width >= 768px) {
|
|
450
444
|
.col-md-auto {
|
|
451
445
|
flex: 0 0 auto;
|
|
452
446
|
width: auto;
|
|
453
447
|
padding: 0 0;
|
|
454
448
|
}
|
|
455
|
-
|
|
449
|
+
|
|
456
450
|
.col-md-1 {
|
|
457
451
|
flex: 0 0 auto;
|
|
458
452
|
width: 8.3333333333%;
|
|
459
453
|
}
|
|
460
|
-
|
|
454
|
+
|
|
461
455
|
.offset-md-1 {
|
|
462
456
|
margin-left: 8.3333333333%;
|
|
463
457
|
}
|
|
464
|
-
|
|
458
|
+
|
|
465
459
|
.col-md-2 {
|
|
466
460
|
flex: 0 0 auto;
|
|
467
461
|
width: 16.6666666667%;
|
|
468
462
|
}
|
|
469
|
-
|
|
463
|
+
|
|
470
464
|
.offset-md-2 {
|
|
471
465
|
margin-left: 16.6666666667%;
|
|
472
466
|
}
|
|
473
|
-
|
|
467
|
+
|
|
474
468
|
.col-md-3 {
|
|
475
469
|
flex: 0 0 auto;
|
|
476
470
|
width: 25%;
|
|
477
471
|
}
|
|
478
|
-
|
|
472
|
+
|
|
479
473
|
.offset-md-3 {
|
|
480
474
|
margin-left: 25%;
|
|
481
475
|
}
|
|
482
|
-
|
|
476
|
+
|
|
483
477
|
.col-md-4 {
|
|
484
478
|
flex: 0 0 auto;
|
|
485
479
|
width: 33.3333333333%;
|
|
486
480
|
}
|
|
487
|
-
|
|
481
|
+
|
|
488
482
|
.offset-md-4 {
|
|
489
483
|
margin-left: 33.3333333333%;
|
|
490
484
|
}
|
|
491
|
-
|
|
485
|
+
|
|
492
486
|
.col-md-5 {
|
|
493
487
|
flex: 0 0 auto;
|
|
494
488
|
width: 41.6666666667%;
|
|
495
489
|
}
|
|
496
|
-
|
|
490
|
+
|
|
497
491
|
.offset-md-5 {
|
|
498
492
|
margin-left: 41.6666666667%;
|
|
499
493
|
}
|
|
500
|
-
|
|
494
|
+
|
|
501
495
|
.col-md-6 {
|
|
502
496
|
flex: 0 0 auto;
|
|
503
497
|
width: 50%;
|
|
504
498
|
}
|
|
505
|
-
|
|
499
|
+
|
|
506
500
|
.offset-md-6 {
|
|
507
501
|
margin-left: 50%;
|
|
508
502
|
}
|
|
509
|
-
|
|
503
|
+
|
|
510
504
|
.col-md-7 {
|
|
511
505
|
flex: 0 0 auto;
|
|
512
506
|
width: 58.3333333333%;
|
|
513
507
|
}
|
|
514
|
-
|
|
508
|
+
|
|
515
509
|
.offset-md-7 {
|
|
516
510
|
margin-left: 58.3333333333%;
|
|
517
511
|
}
|
|
518
|
-
|
|
512
|
+
|
|
519
513
|
.col-md-8 {
|
|
520
514
|
flex: 0 0 auto;
|
|
521
515
|
width: 66.6666666667%;
|
|
522
516
|
}
|
|
523
|
-
|
|
517
|
+
|
|
524
518
|
.offset-md-8 {
|
|
525
519
|
margin-left: 66.6666666667%;
|
|
526
520
|
}
|
|
527
|
-
|
|
521
|
+
|
|
528
522
|
.col-md-9 {
|
|
529
523
|
flex: 0 0 auto;
|
|
530
524
|
width: 75%;
|
|
531
525
|
}
|
|
532
|
-
|
|
526
|
+
|
|
533
527
|
.offset-md-9 {
|
|
534
528
|
margin-left: 75%;
|
|
535
529
|
}
|
|
536
|
-
|
|
530
|
+
|
|
537
531
|
.col-md-10 {
|
|
538
532
|
flex: 0 0 auto;
|
|
539
533
|
width: 83.3333333333%;
|
|
540
534
|
}
|
|
541
|
-
|
|
535
|
+
|
|
542
536
|
.offset-md-10 {
|
|
543
537
|
margin-left: 83.3333333333%;
|
|
544
538
|
}
|
|
545
|
-
|
|
539
|
+
|
|
546
540
|
.col-md-11 {
|
|
547
541
|
flex: 0 0 auto;
|
|
548
542
|
width: 91.6666666667%;
|
|
549
543
|
}
|
|
550
|
-
|
|
544
|
+
|
|
551
545
|
.offset-md-11 {
|
|
552
546
|
margin-left: 91.6666666667%;
|
|
553
547
|
}
|
|
554
|
-
|
|
548
|
+
|
|
555
549
|
.col-md-12 {
|
|
556
550
|
flex: 0 0 auto;
|
|
557
551
|
width: 100%;
|
|
558
552
|
}
|
|
559
|
-
|
|
553
|
+
|
|
560
554
|
.offset-md-12 {
|
|
561
555
|
margin-left: 100%;
|
|
562
556
|
}
|
|
563
557
|
}
|
|
564
|
-
|
|
558
|
+
|
|
565
559
|
@media only screen and (width >= 992px) {
|
|
566
560
|
.col-lg-auto {
|
|
567
561
|
flex: 0 0 auto;
|
|
568
562
|
width: auto;
|
|
569
563
|
padding: 0 0;
|
|
570
564
|
}
|
|
571
|
-
|
|
565
|
+
|
|
572
566
|
.col-lg-1 {
|
|
573
567
|
flex: 0 0 auto;
|
|
574
568
|
width: 8.3333333333%;
|
|
575
569
|
}
|
|
576
|
-
|
|
570
|
+
|
|
577
571
|
.offset-lg-1 {
|
|
578
572
|
margin-left: 8.3333333333%;
|
|
579
573
|
}
|
|
580
|
-
|
|
574
|
+
|
|
581
575
|
.col-lg-2 {
|
|
582
576
|
flex: 0 0 auto;
|
|
583
577
|
width: 16.6666666667%;
|
|
584
578
|
}
|
|
585
|
-
|
|
579
|
+
|
|
586
580
|
.offset-lg-2 {
|
|
587
581
|
margin-left: 16.6666666667%;
|
|
588
582
|
}
|
|
589
|
-
|
|
583
|
+
|
|
590
584
|
.col-lg-3 {
|
|
591
585
|
flex: 0 0 auto;
|
|
592
586
|
width: 25%;
|
|
593
587
|
}
|
|
594
|
-
|
|
588
|
+
|
|
595
589
|
.offset-lg-3 {
|
|
596
590
|
margin-left: 25%;
|
|
597
591
|
}
|
|
598
|
-
|
|
592
|
+
|
|
599
593
|
.col-lg-4 {
|
|
600
594
|
flex: 0 0 auto;
|
|
601
595
|
width: 33.3333333333%;
|
|
602
596
|
}
|
|
603
|
-
|
|
597
|
+
|
|
604
598
|
.offset-lg-4 {
|
|
605
599
|
margin-left: 33.3333333333%;
|
|
606
600
|
}
|
|
607
|
-
|
|
601
|
+
|
|
608
602
|
.col-lg-5 {
|
|
609
603
|
flex: 0 0 auto;
|
|
610
604
|
width: 41.6666666667%;
|
|
611
605
|
}
|
|
612
|
-
|
|
606
|
+
|
|
613
607
|
.offset-lg-5 {
|
|
614
608
|
margin-left: 41.6666666667%;
|
|
615
609
|
}
|
|
616
|
-
|
|
610
|
+
|
|
617
611
|
.col-lg-6 {
|
|
618
612
|
flex: 0 0 auto;
|
|
619
613
|
width: 50%;
|
|
620
614
|
}
|
|
621
|
-
|
|
615
|
+
|
|
622
616
|
.offset-lg-6 {
|
|
623
617
|
margin-left: 50%;
|
|
624
618
|
}
|
|
625
|
-
|
|
619
|
+
|
|
626
620
|
.col-lg-7 {
|
|
627
621
|
flex: 0 0 auto;
|
|
628
622
|
width: 58.3333333333%;
|
|
629
623
|
}
|
|
630
|
-
|
|
624
|
+
|
|
631
625
|
.offset-lg-7 {
|
|
632
626
|
margin-left: 58.3333333333%;
|
|
633
627
|
}
|
|
634
|
-
|
|
628
|
+
|
|
635
629
|
.col-lg-8 {
|
|
636
630
|
flex: 0 0 auto;
|
|
637
631
|
width: 66.6666666667%;
|
|
638
632
|
}
|
|
639
|
-
|
|
633
|
+
|
|
640
634
|
.offset-lg-8 {
|
|
641
635
|
margin-left: 66.6666666667%;
|
|
642
636
|
}
|
|
643
|
-
|
|
637
|
+
|
|
644
638
|
.col-lg-9 {
|
|
645
639
|
flex: 0 0 auto;
|
|
646
640
|
width: 75%;
|
|
647
641
|
}
|
|
648
|
-
|
|
642
|
+
|
|
649
643
|
.offset-lg-9 {
|
|
650
644
|
margin-left: 75%;
|
|
651
645
|
}
|
|
652
|
-
|
|
646
|
+
|
|
653
647
|
.col-lg-10 {
|
|
654
648
|
flex: 0 0 auto;
|
|
655
649
|
width: 83.3333333333%;
|
|
656
650
|
}
|
|
657
|
-
|
|
651
|
+
|
|
658
652
|
.offset-lg-10 {
|
|
659
653
|
margin-left: 83.3333333333%;
|
|
660
654
|
}
|
|
661
|
-
|
|
655
|
+
|
|
662
656
|
.col-lg-11 {
|
|
663
657
|
flex: 0 0 auto;
|
|
664
658
|
width: 91.6666666667%;
|
|
665
659
|
}
|
|
666
|
-
|
|
660
|
+
|
|
667
661
|
.offset-lg-11 {
|
|
668
662
|
margin-left: 91.6666666667%;
|
|
669
663
|
}
|
|
670
|
-
|
|
664
|
+
|
|
671
665
|
.col-lg-12 {
|
|
672
666
|
flex: 0 0 auto;
|
|
673
667
|
width: 100%;
|
|
674
668
|
}
|
|
675
|
-
|
|
669
|
+
|
|
676
670
|
.offset-lg-12 {
|
|
677
671
|
margin-left: 100%;
|
|
678
672
|
}
|
|
679
673
|
}
|
|
680
|
-
|
|
674
|
+
|
|
681
675
|
@media only screen and (width >= 1200px) {
|
|
682
676
|
.col-xl-auto {
|
|
683
677
|
flex: 0 0 auto;
|
|
684
678
|
width: auto;
|
|
685
679
|
padding: 0 0;
|
|
686
680
|
}
|
|
687
|
-
|
|
681
|
+
|
|
688
682
|
.col-xl-1 {
|
|
689
683
|
flex: 0 0 auto;
|
|
690
684
|
width: 8.3333333333%;
|
|
691
685
|
}
|
|
692
|
-
|
|
686
|
+
|
|
693
687
|
.offset-xl-1 {
|
|
694
688
|
margin-left: 8.3333333333%;
|
|
695
689
|
}
|
|
696
|
-
|
|
690
|
+
|
|
697
691
|
.col-xl-2 {
|
|
698
692
|
flex: 0 0 auto;
|
|
699
693
|
width: 16.6666666667%;
|
|
700
694
|
}
|
|
701
|
-
|
|
695
|
+
|
|
702
696
|
.offset-xl-2 {
|
|
703
697
|
margin-left: 16.6666666667%;
|
|
704
698
|
}
|
|
705
|
-
|
|
699
|
+
|
|
706
700
|
.col-xl-3 {
|
|
707
701
|
flex: 0 0 auto;
|
|
708
702
|
width: 25%;
|
|
709
703
|
}
|
|
710
|
-
|
|
704
|
+
|
|
711
705
|
.offset-xl-3 {
|
|
712
706
|
margin-left: 25%;
|
|
713
707
|
}
|
|
714
|
-
|
|
708
|
+
|
|
715
709
|
.col-xl-4 {
|
|
716
710
|
flex: 0 0 auto;
|
|
717
711
|
width: 33.3333333333%;
|
|
718
712
|
}
|
|
719
|
-
|
|
713
|
+
|
|
720
714
|
.offset-xl-4 {
|
|
721
715
|
margin-left: 33.3333333333%;
|
|
722
716
|
}
|
|
723
|
-
|
|
717
|
+
|
|
724
718
|
.col-xl-5 {
|
|
725
719
|
flex: 0 0 auto;
|
|
726
720
|
width: 41.6666666667%;
|
|
727
721
|
}
|
|
728
|
-
|
|
722
|
+
|
|
729
723
|
.offset-xl-5 {
|
|
730
724
|
margin-left: 41.6666666667%;
|
|
731
725
|
}
|
|
732
|
-
|
|
726
|
+
|
|
733
727
|
.col-xl-6 {
|
|
734
728
|
flex: 0 0 auto;
|
|
735
729
|
width: 50%;
|
|
736
730
|
}
|
|
737
|
-
|
|
731
|
+
|
|
738
732
|
.offset-xl-6 {
|
|
739
733
|
margin-left: 50%;
|
|
740
734
|
}
|
|
741
|
-
|
|
735
|
+
|
|
742
736
|
.col-xl-7 {
|
|
743
737
|
flex: 0 0 auto;
|
|
744
738
|
width: 58.3333333333%;
|
|
745
739
|
}
|
|
746
|
-
|
|
740
|
+
|
|
747
741
|
.offset-xl-7 {
|
|
748
742
|
margin-left: 58.3333333333%;
|
|
749
743
|
}
|
|
750
|
-
|
|
744
|
+
|
|
751
745
|
.col-xl-8 {
|
|
752
746
|
flex: 0 0 auto;
|
|
753
747
|
width: 66.6666666667%;
|
|
754
748
|
}
|
|
755
|
-
|
|
749
|
+
|
|
756
750
|
.offset-xl-8 {
|
|
757
751
|
margin-left: 66.6666666667%;
|
|
758
752
|
}
|
|
759
|
-
|
|
753
|
+
|
|
760
754
|
.col-xl-9 {
|
|
761
755
|
flex: 0 0 auto;
|
|
762
756
|
width: 75%;
|
|
763
757
|
}
|
|
764
|
-
|
|
758
|
+
|
|
765
759
|
.offset-xl-9 {
|
|
766
760
|
margin-left: 75%;
|
|
767
761
|
}
|
|
768
|
-
|
|
762
|
+
|
|
769
763
|
.col-xl-10 {
|
|
770
764
|
flex: 0 0 auto;
|
|
771
765
|
width: 83.3333333333%;
|
|
772
766
|
}
|
|
773
|
-
|
|
767
|
+
|
|
774
768
|
.offset-xl-10 {
|
|
775
769
|
margin-left: 83.3333333333%;
|
|
776
770
|
}
|
|
777
|
-
|
|
771
|
+
|
|
778
772
|
.col-xl-11 {
|
|
779
773
|
flex: 0 0 auto;
|
|
780
774
|
width: 91.6666666667%;
|
|
781
775
|
}
|
|
782
|
-
|
|
776
|
+
|
|
783
777
|
.offset-xl-11 {
|
|
784
778
|
margin-left: 91.6666666667%;
|
|
785
779
|
}
|
|
786
|
-
|
|
780
|
+
|
|
787
781
|
.col-xl-12 {
|
|
788
782
|
flex: 0 0 auto;
|
|
789
783
|
width: 100%;
|
|
790
784
|
}
|
|
791
|
-
|
|
785
|
+
|
|
792
786
|
.offset-xl-12 {
|
|
793
787
|
margin-left: 100%;
|
|
794
788
|
}
|
|
795
789
|
}
|
|
796
|
-
|
|
790
|
+
|
|
797
791
|
@media only screen and (width >= 1400px) {
|
|
798
792
|
.col-xxl-auto {
|
|
799
793
|
flex: 0 0 auto;
|
|
800
794
|
width: auto;
|
|
801
795
|
padding: 0 0;
|
|
802
796
|
}
|
|
803
|
-
|
|
797
|
+
|
|
804
798
|
.col-xxl-1 {
|
|
805
799
|
flex: 0 0 auto;
|
|
806
800
|
width: 8.3333333333%;
|
|
807
801
|
}
|
|
808
|
-
|
|
802
|
+
|
|
809
803
|
.offset-xxl-1 {
|
|
810
804
|
margin-left: 8.3333333333%;
|
|
811
805
|
}
|
|
812
|
-
|
|
806
|
+
|
|
813
807
|
.col-xxl-2 {
|
|
814
808
|
flex: 0 0 auto;
|
|
815
809
|
width: 16.6666666667%;
|
|
816
810
|
}
|
|
817
|
-
|
|
811
|
+
|
|
818
812
|
.offset-xxl-2 {
|
|
819
813
|
margin-left: 16.6666666667%;
|
|
820
814
|
}
|
|
821
|
-
|
|
815
|
+
|
|
822
816
|
.col-xxl-3 {
|
|
823
817
|
flex: 0 0 auto;
|
|
824
818
|
width: 25%;
|
|
825
819
|
}
|
|
826
|
-
|
|
820
|
+
|
|
827
821
|
.offset-xxl-3 {
|
|
828
822
|
margin-left: 25%;
|
|
829
823
|
}
|
|
830
|
-
|
|
824
|
+
|
|
831
825
|
.col-xxl-4 {
|
|
832
826
|
flex: 0 0 auto;
|
|
833
827
|
width: 33.3333333333%;
|
|
834
828
|
}
|
|
835
|
-
|
|
829
|
+
|
|
836
830
|
.offset-xxl-4 {
|
|
837
831
|
margin-left: 33.3333333333%;
|
|
838
832
|
}
|
|
839
|
-
|
|
833
|
+
|
|
840
834
|
.col-xxl-5 {
|
|
841
835
|
flex: 0 0 auto;
|
|
842
836
|
width: 41.6666666667%;
|
|
843
837
|
}
|
|
844
|
-
|
|
838
|
+
|
|
845
839
|
.offset-xxl-5 {
|
|
846
840
|
margin-left: 41.6666666667%;
|
|
847
841
|
}
|
|
848
|
-
|
|
842
|
+
|
|
849
843
|
.col-xxl-6 {
|
|
850
844
|
flex: 0 0 auto;
|
|
851
845
|
width: 50%;
|
|
852
846
|
}
|
|
853
|
-
|
|
847
|
+
|
|
854
848
|
.offset-xxl-6 {
|
|
855
849
|
margin-left: 50%;
|
|
856
850
|
}
|
|
857
|
-
|
|
851
|
+
|
|
858
852
|
.col-xxl-7 {
|
|
859
853
|
flex: 0 0 auto;
|
|
860
854
|
width: 58.3333333333%;
|
|
861
855
|
}
|
|
862
|
-
|
|
856
|
+
|
|
863
857
|
.offset-xxl-7 {
|
|
864
858
|
margin-left: 58.3333333333%;
|
|
865
859
|
}
|
|
866
|
-
|
|
860
|
+
|
|
867
861
|
.col-xxl-8 {
|
|
868
862
|
flex: 0 0 auto;
|
|
869
863
|
width: 66.6666666667%;
|
|
870
864
|
}
|
|
871
|
-
|
|
865
|
+
|
|
872
866
|
.offset-xxl-8 {
|
|
873
867
|
margin-left: 66.6666666667%;
|
|
874
868
|
}
|
|
875
|
-
|
|
869
|
+
|
|
876
870
|
.col-xxl-9 {
|
|
877
871
|
flex: 0 0 auto;
|
|
878
872
|
width: 75%;
|
|
879
873
|
}
|
|
880
|
-
|
|
874
|
+
|
|
881
875
|
.offset-xxl-9 {
|
|
882
876
|
margin-left: 75%;
|
|
883
877
|
}
|
|
884
|
-
|
|
878
|
+
|
|
885
879
|
.col-xxl-10 {
|
|
886
880
|
flex: 0 0 auto;
|
|
887
881
|
width: 83.3333333333%;
|
|
888
882
|
}
|
|
889
|
-
|
|
883
|
+
|
|
890
884
|
.offset-xxl-10 {
|
|
891
885
|
margin-left: 83.3333333333%;
|
|
892
886
|
}
|
|
893
|
-
|
|
887
|
+
|
|
894
888
|
.col-xxl-11 {
|
|
895
889
|
flex: 0 0 auto;
|
|
896
890
|
width: 91.6666666667%;
|
|
897
891
|
}
|
|
898
|
-
|
|
892
|
+
|
|
899
893
|
.offset-xxl-11 {
|
|
900
894
|
margin-left: 91.6666666667%;
|
|
901
895
|
}
|
|
902
|
-
|
|
896
|
+
|
|
903
897
|
.col-xxl-12 {
|
|
904
898
|
flex: 0 0 auto;
|
|
905
899
|
width: 100%;
|
|
906
900
|
}
|
|
907
|
-
|
|
901
|
+
|
|
908
902
|
.offset-xxl-12 {
|
|
909
903
|
margin-left: 100%;
|
|
910
904
|
}
|
|
@@ -932,7 +926,7 @@ vars.$testing: true;
|
|
|
932
926
|
padding: 0 8px;
|
|
933
927
|
}
|
|
934
928
|
}
|
|
935
|
-
|
|
929
|
+
|
|
936
930
|
.col-auto {
|
|
937
931
|
flex: 0 0 auto;
|
|
938
932
|
width: auto;
|
|
@@ -944,21 +938,25 @@ vars.$testing: true;
|
|
|
944
938
|
flex-direction: row-reverse;
|
|
945
939
|
}
|
|
946
940
|
}
|
|
941
|
+
|
|
947
942
|
@media only screen and (width >= 768px) {
|
|
948
943
|
.row.reverse-row-md {
|
|
949
944
|
flex-direction: row-reverse;
|
|
950
945
|
}
|
|
951
946
|
}
|
|
947
|
+
|
|
952
948
|
@media only screen and (width >= 992px) {
|
|
953
949
|
.row.reverse-row-lg {
|
|
954
950
|
flex-direction: row-reverse;
|
|
955
951
|
}
|
|
956
952
|
}
|
|
953
|
+
|
|
957
954
|
@media only screen and (width >= 1200px) {
|
|
958
955
|
.row.reverse-row-xl {
|
|
959
956
|
flex-direction: row-reverse;
|
|
960
957
|
}
|
|
961
958
|
}
|
|
959
|
+
|
|
962
960
|
@media only screen and (width >= 1400px) {
|
|
963
961
|
.row.reverse-row-xxl {
|
|
964
962
|
flex-direction: row-reverse;
|
|
@@ -967,6 +965,7 @@ vars.$testing: true;
|
|
|
967
965
|
|
|
968
966
|
.row.reverse-row-under-sm {
|
|
969
967
|
flex-direction: row-reverse;
|
|
968
|
+
|
|
970
969
|
@media only screen and (width >= 576px) {
|
|
971
970
|
flex-direction: row;
|
|
972
971
|
}
|
|
@@ -974,6 +973,7 @@ vars.$testing: true;
|
|
|
974
973
|
|
|
975
974
|
.row.reverse-row-under-md {
|
|
976
975
|
flex-direction: row-reverse;
|
|
976
|
+
|
|
977
977
|
@media only screen and (width >= 768px) {
|
|
978
978
|
flex-direction: row;
|
|
979
979
|
}
|
|
@@ -981,6 +981,7 @@ vars.$testing: true;
|
|
|
981
981
|
|
|
982
982
|
.row.reverse-row-under-lg {
|
|
983
983
|
flex-direction: row-reverse;
|
|
984
|
+
|
|
984
985
|
@media only screen and (width >= 992px) {
|
|
985
986
|
flex-direction: row;
|
|
986
987
|
}
|
|
@@ -988,6 +989,7 @@ vars.$testing: true;
|
|
|
988
989
|
|
|
989
990
|
.row.reverse-row-under-xl {
|
|
990
991
|
flex-direction: row-reverse;
|
|
992
|
+
|
|
991
993
|
@media only screen and (width >= 1200px) {
|
|
992
994
|
flex-direction: row;
|
|
993
995
|
}
|
|
@@ -995,27 +997,28 @@ vars.$testing: true;
|
|
|
995
997
|
|
|
996
998
|
.row.reverse-row-under-xxl {
|
|
997
999
|
flex-direction: row-reverse;
|
|
1000
|
+
|
|
998
1001
|
@media only screen and (width >= 1400px) {
|
|
999
1002
|
flex-direction: row;
|
|
1000
1003
|
}
|
|
1001
1004
|
}
|
|
1002
|
-
|
|
1005
|
+
|
|
1003
1006
|
.col-1 {
|
|
1004
1007
|
flex: 0 0 auto;
|
|
1005
1008
|
width: 50%;
|
|
1006
1009
|
padding: 0 8px;
|
|
1007
1010
|
}
|
|
1008
|
-
|
|
1011
|
+
|
|
1009
1012
|
.offset-1 {
|
|
1010
1013
|
margin-left: 50%;
|
|
1011
1014
|
}
|
|
1012
|
-
|
|
1015
|
+
|
|
1013
1016
|
.col-2 {
|
|
1014
1017
|
flex: 0 0 auto;
|
|
1015
1018
|
width: 100%;
|
|
1016
1019
|
padding: 0 8px;
|
|
1017
1020
|
}
|
|
1018
|
-
|
|
1021
|
+
|
|
1019
1022
|
.offset-2 {
|
|
1020
1023
|
margin-left: 100%;
|
|
1021
1024
|
}
|
|
@@ -1026,21 +1029,21 @@ vars.$testing: true;
|
|
|
1026
1029
|
width: auto;
|
|
1027
1030
|
padding: 0 8px;
|
|
1028
1031
|
}
|
|
1029
|
-
|
|
1032
|
+
|
|
1030
1033
|
.col-sm-1 {
|
|
1031
1034
|
flex: 0 0 auto;
|
|
1032
1035
|
width: 50%;
|
|
1033
1036
|
}
|
|
1034
|
-
|
|
1037
|
+
|
|
1035
1038
|
.offset-sm-1 {
|
|
1036
1039
|
margin-left: 50%;
|
|
1037
1040
|
}
|
|
1038
|
-
|
|
1041
|
+
|
|
1039
1042
|
.col-sm-2 {
|
|
1040
1043
|
flex: 0 0 auto;
|
|
1041
1044
|
width: 100%;
|
|
1042
1045
|
}
|
|
1043
|
-
|
|
1046
|
+
|
|
1044
1047
|
.offset-sm-2 {
|
|
1045
1048
|
margin-left: 100%;
|
|
1046
1049
|
}
|
|
@@ -1052,21 +1055,21 @@ vars.$testing: true;
|
|
|
1052
1055
|
width: auto;
|
|
1053
1056
|
padding: 0 8px;
|
|
1054
1057
|
}
|
|
1055
|
-
|
|
1058
|
+
|
|
1056
1059
|
.col-md-1 {
|
|
1057
1060
|
flex: 0 0 auto;
|
|
1058
1061
|
width: 50%;
|
|
1059
1062
|
}
|
|
1060
|
-
|
|
1063
|
+
|
|
1061
1064
|
.offset-md-1 {
|
|
1062
1065
|
margin-left: 50%;
|
|
1063
1066
|
}
|
|
1064
|
-
|
|
1067
|
+
|
|
1065
1068
|
.col-md-2 {
|
|
1066
1069
|
flex: 0 0 auto;
|
|
1067
1070
|
width: 100%;
|
|
1068
1071
|
}
|
|
1069
|
-
|
|
1072
|
+
|
|
1070
1073
|
.offset-md-2 {
|
|
1071
1074
|
margin-left: 100%;
|
|
1072
1075
|
}
|
|
@@ -1078,21 +1081,21 @@ vars.$testing: true;
|
|
|
1078
1081
|
width: auto;
|
|
1079
1082
|
padding: 0 8px;
|
|
1080
1083
|
}
|
|
1081
|
-
|
|
1084
|
+
|
|
1082
1085
|
.col-lg-1 {
|
|
1083
1086
|
flex: 0 0 auto;
|
|
1084
1087
|
width: 50%;
|
|
1085
1088
|
}
|
|
1086
|
-
|
|
1089
|
+
|
|
1087
1090
|
.offset-lg-1 {
|
|
1088
1091
|
margin-left: 50%;
|
|
1089
1092
|
}
|
|
1090
|
-
|
|
1093
|
+
|
|
1091
1094
|
.col-lg-2 {
|
|
1092
1095
|
flex: 0 0 auto;
|
|
1093
1096
|
width: 100%;
|
|
1094
1097
|
}
|
|
1095
|
-
|
|
1098
|
+
|
|
1096
1099
|
.offset-lg-2 {
|
|
1097
1100
|
margin-left: 100%;
|
|
1098
1101
|
}
|
|
@@ -1104,21 +1107,21 @@ vars.$testing: true;
|
|
|
1104
1107
|
width: auto;
|
|
1105
1108
|
padding: 0 8px;
|
|
1106
1109
|
}
|
|
1107
|
-
|
|
1110
|
+
|
|
1108
1111
|
.col-xl-1 {
|
|
1109
1112
|
flex: 0 0 auto;
|
|
1110
1113
|
width: 50%;
|
|
1111
1114
|
}
|
|
1112
|
-
|
|
1115
|
+
|
|
1113
1116
|
.offset-xl-1 {
|
|
1114
1117
|
margin-left: 50%;
|
|
1115
1118
|
}
|
|
1116
|
-
|
|
1119
|
+
|
|
1117
1120
|
.col-xl-2 {
|
|
1118
1121
|
flex: 0 0 auto;
|
|
1119
1122
|
width: 100%;
|
|
1120
1123
|
}
|
|
1121
|
-
|
|
1124
|
+
|
|
1122
1125
|
.offset-xl-2 {
|
|
1123
1126
|
margin-left: 100%;
|
|
1124
1127
|
}
|
|
@@ -1130,21 +1133,21 @@ vars.$testing: true;
|
|
|
1130
1133
|
width: auto;
|
|
1131
1134
|
padding: 0 8px;
|
|
1132
1135
|
}
|
|
1133
|
-
|
|
1136
|
+
|
|
1134
1137
|
.col-xxl-1 {
|
|
1135
1138
|
flex: 0 0 auto;
|
|
1136
1139
|
width: 50%;
|
|
1137
1140
|
}
|
|
1138
|
-
|
|
1141
|
+
|
|
1139
1142
|
.offset-xxl-1 {
|
|
1140
1143
|
margin-left: 50%;
|
|
1141
1144
|
}
|
|
1142
|
-
|
|
1145
|
+
|
|
1143
1146
|
.col-xxl-2 {
|
|
1144
1147
|
flex: 0 0 auto;
|
|
1145
1148
|
width: 100%;
|
|
1146
1149
|
}
|
|
1147
|
-
|
|
1150
|
+
|
|
1148
1151
|
.offset-xxl-2 {
|
|
1149
1152
|
margin-left: 100%;
|
|
1150
1153
|
}
|