jekyll-theme-clean-blog 4.0.0.1 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/assets/vendor/bootstrap/css/bootstrap-grid.css +106 -244
- data/assets/vendor/bootstrap/css/bootstrap-grid.min.css +2 -2
- data/assets/vendor/bootstrap/css/bootstrap-reboot.css +4 -4
- data/assets/vendor/bootstrap/css/bootstrap-reboot.min.css +2 -2
- data/assets/vendor/bootstrap/css/bootstrap.css +475 -469
- data/assets/vendor/bootstrap/css/bootstrap.min.css +2 -2
- data/assets/vendor/bootstrap/js/bootstrap.bundle.js +5347 -5231
- data/assets/vendor/bootstrap/js/bootstrap.bundle.min.js +2 -2
- data/assets/vendor/bootstrap/js/bootstrap.js +3076 -3043
- data/assets/vendor/bootstrap/js/bootstrap.min.js +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aef00e94b511a955c49fe2de5cb1fa07a7ddecdcb6914cf5b8777a7963cea020
|
4
|
+
data.tar.gz: 222c4ed044a49c6794589b449fa3a94a6dfee3dd8358b1e746f10f03a129e717
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24bbc2fddd4f873bf355f988533cf85d82c0578e8bafe502da0b3eedb205cd5f6b783c7adb493ca616ef849979ac0c6e23106f2710d96178bce61643209d622e
|
7
|
+
data.tar.gz: 10014f8deadf4f42d9d641fba518375fe82e54de1cc395b474105cf42828bc32cbf460a8727a7828df3f608e0a2545df6167e3b690150f74da00ccc168f0717b
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -139,4 +139,4 @@ Start Bootstrap is based on the [Bootstrap](http://getbootstrap.com/) framework
|
|
139
139
|
|
140
140
|
## Copyright and License
|
141
141
|
|
142
|
-
Copyright 2013-
|
142
|
+
Copyright 2013-2018 Blackrock Digital LLC. Code released under the [MIT](https://github.com/BlackrockDigital/startbootstrap-clean-blog-jekyll/blob/gh-pages/LICENSE) license.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Grid v4.
|
2
|
+
* Bootstrap Grid v4.1.1 (https://getbootstrap.com/)
|
3
3
|
* Copyright 2011-2018 The Bootstrap Authors
|
4
4
|
* Copyright 2011-2018 Twitter, Inc.
|
5
5
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
@@ -60,7 +60,6 @@ html {
|
|
60
60
|
}
|
61
61
|
|
62
62
|
.row {
|
63
|
-
display: -webkit-box;
|
64
63
|
display: -ms-flexbox;
|
65
64
|
display: flex;
|
66
65
|
-ms-flex-wrap: wrap;
|
@@ -96,14 +95,12 @@ html {
|
|
96
95
|
.col {
|
97
96
|
-ms-flex-preferred-size: 0;
|
98
97
|
flex-basis: 0;
|
99
|
-
-webkit-box-flex: 1;
|
100
98
|
-ms-flex-positive: 1;
|
101
99
|
flex-grow: 1;
|
102
100
|
max-width: 100%;
|
103
101
|
}
|
104
102
|
|
105
103
|
.col-auto {
|
106
|
-
-webkit-box-flex: 0;
|
107
104
|
-ms-flex: 0 0 auto;
|
108
105
|
flex: 0 0 auto;
|
109
106
|
width: auto;
|
@@ -111,175 +108,148 @@ html {
|
|
111
108
|
}
|
112
109
|
|
113
110
|
.col-1 {
|
114
|
-
-webkit-box-flex: 0;
|
115
111
|
-ms-flex: 0 0 8.333333%;
|
116
112
|
flex: 0 0 8.333333%;
|
117
113
|
max-width: 8.333333%;
|
118
114
|
}
|
119
115
|
|
120
116
|
.col-2 {
|
121
|
-
-webkit-box-flex: 0;
|
122
117
|
-ms-flex: 0 0 16.666667%;
|
123
118
|
flex: 0 0 16.666667%;
|
124
119
|
max-width: 16.666667%;
|
125
120
|
}
|
126
121
|
|
127
122
|
.col-3 {
|
128
|
-
-webkit-box-flex: 0;
|
129
123
|
-ms-flex: 0 0 25%;
|
130
124
|
flex: 0 0 25%;
|
131
125
|
max-width: 25%;
|
132
126
|
}
|
133
127
|
|
134
128
|
.col-4 {
|
135
|
-
-webkit-box-flex: 0;
|
136
129
|
-ms-flex: 0 0 33.333333%;
|
137
130
|
flex: 0 0 33.333333%;
|
138
131
|
max-width: 33.333333%;
|
139
132
|
}
|
140
133
|
|
141
134
|
.col-5 {
|
142
|
-
-webkit-box-flex: 0;
|
143
135
|
-ms-flex: 0 0 41.666667%;
|
144
136
|
flex: 0 0 41.666667%;
|
145
137
|
max-width: 41.666667%;
|
146
138
|
}
|
147
139
|
|
148
140
|
.col-6 {
|
149
|
-
-webkit-box-flex: 0;
|
150
141
|
-ms-flex: 0 0 50%;
|
151
142
|
flex: 0 0 50%;
|
152
143
|
max-width: 50%;
|
153
144
|
}
|
154
145
|
|
155
146
|
.col-7 {
|
156
|
-
-webkit-box-flex: 0;
|
157
147
|
-ms-flex: 0 0 58.333333%;
|
158
148
|
flex: 0 0 58.333333%;
|
159
149
|
max-width: 58.333333%;
|
160
150
|
}
|
161
151
|
|
162
152
|
.col-8 {
|
163
|
-
-webkit-box-flex: 0;
|
164
153
|
-ms-flex: 0 0 66.666667%;
|
165
154
|
flex: 0 0 66.666667%;
|
166
155
|
max-width: 66.666667%;
|
167
156
|
}
|
168
157
|
|
169
158
|
.col-9 {
|
170
|
-
-webkit-box-flex: 0;
|
171
159
|
-ms-flex: 0 0 75%;
|
172
160
|
flex: 0 0 75%;
|
173
161
|
max-width: 75%;
|
174
162
|
}
|
175
163
|
|
176
164
|
.col-10 {
|
177
|
-
-webkit-box-flex: 0;
|
178
165
|
-ms-flex: 0 0 83.333333%;
|
179
166
|
flex: 0 0 83.333333%;
|
180
167
|
max-width: 83.333333%;
|
181
168
|
}
|
182
169
|
|
183
170
|
.col-11 {
|
184
|
-
-webkit-box-flex: 0;
|
185
171
|
-ms-flex: 0 0 91.666667%;
|
186
172
|
flex: 0 0 91.666667%;
|
187
173
|
max-width: 91.666667%;
|
188
174
|
}
|
189
175
|
|
190
176
|
.col-12 {
|
191
|
-
-webkit-box-flex: 0;
|
192
177
|
-ms-flex: 0 0 100%;
|
193
178
|
flex: 0 0 100%;
|
194
179
|
max-width: 100%;
|
195
180
|
}
|
196
181
|
|
197
182
|
.order-first {
|
198
|
-
-webkit-box-ordinal-group: 0;
|
199
183
|
-ms-flex-order: -1;
|
200
184
|
order: -1;
|
201
185
|
}
|
202
186
|
|
203
187
|
.order-last {
|
204
|
-
-webkit-box-ordinal-group: 14;
|
205
188
|
-ms-flex-order: 13;
|
206
189
|
order: 13;
|
207
190
|
}
|
208
191
|
|
209
192
|
.order-0 {
|
210
|
-
-webkit-box-ordinal-group: 1;
|
211
193
|
-ms-flex-order: 0;
|
212
194
|
order: 0;
|
213
195
|
}
|
214
196
|
|
215
197
|
.order-1 {
|
216
|
-
-webkit-box-ordinal-group: 2;
|
217
198
|
-ms-flex-order: 1;
|
218
199
|
order: 1;
|
219
200
|
}
|
220
201
|
|
221
202
|
.order-2 {
|
222
|
-
-webkit-box-ordinal-group: 3;
|
223
203
|
-ms-flex-order: 2;
|
224
204
|
order: 2;
|
225
205
|
}
|
226
206
|
|
227
207
|
.order-3 {
|
228
|
-
-webkit-box-ordinal-group: 4;
|
229
208
|
-ms-flex-order: 3;
|
230
209
|
order: 3;
|
231
210
|
}
|
232
211
|
|
233
212
|
.order-4 {
|
234
|
-
-webkit-box-ordinal-group: 5;
|
235
213
|
-ms-flex-order: 4;
|
236
214
|
order: 4;
|
237
215
|
}
|
238
216
|
|
239
217
|
.order-5 {
|
240
|
-
-webkit-box-ordinal-group: 6;
|
241
218
|
-ms-flex-order: 5;
|
242
219
|
order: 5;
|
243
220
|
}
|
244
221
|
|
245
222
|
.order-6 {
|
246
|
-
-webkit-box-ordinal-group: 7;
|
247
223
|
-ms-flex-order: 6;
|
248
224
|
order: 6;
|
249
225
|
}
|
250
226
|
|
251
227
|
.order-7 {
|
252
|
-
-webkit-box-ordinal-group: 8;
|
253
228
|
-ms-flex-order: 7;
|
254
229
|
order: 7;
|
255
230
|
}
|
256
231
|
|
257
232
|
.order-8 {
|
258
|
-
-webkit-box-ordinal-group: 9;
|
259
233
|
-ms-flex-order: 8;
|
260
234
|
order: 8;
|
261
235
|
}
|
262
236
|
|
263
237
|
.order-9 {
|
264
|
-
-webkit-box-ordinal-group: 10;
|
265
238
|
-ms-flex-order: 9;
|
266
239
|
order: 9;
|
267
240
|
}
|
268
241
|
|
269
242
|
.order-10 {
|
270
|
-
-webkit-box-ordinal-group: 11;
|
271
243
|
-ms-flex-order: 10;
|
272
244
|
order: 10;
|
273
245
|
}
|
274
246
|
|
275
247
|
.order-11 {
|
276
|
-
-webkit-box-ordinal-group: 12;
|
277
248
|
-ms-flex-order: 11;
|
278
249
|
order: 11;
|
279
250
|
}
|
280
251
|
|
281
252
|
.order-12 {
|
282
|
-
-webkit-box-ordinal-group: 13;
|
283
253
|
-ms-flex-order: 12;
|
284
254
|
order: 12;
|
285
255
|
}
|
@@ -332,162 +302,133 @@ html {
|
|
332
302
|
.col-sm {
|
333
303
|
-ms-flex-preferred-size: 0;
|
334
304
|
flex-basis: 0;
|
335
|
-
-webkit-box-flex: 1;
|
336
305
|
-ms-flex-positive: 1;
|
337
306
|
flex-grow: 1;
|
338
307
|
max-width: 100%;
|
339
308
|
}
|
340
309
|
.col-sm-auto {
|
341
|
-
-webkit-box-flex: 0;
|
342
310
|
-ms-flex: 0 0 auto;
|
343
311
|
flex: 0 0 auto;
|
344
312
|
width: auto;
|
345
313
|
max-width: none;
|
346
314
|
}
|
347
315
|
.col-sm-1 {
|
348
|
-
-webkit-box-flex: 0;
|
349
316
|
-ms-flex: 0 0 8.333333%;
|
350
317
|
flex: 0 0 8.333333%;
|
351
318
|
max-width: 8.333333%;
|
352
319
|
}
|
353
320
|
.col-sm-2 {
|
354
|
-
-webkit-box-flex: 0;
|
355
321
|
-ms-flex: 0 0 16.666667%;
|
356
322
|
flex: 0 0 16.666667%;
|
357
323
|
max-width: 16.666667%;
|
358
324
|
}
|
359
325
|
.col-sm-3 {
|
360
|
-
-webkit-box-flex: 0;
|
361
326
|
-ms-flex: 0 0 25%;
|
362
327
|
flex: 0 0 25%;
|
363
328
|
max-width: 25%;
|
364
329
|
}
|
365
330
|
.col-sm-4 {
|
366
|
-
-webkit-box-flex: 0;
|
367
331
|
-ms-flex: 0 0 33.333333%;
|
368
332
|
flex: 0 0 33.333333%;
|
369
333
|
max-width: 33.333333%;
|
370
334
|
}
|
371
335
|
.col-sm-5 {
|
372
|
-
-webkit-box-flex: 0;
|
373
336
|
-ms-flex: 0 0 41.666667%;
|
374
337
|
flex: 0 0 41.666667%;
|
375
338
|
max-width: 41.666667%;
|
376
339
|
}
|
377
340
|
.col-sm-6 {
|
378
|
-
-webkit-box-flex: 0;
|
379
341
|
-ms-flex: 0 0 50%;
|
380
342
|
flex: 0 0 50%;
|
381
343
|
max-width: 50%;
|
382
344
|
}
|
383
345
|
.col-sm-7 {
|
384
|
-
-webkit-box-flex: 0;
|
385
346
|
-ms-flex: 0 0 58.333333%;
|
386
347
|
flex: 0 0 58.333333%;
|
387
348
|
max-width: 58.333333%;
|
388
349
|
}
|
389
350
|
.col-sm-8 {
|
390
|
-
-webkit-box-flex: 0;
|
391
351
|
-ms-flex: 0 0 66.666667%;
|
392
352
|
flex: 0 0 66.666667%;
|
393
353
|
max-width: 66.666667%;
|
394
354
|
}
|
395
355
|
.col-sm-9 {
|
396
|
-
-webkit-box-flex: 0;
|
397
356
|
-ms-flex: 0 0 75%;
|
398
357
|
flex: 0 0 75%;
|
399
358
|
max-width: 75%;
|
400
359
|
}
|
401
360
|
.col-sm-10 {
|
402
|
-
-webkit-box-flex: 0;
|
403
361
|
-ms-flex: 0 0 83.333333%;
|
404
362
|
flex: 0 0 83.333333%;
|
405
363
|
max-width: 83.333333%;
|
406
364
|
}
|
407
365
|
.col-sm-11 {
|
408
|
-
-webkit-box-flex: 0;
|
409
366
|
-ms-flex: 0 0 91.666667%;
|
410
367
|
flex: 0 0 91.666667%;
|
411
368
|
max-width: 91.666667%;
|
412
369
|
}
|
413
370
|
.col-sm-12 {
|
414
|
-
-webkit-box-flex: 0;
|
415
371
|
-ms-flex: 0 0 100%;
|
416
372
|
flex: 0 0 100%;
|
417
373
|
max-width: 100%;
|
418
374
|
}
|
419
375
|
.order-sm-first {
|
420
|
-
-webkit-box-ordinal-group: 0;
|
421
376
|
-ms-flex-order: -1;
|
422
377
|
order: -1;
|
423
378
|
}
|
424
379
|
.order-sm-last {
|
425
|
-
-webkit-box-ordinal-group: 14;
|
426
380
|
-ms-flex-order: 13;
|
427
381
|
order: 13;
|
428
382
|
}
|
429
383
|
.order-sm-0 {
|
430
|
-
-webkit-box-ordinal-group: 1;
|
431
384
|
-ms-flex-order: 0;
|
432
385
|
order: 0;
|
433
386
|
}
|
434
387
|
.order-sm-1 {
|
435
|
-
-webkit-box-ordinal-group: 2;
|
436
388
|
-ms-flex-order: 1;
|
437
389
|
order: 1;
|
438
390
|
}
|
439
391
|
.order-sm-2 {
|
440
|
-
-webkit-box-ordinal-group: 3;
|
441
392
|
-ms-flex-order: 2;
|
442
393
|
order: 2;
|
443
394
|
}
|
444
395
|
.order-sm-3 {
|
445
|
-
-webkit-box-ordinal-group: 4;
|
446
396
|
-ms-flex-order: 3;
|
447
397
|
order: 3;
|
448
398
|
}
|
449
399
|
.order-sm-4 {
|
450
|
-
-webkit-box-ordinal-group: 5;
|
451
400
|
-ms-flex-order: 4;
|
452
401
|
order: 4;
|
453
402
|
}
|
454
403
|
.order-sm-5 {
|
455
|
-
-webkit-box-ordinal-group: 6;
|
456
404
|
-ms-flex-order: 5;
|
457
405
|
order: 5;
|
458
406
|
}
|
459
407
|
.order-sm-6 {
|
460
|
-
-webkit-box-ordinal-group: 7;
|
461
408
|
-ms-flex-order: 6;
|
462
409
|
order: 6;
|
463
410
|
}
|
464
411
|
.order-sm-7 {
|
465
|
-
-webkit-box-ordinal-group: 8;
|
466
412
|
-ms-flex-order: 7;
|
467
413
|
order: 7;
|
468
414
|
}
|
469
415
|
.order-sm-8 {
|
470
|
-
-webkit-box-ordinal-group: 9;
|
471
416
|
-ms-flex-order: 8;
|
472
417
|
order: 8;
|
473
418
|
}
|
474
419
|
.order-sm-9 {
|
475
|
-
-webkit-box-ordinal-group: 10;
|
476
420
|
-ms-flex-order: 9;
|
477
421
|
order: 9;
|
478
422
|
}
|
479
423
|
.order-sm-10 {
|
480
|
-
-webkit-box-ordinal-group: 11;
|
481
424
|
-ms-flex-order: 10;
|
482
425
|
order: 10;
|
483
426
|
}
|
484
427
|
.order-sm-11 {
|
485
|
-
-webkit-box-ordinal-group: 12;
|
486
428
|
-ms-flex-order: 11;
|
487
429
|
order: 11;
|
488
430
|
}
|
489
431
|
.order-sm-12 {
|
490
|
-
-webkit-box-ordinal-group: 13;
|
491
432
|
-ms-flex-order: 12;
|
492
433
|
order: 12;
|
493
434
|
}
|
@@ -533,162 +474,133 @@ html {
|
|
533
474
|
.col-md {
|
534
475
|
-ms-flex-preferred-size: 0;
|
535
476
|
flex-basis: 0;
|
536
|
-
-webkit-box-flex: 1;
|
537
477
|
-ms-flex-positive: 1;
|
538
478
|
flex-grow: 1;
|
539
479
|
max-width: 100%;
|
540
480
|
}
|
541
481
|
.col-md-auto {
|
542
|
-
-webkit-box-flex: 0;
|
543
482
|
-ms-flex: 0 0 auto;
|
544
483
|
flex: 0 0 auto;
|
545
484
|
width: auto;
|
546
485
|
max-width: none;
|
547
486
|
}
|
548
487
|
.col-md-1 {
|
549
|
-
-webkit-box-flex: 0;
|
550
488
|
-ms-flex: 0 0 8.333333%;
|
551
489
|
flex: 0 0 8.333333%;
|
552
490
|
max-width: 8.333333%;
|
553
491
|
}
|
554
492
|
.col-md-2 {
|
555
|
-
-webkit-box-flex: 0;
|
556
493
|
-ms-flex: 0 0 16.666667%;
|
557
494
|
flex: 0 0 16.666667%;
|
558
495
|
max-width: 16.666667%;
|
559
496
|
}
|
560
497
|
.col-md-3 {
|
561
|
-
-webkit-box-flex: 0;
|
562
498
|
-ms-flex: 0 0 25%;
|
563
499
|
flex: 0 0 25%;
|
564
500
|
max-width: 25%;
|
565
501
|
}
|
566
502
|
.col-md-4 {
|
567
|
-
-webkit-box-flex: 0;
|
568
503
|
-ms-flex: 0 0 33.333333%;
|
569
504
|
flex: 0 0 33.333333%;
|
570
505
|
max-width: 33.333333%;
|
571
506
|
}
|
572
507
|
.col-md-5 {
|
573
|
-
-webkit-box-flex: 0;
|
574
508
|
-ms-flex: 0 0 41.666667%;
|
575
509
|
flex: 0 0 41.666667%;
|
576
510
|
max-width: 41.666667%;
|
577
511
|
}
|
578
512
|
.col-md-6 {
|
579
|
-
-webkit-box-flex: 0;
|
580
513
|
-ms-flex: 0 0 50%;
|
581
514
|
flex: 0 0 50%;
|
582
515
|
max-width: 50%;
|
583
516
|
}
|
584
517
|
.col-md-7 {
|
585
|
-
-webkit-box-flex: 0;
|
586
518
|
-ms-flex: 0 0 58.333333%;
|
587
519
|
flex: 0 0 58.333333%;
|
588
520
|
max-width: 58.333333%;
|
589
521
|
}
|
590
522
|
.col-md-8 {
|
591
|
-
-webkit-box-flex: 0;
|
592
523
|
-ms-flex: 0 0 66.666667%;
|
593
524
|
flex: 0 0 66.666667%;
|
594
525
|
max-width: 66.666667%;
|
595
526
|
}
|
596
527
|
.col-md-9 {
|
597
|
-
-webkit-box-flex: 0;
|
598
528
|
-ms-flex: 0 0 75%;
|
599
529
|
flex: 0 0 75%;
|
600
530
|
max-width: 75%;
|
601
531
|
}
|
602
532
|
.col-md-10 {
|
603
|
-
-webkit-box-flex: 0;
|
604
533
|
-ms-flex: 0 0 83.333333%;
|
605
534
|
flex: 0 0 83.333333%;
|
606
535
|
max-width: 83.333333%;
|
607
536
|
}
|
608
537
|
.col-md-11 {
|
609
|
-
-webkit-box-flex: 0;
|
610
538
|
-ms-flex: 0 0 91.666667%;
|
611
539
|
flex: 0 0 91.666667%;
|
612
540
|
max-width: 91.666667%;
|
613
541
|
}
|
614
542
|
.col-md-12 {
|
615
|
-
-webkit-box-flex: 0;
|
616
543
|
-ms-flex: 0 0 100%;
|
617
544
|
flex: 0 0 100%;
|
618
545
|
max-width: 100%;
|
619
546
|
}
|
620
547
|
.order-md-first {
|
621
|
-
-webkit-box-ordinal-group: 0;
|
622
548
|
-ms-flex-order: -1;
|
623
549
|
order: -1;
|
624
550
|
}
|
625
551
|
.order-md-last {
|
626
|
-
-webkit-box-ordinal-group: 14;
|
627
552
|
-ms-flex-order: 13;
|
628
553
|
order: 13;
|
629
554
|
}
|
630
555
|
.order-md-0 {
|
631
|
-
-webkit-box-ordinal-group: 1;
|
632
556
|
-ms-flex-order: 0;
|
633
557
|
order: 0;
|
634
558
|
}
|
635
559
|
.order-md-1 {
|
636
|
-
-webkit-box-ordinal-group: 2;
|
637
560
|
-ms-flex-order: 1;
|
638
561
|
order: 1;
|
639
562
|
}
|
640
563
|
.order-md-2 {
|
641
|
-
-webkit-box-ordinal-group: 3;
|
642
564
|
-ms-flex-order: 2;
|
643
565
|
order: 2;
|
644
566
|
}
|
645
567
|
.order-md-3 {
|
646
|
-
-webkit-box-ordinal-group: 4;
|
647
568
|
-ms-flex-order: 3;
|
648
569
|
order: 3;
|
649
570
|
}
|
650
571
|
.order-md-4 {
|
651
|
-
-webkit-box-ordinal-group: 5;
|
652
572
|
-ms-flex-order: 4;
|
653
573
|
order: 4;
|
654
574
|
}
|
655
575
|
.order-md-5 {
|
656
|
-
-webkit-box-ordinal-group: 6;
|
657
576
|
-ms-flex-order: 5;
|
658
577
|
order: 5;
|
659
578
|
}
|
660
579
|
.order-md-6 {
|
661
|
-
-webkit-box-ordinal-group: 7;
|
662
580
|
-ms-flex-order: 6;
|
663
581
|
order: 6;
|
664
582
|
}
|
665
583
|
.order-md-7 {
|
666
|
-
-webkit-box-ordinal-group: 8;
|
667
584
|
-ms-flex-order: 7;
|
668
585
|
order: 7;
|
669
586
|
}
|
670
587
|
.order-md-8 {
|
671
|
-
-webkit-box-ordinal-group: 9;
|
672
588
|
-ms-flex-order: 8;
|
673
589
|
order: 8;
|
674
590
|
}
|
675
591
|
.order-md-9 {
|
676
|
-
-webkit-box-ordinal-group: 10;
|
677
592
|
-ms-flex-order: 9;
|
678
593
|
order: 9;
|
679
594
|
}
|
680
595
|
.order-md-10 {
|
681
|
-
-webkit-box-ordinal-group: 11;
|
682
596
|
-ms-flex-order: 10;
|
683
597
|
order: 10;
|
684
598
|
}
|
685
599
|
.order-md-11 {
|
686
|
-
-webkit-box-ordinal-group: 12;
|
687
600
|
-ms-flex-order: 11;
|
688
601
|
order: 11;
|
689
602
|
}
|
690
603
|
.order-md-12 {
|
691
|
-
-webkit-box-ordinal-group: 13;
|
692
604
|
-ms-flex-order: 12;
|
693
605
|
order: 12;
|
694
606
|
}
|
@@ -734,162 +646,133 @@ html {
|
|
734
646
|
.col-lg {
|
735
647
|
-ms-flex-preferred-size: 0;
|
736
648
|
flex-basis: 0;
|
737
|
-
-webkit-box-flex: 1;
|
738
649
|
-ms-flex-positive: 1;
|
739
650
|
flex-grow: 1;
|
740
651
|
max-width: 100%;
|
741
652
|
}
|
742
653
|
.col-lg-auto {
|
743
|
-
-webkit-box-flex: 0;
|
744
654
|
-ms-flex: 0 0 auto;
|
745
655
|
flex: 0 0 auto;
|
746
656
|
width: auto;
|
747
657
|
max-width: none;
|
748
658
|
}
|
749
659
|
.col-lg-1 {
|
750
|
-
-webkit-box-flex: 0;
|
751
660
|
-ms-flex: 0 0 8.333333%;
|
752
661
|
flex: 0 0 8.333333%;
|
753
662
|
max-width: 8.333333%;
|
754
663
|
}
|
755
664
|
.col-lg-2 {
|
756
|
-
-webkit-box-flex: 0;
|
757
665
|
-ms-flex: 0 0 16.666667%;
|
758
666
|
flex: 0 0 16.666667%;
|
759
667
|
max-width: 16.666667%;
|
760
668
|
}
|
761
669
|
.col-lg-3 {
|
762
|
-
-webkit-box-flex: 0;
|
763
670
|
-ms-flex: 0 0 25%;
|
764
671
|
flex: 0 0 25%;
|
765
672
|
max-width: 25%;
|
766
673
|
}
|
767
674
|
.col-lg-4 {
|
768
|
-
-webkit-box-flex: 0;
|
769
675
|
-ms-flex: 0 0 33.333333%;
|
770
676
|
flex: 0 0 33.333333%;
|
771
677
|
max-width: 33.333333%;
|
772
678
|
}
|
773
679
|
.col-lg-5 {
|
774
|
-
-webkit-box-flex: 0;
|
775
680
|
-ms-flex: 0 0 41.666667%;
|
776
681
|
flex: 0 0 41.666667%;
|
777
682
|
max-width: 41.666667%;
|
778
683
|
}
|
779
684
|
.col-lg-6 {
|
780
|
-
-webkit-box-flex: 0;
|
781
685
|
-ms-flex: 0 0 50%;
|
782
686
|
flex: 0 0 50%;
|
783
687
|
max-width: 50%;
|
784
688
|
}
|
785
689
|
.col-lg-7 {
|
786
|
-
-webkit-box-flex: 0;
|
787
690
|
-ms-flex: 0 0 58.333333%;
|
788
691
|
flex: 0 0 58.333333%;
|
789
692
|
max-width: 58.333333%;
|
790
693
|
}
|
791
694
|
.col-lg-8 {
|
792
|
-
-webkit-box-flex: 0;
|
793
695
|
-ms-flex: 0 0 66.666667%;
|
794
696
|
flex: 0 0 66.666667%;
|
795
697
|
max-width: 66.666667%;
|
796
698
|
}
|
797
699
|
.col-lg-9 {
|
798
|
-
-webkit-box-flex: 0;
|
799
700
|
-ms-flex: 0 0 75%;
|
800
701
|
flex: 0 0 75%;
|
801
702
|
max-width: 75%;
|
802
703
|
}
|
803
704
|
.col-lg-10 {
|
804
|
-
-webkit-box-flex: 0;
|
805
705
|
-ms-flex: 0 0 83.333333%;
|
806
706
|
flex: 0 0 83.333333%;
|
807
707
|
max-width: 83.333333%;
|
808
708
|
}
|
809
709
|
.col-lg-11 {
|
810
|
-
-webkit-box-flex: 0;
|
811
710
|
-ms-flex: 0 0 91.666667%;
|
812
711
|
flex: 0 0 91.666667%;
|
813
712
|
max-width: 91.666667%;
|
814
713
|
}
|
815
714
|
.col-lg-12 {
|
816
|
-
-webkit-box-flex: 0;
|
817
715
|
-ms-flex: 0 0 100%;
|
818
716
|
flex: 0 0 100%;
|
819
717
|
max-width: 100%;
|
820
718
|
}
|
821
719
|
.order-lg-first {
|
822
|
-
-webkit-box-ordinal-group: 0;
|
823
720
|
-ms-flex-order: -1;
|
824
721
|
order: -1;
|
825
722
|
}
|
826
723
|
.order-lg-last {
|
827
|
-
-webkit-box-ordinal-group: 14;
|
828
724
|
-ms-flex-order: 13;
|
829
725
|
order: 13;
|
830
726
|
}
|
831
727
|
.order-lg-0 {
|
832
|
-
-webkit-box-ordinal-group: 1;
|
833
728
|
-ms-flex-order: 0;
|
834
729
|
order: 0;
|
835
730
|
}
|
836
731
|
.order-lg-1 {
|
837
|
-
-webkit-box-ordinal-group: 2;
|
838
732
|
-ms-flex-order: 1;
|
839
733
|
order: 1;
|
840
734
|
}
|
841
735
|
.order-lg-2 {
|
842
|
-
-webkit-box-ordinal-group: 3;
|
843
736
|
-ms-flex-order: 2;
|
844
737
|
order: 2;
|
845
738
|
}
|
846
739
|
.order-lg-3 {
|
847
|
-
-webkit-box-ordinal-group: 4;
|
848
740
|
-ms-flex-order: 3;
|
849
741
|
order: 3;
|
850
742
|
}
|
851
743
|
.order-lg-4 {
|
852
|
-
-webkit-box-ordinal-group: 5;
|
853
744
|
-ms-flex-order: 4;
|
854
745
|
order: 4;
|
855
746
|
}
|
856
747
|
.order-lg-5 {
|
857
|
-
-webkit-box-ordinal-group: 6;
|
858
748
|
-ms-flex-order: 5;
|
859
749
|
order: 5;
|
860
750
|
}
|
861
751
|
.order-lg-6 {
|
862
|
-
-webkit-box-ordinal-group: 7;
|
863
752
|
-ms-flex-order: 6;
|
864
753
|
order: 6;
|
865
754
|
}
|
866
755
|
.order-lg-7 {
|
867
|
-
-webkit-box-ordinal-group: 8;
|
868
756
|
-ms-flex-order: 7;
|
869
757
|
order: 7;
|
870
758
|
}
|
871
759
|
.order-lg-8 {
|
872
|
-
-webkit-box-ordinal-group: 9;
|
873
760
|
-ms-flex-order: 8;
|
874
761
|
order: 8;
|
875
762
|
}
|
876
763
|
.order-lg-9 {
|
877
|
-
-webkit-box-ordinal-group: 10;
|
878
764
|
-ms-flex-order: 9;
|
879
765
|
order: 9;
|
880
766
|
}
|
881
767
|
.order-lg-10 {
|
882
|
-
-webkit-box-ordinal-group: 11;
|
883
768
|
-ms-flex-order: 10;
|
884
769
|
order: 10;
|
885
770
|
}
|
886
771
|
.order-lg-11 {
|
887
|
-
-webkit-box-ordinal-group: 12;
|
888
772
|
-ms-flex-order: 11;
|
889
773
|
order: 11;
|
890
774
|
}
|
891
775
|
.order-lg-12 {
|
892
|
-
-webkit-box-ordinal-group: 13;
|
893
776
|
-ms-flex-order: 12;
|
894
777
|
order: 12;
|
895
778
|
}
|
@@ -935,162 +818,133 @@ html {
|
|
935
818
|
.col-xl {
|
936
819
|
-ms-flex-preferred-size: 0;
|
937
820
|
flex-basis: 0;
|
938
|
-
-webkit-box-flex: 1;
|
939
821
|
-ms-flex-positive: 1;
|
940
822
|
flex-grow: 1;
|
941
823
|
max-width: 100%;
|
942
824
|
}
|
943
825
|
.col-xl-auto {
|
944
|
-
-webkit-box-flex: 0;
|
945
826
|
-ms-flex: 0 0 auto;
|
946
827
|
flex: 0 0 auto;
|
947
828
|
width: auto;
|
948
829
|
max-width: none;
|
949
830
|
}
|
950
831
|
.col-xl-1 {
|
951
|
-
-webkit-box-flex: 0;
|
952
832
|
-ms-flex: 0 0 8.333333%;
|
953
833
|
flex: 0 0 8.333333%;
|
954
834
|
max-width: 8.333333%;
|
955
835
|
}
|
956
836
|
.col-xl-2 {
|
957
|
-
-webkit-box-flex: 0;
|
958
837
|
-ms-flex: 0 0 16.666667%;
|
959
838
|
flex: 0 0 16.666667%;
|
960
839
|
max-width: 16.666667%;
|
961
840
|
}
|
962
841
|
.col-xl-3 {
|
963
|
-
-webkit-box-flex: 0;
|
964
842
|
-ms-flex: 0 0 25%;
|
965
843
|
flex: 0 0 25%;
|
966
844
|
max-width: 25%;
|
967
845
|
}
|
968
846
|
.col-xl-4 {
|
969
|
-
-webkit-box-flex: 0;
|
970
847
|
-ms-flex: 0 0 33.333333%;
|
971
848
|
flex: 0 0 33.333333%;
|
972
849
|
max-width: 33.333333%;
|
973
850
|
}
|
974
851
|
.col-xl-5 {
|
975
|
-
-webkit-box-flex: 0;
|
976
852
|
-ms-flex: 0 0 41.666667%;
|
977
853
|
flex: 0 0 41.666667%;
|
978
854
|
max-width: 41.666667%;
|
979
855
|
}
|
980
856
|
.col-xl-6 {
|
981
|
-
-webkit-box-flex: 0;
|
982
857
|
-ms-flex: 0 0 50%;
|
983
858
|
flex: 0 0 50%;
|
984
859
|
max-width: 50%;
|
985
860
|
}
|
986
861
|
.col-xl-7 {
|
987
|
-
-webkit-box-flex: 0;
|
988
862
|
-ms-flex: 0 0 58.333333%;
|
989
863
|
flex: 0 0 58.333333%;
|
990
864
|
max-width: 58.333333%;
|
991
865
|
}
|
992
866
|
.col-xl-8 {
|
993
|
-
-webkit-box-flex: 0;
|
994
867
|
-ms-flex: 0 0 66.666667%;
|
995
868
|
flex: 0 0 66.666667%;
|
996
869
|
max-width: 66.666667%;
|
997
870
|
}
|
998
871
|
.col-xl-9 {
|
999
|
-
-webkit-box-flex: 0;
|
1000
872
|
-ms-flex: 0 0 75%;
|
1001
873
|
flex: 0 0 75%;
|
1002
874
|
max-width: 75%;
|
1003
875
|
}
|
1004
876
|
.col-xl-10 {
|
1005
|
-
-webkit-box-flex: 0;
|
1006
877
|
-ms-flex: 0 0 83.333333%;
|
1007
878
|
flex: 0 0 83.333333%;
|
1008
879
|
max-width: 83.333333%;
|
1009
880
|
}
|
1010
881
|
.col-xl-11 {
|
1011
|
-
-webkit-box-flex: 0;
|
1012
882
|
-ms-flex: 0 0 91.666667%;
|
1013
883
|
flex: 0 0 91.666667%;
|
1014
884
|
max-width: 91.666667%;
|
1015
885
|
}
|
1016
886
|
.col-xl-12 {
|
1017
|
-
-webkit-box-flex: 0;
|
1018
887
|
-ms-flex: 0 0 100%;
|
1019
888
|
flex: 0 0 100%;
|
1020
889
|
max-width: 100%;
|
1021
890
|
}
|
1022
891
|
.order-xl-first {
|
1023
|
-
-webkit-box-ordinal-group: 0;
|
1024
892
|
-ms-flex-order: -1;
|
1025
893
|
order: -1;
|
1026
894
|
}
|
1027
895
|
.order-xl-last {
|
1028
|
-
-webkit-box-ordinal-group: 14;
|
1029
896
|
-ms-flex-order: 13;
|
1030
897
|
order: 13;
|
1031
898
|
}
|
1032
899
|
.order-xl-0 {
|
1033
|
-
-webkit-box-ordinal-group: 1;
|
1034
900
|
-ms-flex-order: 0;
|
1035
901
|
order: 0;
|
1036
902
|
}
|
1037
903
|
.order-xl-1 {
|
1038
|
-
-webkit-box-ordinal-group: 2;
|
1039
904
|
-ms-flex-order: 1;
|
1040
905
|
order: 1;
|
1041
906
|
}
|
1042
907
|
.order-xl-2 {
|
1043
|
-
-webkit-box-ordinal-group: 3;
|
1044
908
|
-ms-flex-order: 2;
|
1045
909
|
order: 2;
|
1046
910
|
}
|
1047
911
|
.order-xl-3 {
|
1048
|
-
-webkit-box-ordinal-group: 4;
|
1049
912
|
-ms-flex-order: 3;
|
1050
913
|
order: 3;
|
1051
914
|
}
|
1052
915
|
.order-xl-4 {
|
1053
|
-
-webkit-box-ordinal-group: 5;
|
1054
916
|
-ms-flex-order: 4;
|
1055
917
|
order: 4;
|
1056
918
|
}
|
1057
919
|
.order-xl-5 {
|
1058
|
-
-webkit-box-ordinal-group: 6;
|
1059
920
|
-ms-flex-order: 5;
|
1060
921
|
order: 5;
|
1061
922
|
}
|
1062
923
|
.order-xl-6 {
|
1063
|
-
-webkit-box-ordinal-group: 7;
|
1064
924
|
-ms-flex-order: 6;
|
1065
925
|
order: 6;
|
1066
926
|
}
|
1067
927
|
.order-xl-7 {
|
1068
|
-
-webkit-box-ordinal-group: 8;
|
1069
928
|
-ms-flex-order: 7;
|
1070
929
|
order: 7;
|
1071
930
|
}
|
1072
931
|
.order-xl-8 {
|
1073
|
-
-webkit-box-ordinal-group: 9;
|
1074
932
|
-ms-flex-order: 8;
|
1075
933
|
order: 8;
|
1076
934
|
}
|
1077
935
|
.order-xl-9 {
|
1078
|
-
-webkit-box-ordinal-group: 10;
|
1079
936
|
-ms-flex-order: 9;
|
1080
937
|
order: 9;
|
1081
938
|
}
|
1082
939
|
.order-xl-10 {
|
1083
|
-
-webkit-box-ordinal-group: 11;
|
1084
940
|
-ms-flex-order: 10;
|
1085
941
|
order: 10;
|
1086
942
|
}
|
1087
943
|
.order-xl-11 {
|
1088
|
-
-webkit-box-ordinal-group: 12;
|
1089
944
|
-ms-flex-order: 11;
|
1090
945
|
order: 11;
|
1091
946
|
}
|
1092
947
|
.order-xl-12 {
|
1093
|
-
-webkit-box-ordinal-group: 13;
|
1094
948
|
-ms-flex-order: 12;
|
1095
949
|
order: 12;
|
1096
950
|
}
|
@@ -1161,13 +1015,11 @@ html {
|
|
1161
1015
|
}
|
1162
1016
|
|
1163
1017
|
.d-flex {
|
1164
|
-
display: -webkit-box !important;
|
1165
1018
|
display: -ms-flexbox !important;
|
1166
1019
|
display: flex !important;
|
1167
1020
|
}
|
1168
1021
|
|
1169
1022
|
.d-inline-flex {
|
1170
|
-
display: -webkit-inline-box !important;
|
1171
1023
|
display: -ms-inline-flexbox !important;
|
1172
1024
|
display: inline-flex !important;
|
1173
1025
|
}
|
@@ -1195,12 +1047,10 @@ html {
|
|
1195
1047
|
display: table-cell !important;
|
1196
1048
|
}
|
1197
1049
|
.d-sm-flex {
|
1198
|
-
display: -webkit-box !important;
|
1199
1050
|
display: -ms-flexbox !important;
|
1200
1051
|
display: flex !important;
|
1201
1052
|
}
|
1202
1053
|
.d-sm-inline-flex {
|
1203
|
-
display: -webkit-inline-box !important;
|
1204
1054
|
display: -ms-inline-flexbox !important;
|
1205
1055
|
display: inline-flex !important;
|
1206
1056
|
}
|
@@ -1229,12 +1079,10 @@ html {
|
|
1229
1079
|
display: table-cell !important;
|
1230
1080
|
}
|
1231
1081
|
.d-md-flex {
|
1232
|
-
display: -webkit-box !important;
|
1233
1082
|
display: -ms-flexbox !important;
|
1234
1083
|
display: flex !important;
|
1235
1084
|
}
|
1236
1085
|
.d-md-inline-flex {
|
1237
|
-
display: -webkit-inline-box !important;
|
1238
1086
|
display: -ms-inline-flexbox !important;
|
1239
1087
|
display: inline-flex !important;
|
1240
1088
|
}
|
@@ -1263,12 +1111,10 @@ html {
|
|
1263
1111
|
display: table-cell !important;
|
1264
1112
|
}
|
1265
1113
|
.d-lg-flex {
|
1266
|
-
display: -webkit-box !important;
|
1267
1114
|
display: -ms-flexbox !important;
|
1268
1115
|
display: flex !important;
|
1269
1116
|
}
|
1270
1117
|
.d-lg-inline-flex {
|
1271
|
-
display: -webkit-inline-box !important;
|
1272
1118
|
display: -ms-inline-flexbox !important;
|
1273
1119
|
display: inline-flex !important;
|
1274
1120
|
}
|
@@ -1297,12 +1143,10 @@ html {
|
|
1297
1143
|
display: table-cell !important;
|
1298
1144
|
}
|
1299
1145
|
.d-xl-flex {
|
1300
|
-
display: -webkit-box !important;
|
1301
1146
|
display: -ms-flexbox !important;
|
1302
1147
|
display: flex !important;
|
1303
1148
|
}
|
1304
1149
|
.d-xl-inline-flex {
|
1305
|
-
display: -webkit-inline-box !important;
|
1306
1150
|
display: -ms-inline-flexbox !important;
|
1307
1151
|
display: inline-flex !important;
|
1308
1152
|
}
|
@@ -1331,41 +1175,31 @@ html {
|
|
1331
1175
|
display: table-cell !important;
|
1332
1176
|
}
|
1333
1177
|
.d-print-flex {
|
1334
|
-
display: -webkit-box !important;
|
1335
1178
|
display: -ms-flexbox !important;
|
1336
1179
|
display: flex !important;
|
1337
1180
|
}
|
1338
1181
|
.d-print-inline-flex {
|
1339
|
-
display: -webkit-inline-box !important;
|
1340
1182
|
display: -ms-inline-flexbox !important;
|
1341
1183
|
display: inline-flex !important;
|
1342
1184
|
}
|
1343
1185
|
}
|
1344
1186
|
|
1345
1187
|
.flex-row {
|
1346
|
-
-webkit-box-orient: horizontal !important;
|
1347
|
-
-webkit-box-direction: normal !important;
|
1348
1188
|
-ms-flex-direction: row !important;
|
1349
1189
|
flex-direction: row !important;
|
1350
1190
|
}
|
1351
1191
|
|
1352
1192
|
.flex-column {
|
1353
|
-
-webkit-box-orient: vertical !important;
|
1354
|
-
-webkit-box-direction: normal !important;
|
1355
1193
|
-ms-flex-direction: column !important;
|
1356
1194
|
flex-direction: column !important;
|
1357
1195
|
}
|
1358
1196
|
|
1359
1197
|
.flex-row-reverse {
|
1360
|
-
-webkit-box-orient: horizontal !important;
|
1361
|
-
-webkit-box-direction: reverse !important;
|
1362
1198
|
-ms-flex-direction: row-reverse !important;
|
1363
1199
|
flex-direction: row-reverse !important;
|
1364
1200
|
}
|
1365
1201
|
|
1366
1202
|
.flex-column-reverse {
|
1367
|
-
-webkit-box-orient: vertical !important;
|
1368
|
-
-webkit-box-direction: reverse !important;
|
1369
1203
|
-ms-flex-direction: column-reverse !important;
|
1370
1204
|
flex-direction: column-reverse !important;
|
1371
1205
|
}
|
@@ -1385,26 +1219,47 @@ html {
|
|
1385
1219
|
flex-wrap: wrap-reverse !important;
|
1386
1220
|
}
|
1387
1221
|
|
1222
|
+
.flex-fill {
|
1223
|
+
-ms-flex: 1 1 auto !important;
|
1224
|
+
flex: 1 1 auto !important;
|
1225
|
+
}
|
1226
|
+
|
1227
|
+
.flex-grow-0 {
|
1228
|
+
-ms-flex-positive: 0 !important;
|
1229
|
+
flex-grow: 0 !important;
|
1230
|
+
}
|
1231
|
+
|
1232
|
+
.flex-grow-1 {
|
1233
|
+
-ms-flex-positive: 1 !important;
|
1234
|
+
flex-grow: 1 !important;
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
.flex-shrink-0 {
|
1238
|
+
-ms-flex-negative: 0 !important;
|
1239
|
+
flex-shrink: 0 !important;
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
.flex-shrink-1 {
|
1243
|
+
-ms-flex-negative: 1 !important;
|
1244
|
+
flex-shrink: 1 !important;
|
1245
|
+
}
|
1246
|
+
|
1388
1247
|
.justify-content-start {
|
1389
|
-
-webkit-box-pack: start !important;
|
1390
1248
|
-ms-flex-pack: start !important;
|
1391
1249
|
justify-content: flex-start !important;
|
1392
1250
|
}
|
1393
1251
|
|
1394
1252
|
.justify-content-end {
|
1395
|
-
-webkit-box-pack: end !important;
|
1396
1253
|
-ms-flex-pack: end !important;
|
1397
1254
|
justify-content: flex-end !important;
|
1398
1255
|
}
|
1399
1256
|
|
1400
1257
|
.justify-content-center {
|
1401
|
-
-webkit-box-pack: center !important;
|
1402
1258
|
-ms-flex-pack: center !important;
|
1403
1259
|
justify-content: center !important;
|
1404
1260
|
}
|
1405
1261
|
|
1406
1262
|
.justify-content-between {
|
1407
|
-
-webkit-box-pack: justify !important;
|
1408
1263
|
-ms-flex-pack: justify !important;
|
1409
1264
|
justify-content: space-between !important;
|
1410
1265
|
}
|
@@ -1415,31 +1270,26 @@ html {
|
|
1415
1270
|
}
|
1416
1271
|
|
1417
1272
|
.align-items-start {
|
1418
|
-
-webkit-box-align: start !important;
|
1419
1273
|
-ms-flex-align: start !important;
|
1420
1274
|
align-items: flex-start !important;
|
1421
1275
|
}
|
1422
1276
|
|
1423
1277
|
.align-items-end {
|
1424
|
-
-webkit-box-align: end !important;
|
1425
1278
|
-ms-flex-align: end !important;
|
1426
1279
|
align-items: flex-end !important;
|
1427
1280
|
}
|
1428
1281
|
|
1429
1282
|
.align-items-center {
|
1430
|
-
-webkit-box-align: center !important;
|
1431
1283
|
-ms-flex-align: center !important;
|
1432
1284
|
align-items: center !important;
|
1433
1285
|
}
|
1434
1286
|
|
1435
1287
|
.align-items-baseline {
|
1436
|
-
-webkit-box-align: baseline !important;
|
1437
1288
|
-ms-flex-align: baseline !important;
|
1438
1289
|
align-items: baseline !important;
|
1439
1290
|
}
|
1440
1291
|
|
1441
1292
|
.align-items-stretch {
|
1442
|
-
-webkit-box-align: stretch !important;
|
1443
1293
|
-ms-flex-align: stretch !important;
|
1444
1294
|
align-items: stretch !important;
|
1445
1295
|
}
|
@@ -1506,26 +1356,18 @@ html {
|
|
1506
1356
|
|
1507
1357
|
@media (min-width: 576px) {
|
1508
1358
|
.flex-sm-row {
|
1509
|
-
-webkit-box-orient: horizontal !important;
|
1510
|
-
-webkit-box-direction: normal !important;
|
1511
1359
|
-ms-flex-direction: row !important;
|
1512
1360
|
flex-direction: row !important;
|
1513
1361
|
}
|
1514
1362
|
.flex-sm-column {
|
1515
|
-
-webkit-box-orient: vertical !important;
|
1516
|
-
-webkit-box-direction: normal !important;
|
1517
1363
|
-ms-flex-direction: column !important;
|
1518
1364
|
flex-direction: column !important;
|
1519
1365
|
}
|
1520
1366
|
.flex-sm-row-reverse {
|
1521
|
-
-webkit-box-orient: horizontal !important;
|
1522
|
-
-webkit-box-direction: reverse !important;
|
1523
1367
|
-ms-flex-direction: row-reverse !important;
|
1524
1368
|
flex-direction: row-reverse !important;
|
1525
1369
|
}
|
1526
1370
|
.flex-sm-column-reverse {
|
1527
|
-
-webkit-box-orient: vertical !important;
|
1528
|
-
-webkit-box-direction: reverse !important;
|
1529
1371
|
-ms-flex-direction: column-reverse !important;
|
1530
1372
|
flex-direction: column-reverse !important;
|
1531
1373
|
}
|
@@ -1541,23 +1383,39 @@ html {
|
|
1541
1383
|
-ms-flex-wrap: wrap-reverse !important;
|
1542
1384
|
flex-wrap: wrap-reverse !important;
|
1543
1385
|
}
|
1386
|
+
.flex-sm-fill {
|
1387
|
+
-ms-flex: 1 1 auto !important;
|
1388
|
+
flex: 1 1 auto !important;
|
1389
|
+
}
|
1390
|
+
.flex-sm-grow-0 {
|
1391
|
+
-ms-flex-positive: 0 !important;
|
1392
|
+
flex-grow: 0 !important;
|
1393
|
+
}
|
1394
|
+
.flex-sm-grow-1 {
|
1395
|
+
-ms-flex-positive: 1 !important;
|
1396
|
+
flex-grow: 1 !important;
|
1397
|
+
}
|
1398
|
+
.flex-sm-shrink-0 {
|
1399
|
+
-ms-flex-negative: 0 !important;
|
1400
|
+
flex-shrink: 0 !important;
|
1401
|
+
}
|
1402
|
+
.flex-sm-shrink-1 {
|
1403
|
+
-ms-flex-negative: 1 !important;
|
1404
|
+
flex-shrink: 1 !important;
|
1405
|
+
}
|
1544
1406
|
.justify-content-sm-start {
|
1545
|
-
-webkit-box-pack: start !important;
|
1546
1407
|
-ms-flex-pack: start !important;
|
1547
1408
|
justify-content: flex-start !important;
|
1548
1409
|
}
|
1549
1410
|
.justify-content-sm-end {
|
1550
|
-
-webkit-box-pack: end !important;
|
1551
1411
|
-ms-flex-pack: end !important;
|
1552
1412
|
justify-content: flex-end !important;
|
1553
1413
|
}
|
1554
1414
|
.justify-content-sm-center {
|
1555
|
-
-webkit-box-pack: center !important;
|
1556
1415
|
-ms-flex-pack: center !important;
|
1557
1416
|
justify-content: center !important;
|
1558
1417
|
}
|
1559
1418
|
.justify-content-sm-between {
|
1560
|
-
-webkit-box-pack: justify !important;
|
1561
1419
|
-ms-flex-pack: justify !important;
|
1562
1420
|
justify-content: space-between !important;
|
1563
1421
|
}
|
@@ -1566,27 +1424,22 @@ html {
|
|
1566
1424
|
justify-content: space-around !important;
|
1567
1425
|
}
|
1568
1426
|
.align-items-sm-start {
|
1569
|
-
-webkit-box-align: start !important;
|
1570
1427
|
-ms-flex-align: start !important;
|
1571
1428
|
align-items: flex-start !important;
|
1572
1429
|
}
|
1573
1430
|
.align-items-sm-end {
|
1574
|
-
-webkit-box-align: end !important;
|
1575
1431
|
-ms-flex-align: end !important;
|
1576
1432
|
align-items: flex-end !important;
|
1577
1433
|
}
|
1578
1434
|
.align-items-sm-center {
|
1579
|
-
-webkit-box-align: center !important;
|
1580
1435
|
-ms-flex-align: center !important;
|
1581
1436
|
align-items: center !important;
|
1582
1437
|
}
|
1583
1438
|
.align-items-sm-baseline {
|
1584
|
-
-webkit-box-align: baseline !important;
|
1585
1439
|
-ms-flex-align: baseline !important;
|
1586
1440
|
align-items: baseline !important;
|
1587
1441
|
}
|
1588
1442
|
.align-items-sm-stretch {
|
1589
|
-
-webkit-box-align: stretch !important;
|
1590
1443
|
-ms-flex-align: stretch !important;
|
1591
1444
|
align-items: stretch !important;
|
1592
1445
|
}
|
@@ -1642,26 +1495,18 @@ html {
|
|
1642
1495
|
|
1643
1496
|
@media (min-width: 768px) {
|
1644
1497
|
.flex-md-row {
|
1645
|
-
-webkit-box-orient: horizontal !important;
|
1646
|
-
-webkit-box-direction: normal !important;
|
1647
1498
|
-ms-flex-direction: row !important;
|
1648
1499
|
flex-direction: row !important;
|
1649
1500
|
}
|
1650
1501
|
.flex-md-column {
|
1651
|
-
-webkit-box-orient: vertical !important;
|
1652
|
-
-webkit-box-direction: normal !important;
|
1653
1502
|
-ms-flex-direction: column !important;
|
1654
1503
|
flex-direction: column !important;
|
1655
1504
|
}
|
1656
1505
|
.flex-md-row-reverse {
|
1657
|
-
-webkit-box-orient: horizontal !important;
|
1658
|
-
-webkit-box-direction: reverse !important;
|
1659
1506
|
-ms-flex-direction: row-reverse !important;
|
1660
1507
|
flex-direction: row-reverse !important;
|
1661
1508
|
}
|
1662
1509
|
.flex-md-column-reverse {
|
1663
|
-
-webkit-box-orient: vertical !important;
|
1664
|
-
-webkit-box-direction: reverse !important;
|
1665
1510
|
-ms-flex-direction: column-reverse !important;
|
1666
1511
|
flex-direction: column-reverse !important;
|
1667
1512
|
}
|
@@ -1677,23 +1522,39 @@ html {
|
|
1677
1522
|
-ms-flex-wrap: wrap-reverse !important;
|
1678
1523
|
flex-wrap: wrap-reverse !important;
|
1679
1524
|
}
|
1525
|
+
.flex-md-fill {
|
1526
|
+
-ms-flex: 1 1 auto !important;
|
1527
|
+
flex: 1 1 auto !important;
|
1528
|
+
}
|
1529
|
+
.flex-md-grow-0 {
|
1530
|
+
-ms-flex-positive: 0 !important;
|
1531
|
+
flex-grow: 0 !important;
|
1532
|
+
}
|
1533
|
+
.flex-md-grow-1 {
|
1534
|
+
-ms-flex-positive: 1 !important;
|
1535
|
+
flex-grow: 1 !important;
|
1536
|
+
}
|
1537
|
+
.flex-md-shrink-0 {
|
1538
|
+
-ms-flex-negative: 0 !important;
|
1539
|
+
flex-shrink: 0 !important;
|
1540
|
+
}
|
1541
|
+
.flex-md-shrink-1 {
|
1542
|
+
-ms-flex-negative: 1 !important;
|
1543
|
+
flex-shrink: 1 !important;
|
1544
|
+
}
|
1680
1545
|
.justify-content-md-start {
|
1681
|
-
-webkit-box-pack: start !important;
|
1682
1546
|
-ms-flex-pack: start !important;
|
1683
1547
|
justify-content: flex-start !important;
|
1684
1548
|
}
|
1685
1549
|
.justify-content-md-end {
|
1686
|
-
-webkit-box-pack: end !important;
|
1687
1550
|
-ms-flex-pack: end !important;
|
1688
1551
|
justify-content: flex-end !important;
|
1689
1552
|
}
|
1690
1553
|
.justify-content-md-center {
|
1691
|
-
-webkit-box-pack: center !important;
|
1692
1554
|
-ms-flex-pack: center !important;
|
1693
1555
|
justify-content: center !important;
|
1694
1556
|
}
|
1695
1557
|
.justify-content-md-between {
|
1696
|
-
-webkit-box-pack: justify !important;
|
1697
1558
|
-ms-flex-pack: justify !important;
|
1698
1559
|
justify-content: space-between !important;
|
1699
1560
|
}
|
@@ -1702,27 +1563,22 @@ html {
|
|
1702
1563
|
justify-content: space-around !important;
|
1703
1564
|
}
|
1704
1565
|
.align-items-md-start {
|
1705
|
-
-webkit-box-align: start !important;
|
1706
1566
|
-ms-flex-align: start !important;
|
1707
1567
|
align-items: flex-start !important;
|
1708
1568
|
}
|
1709
1569
|
.align-items-md-end {
|
1710
|
-
-webkit-box-align: end !important;
|
1711
1570
|
-ms-flex-align: end !important;
|
1712
1571
|
align-items: flex-end !important;
|
1713
1572
|
}
|
1714
1573
|
.align-items-md-center {
|
1715
|
-
-webkit-box-align: center !important;
|
1716
1574
|
-ms-flex-align: center !important;
|
1717
1575
|
align-items: center !important;
|
1718
1576
|
}
|
1719
1577
|
.align-items-md-baseline {
|
1720
|
-
-webkit-box-align: baseline !important;
|
1721
1578
|
-ms-flex-align: baseline !important;
|
1722
1579
|
align-items: baseline !important;
|
1723
1580
|
}
|
1724
1581
|
.align-items-md-stretch {
|
1725
|
-
-webkit-box-align: stretch !important;
|
1726
1582
|
-ms-flex-align: stretch !important;
|
1727
1583
|
align-items: stretch !important;
|
1728
1584
|
}
|
@@ -1778,26 +1634,18 @@ html {
|
|
1778
1634
|
|
1779
1635
|
@media (min-width: 992px) {
|
1780
1636
|
.flex-lg-row {
|
1781
|
-
-webkit-box-orient: horizontal !important;
|
1782
|
-
-webkit-box-direction: normal !important;
|
1783
1637
|
-ms-flex-direction: row !important;
|
1784
1638
|
flex-direction: row !important;
|
1785
1639
|
}
|
1786
1640
|
.flex-lg-column {
|
1787
|
-
-webkit-box-orient: vertical !important;
|
1788
|
-
-webkit-box-direction: normal !important;
|
1789
1641
|
-ms-flex-direction: column !important;
|
1790
1642
|
flex-direction: column !important;
|
1791
1643
|
}
|
1792
1644
|
.flex-lg-row-reverse {
|
1793
|
-
-webkit-box-orient: horizontal !important;
|
1794
|
-
-webkit-box-direction: reverse !important;
|
1795
1645
|
-ms-flex-direction: row-reverse !important;
|
1796
1646
|
flex-direction: row-reverse !important;
|
1797
1647
|
}
|
1798
1648
|
.flex-lg-column-reverse {
|
1799
|
-
-webkit-box-orient: vertical !important;
|
1800
|
-
-webkit-box-direction: reverse !important;
|
1801
1649
|
-ms-flex-direction: column-reverse !important;
|
1802
1650
|
flex-direction: column-reverse !important;
|
1803
1651
|
}
|
@@ -1813,23 +1661,39 @@ html {
|
|
1813
1661
|
-ms-flex-wrap: wrap-reverse !important;
|
1814
1662
|
flex-wrap: wrap-reverse !important;
|
1815
1663
|
}
|
1664
|
+
.flex-lg-fill {
|
1665
|
+
-ms-flex: 1 1 auto !important;
|
1666
|
+
flex: 1 1 auto !important;
|
1667
|
+
}
|
1668
|
+
.flex-lg-grow-0 {
|
1669
|
+
-ms-flex-positive: 0 !important;
|
1670
|
+
flex-grow: 0 !important;
|
1671
|
+
}
|
1672
|
+
.flex-lg-grow-1 {
|
1673
|
+
-ms-flex-positive: 1 !important;
|
1674
|
+
flex-grow: 1 !important;
|
1675
|
+
}
|
1676
|
+
.flex-lg-shrink-0 {
|
1677
|
+
-ms-flex-negative: 0 !important;
|
1678
|
+
flex-shrink: 0 !important;
|
1679
|
+
}
|
1680
|
+
.flex-lg-shrink-1 {
|
1681
|
+
-ms-flex-negative: 1 !important;
|
1682
|
+
flex-shrink: 1 !important;
|
1683
|
+
}
|
1816
1684
|
.justify-content-lg-start {
|
1817
|
-
-webkit-box-pack: start !important;
|
1818
1685
|
-ms-flex-pack: start !important;
|
1819
1686
|
justify-content: flex-start !important;
|
1820
1687
|
}
|
1821
1688
|
.justify-content-lg-end {
|
1822
|
-
-webkit-box-pack: end !important;
|
1823
1689
|
-ms-flex-pack: end !important;
|
1824
1690
|
justify-content: flex-end !important;
|
1825
1691
|
}
|
1826
1692
|
.justify-content-lg-center {
|
1827
|
-
-webkit-box-pack: center !important;
|
1828
1693
|
-ms-flex-pack: center !important;
|
1829
1694
|
justify-content: center !important;
|
1830
1695
|
}
|
1831
1696
|
.justify-content-lg-between {
|
1832
|
-
-webkit-box-pack: justify !important;
|
1833
1697
|
-ms-flex-pack: justify !important;
|
1834
1698
|
justify-content: space-between !important;
|
1835
1699
|
}
|
@@ -1838,27 +1702,22 @@ html {
|
|
1838
1702
|
justify-content: space-around !important;
|
1839
1703
|
}
|
1840
1704
|
.align-items-lg-start {
|
1841
|
-
-webkit-box-align: start !important;
|
1842
1705
|
-ms-flex-align: start !important;
|
1843
1706
|
align-items: flex-start !important;
|
1844
1707
|
}
|
1845
1708
|
.align-items-lg-end {
|
1846
|
-
-webkit-box-align: end !important;
|
1847
1709
|
-ms-flex-align: end !important;
|
1848
1710
|
align-items: flex-end !important;
|
1849
1711
|
}
|
1850
1712
|
.align-items-lg-center {
|
1851
|
-
-webkit-box-align: center !important;
|
1852
1713
|
-ms-flex-align: center !important;
|
1853
1714
|
align-items: center !important;
|
1854
1715
|
}
|
1855
1716
|
.align-items-lg-baseline {
|
1856
|
-
-webkit-box-align: baseline !important;
|
1857
1717
|
-ms-flex-align: baseline !important;
|
1858
1718
|
align-items: baseline !important;
|
1859
1719
|
}
|
1860
1720
|
.align-items-lg-stretch {
|
1861
|
-
-webkit-box-align: stretch !important;
|
1862
1721
|
-ms-flex-align: stretch !important;
|
1863
1722
|
align-items: stretch !important;
|
1864
1723
|
}
|
@@ -1914,26 +1773,18 @@ html {
|
|
1914
1773
|
|
1915
1774
|
@media (min-width: 1200px) {
|
1916
1775
|
.flex-xl-row {
|
1917
|
-
-webkit-box-orient: horizontal !important;
|
1918
|
-
-webkit-box-direction: normal !important;
|
1919
1776
|
-ms-flex-direction: row !important;
|
1920
1777
|
flex-direction: row !important;
|
1921
1778
|
}
|
1922
1779
|
.flex-xl-column {
|
1923
|
-
-webkit-box-orient: vertical !important;
|
1924
|
-
-webkit-box-direction: normal !important;
|
1925
1780
|
-ms-flex-direction: column !important;
|
1926
1781
|
flex-direction: column !important;
|
1927
1782
|
}
|
1928
1783
|
.flex-xl-row-reverse {
|
1929
|
-
-webkit-box-orient: horizontal !important;
|
1930
|
-
-webkit-box-direction: reverse !important;
|
1931
1784
|
-ms-flex-direction: row-reverse !important;
|
1932
1785
|
flex-direction: row-reverse !important;
|
1933
1786
|
}
|
1934
1787
|
.flex-xl-column-reverse {
|
1935
|
-
-webkit-box-orient: vertical !important;
|
1936
|
-
-webkit-box-direction: reverse !important;
|
1937
1788
|
-ms-flex-direction: column-reverse !important;
|
1938
1789
|
flex-direction: column-reverse !important;
|
1939
1790
|
}
|
@@ -1949,23 +1800,39 @@ html {
|
|
1949
1800
|
-ms-flex-wrap: wrap-reverse !important;
|
1950
1801
|
flex-wrap: wrap-reverse !important;
|
1951
1802
|
}
|
1803
|
+
.flex-xl-fill {
|
1804
|
+
-ms-flex: 1 1 auto !important;
|
1805
|
+
flex: 1 1 auto !important;
|
1806
|
+
}
|
1807
|
+
.flex-xl-grow-0 {
|
1808
|
+
-ms-flex-positive: 0 !important;
|
1809
|
+
flex-grow: 0 !important;
|
1810
|
+
}
|
1811
|
+
.flex-xl-grow-1 {
|
1812
|
+
-ms-flex-positive: 1 !important;
|
1813
|
+
flex-grow: 1 !important;
|
1814
|
+
}
|
1815
|
+
.flex-xl-shrink-0 {
|
1816
|
+
-ms-flex-negative: 0 !important;
|
1817
|
+
flex-shrink: 0 !important;
|
1818
|
+
}
|
1819
|
+
.flex-xl-shrink-1 {
|
1820
|
+
-ms-flex-negative: 1 !important;
|
1821
|
+
flex-shrink: 1 !important;
|
1822
|
+
}
|
1952
1823
|
.justify-content-xl-start {
|
1953
|
-
-webkit-box-pack: start !important;
|
1954
1824
|
-ms-flex-pack: start !important;
|
1955
1825
|
justify-content: flex-start !important;
|
1956
1826
|
}
|
1957
1827
|
.justify-content-xl-end {
|
1958
|
-
-webkit-box-pack: end !important;
|
1959
1828
|
-ms-flex-pack: end !important;
|
1960
1829
|
justify-content: flex-end !important;
|
1961
1830
|
}
|
1962
1831
|
.justify-content-xl-center {
|
1963
|
-
-webkit-box-pack: center !important;
|
1964
1832
|
-ms-flex-pack: center !important;
|
1965
1833
|
justify-content: center !important;
|
1966
1834
|
}
|
1967
1835
|
.justify-content-xl-between {
|
1968
|
-
-webkit-box-pack: justify !important;
|
1969
1836
|
-ms-flex-pack: justify !important;
|
1970
1837
|
justify-content: space-between !important;
|
1971
1838
|
}
|
@@ -1974,27 +1841,22 @@ html {
|
|
1974
1841
|
justify-content: space-around !important;
|
1975
1842
|
}
|
1976
1843
|
.align-items-xl-start {
|
1977
|
-
-webkit-box-align: start !important;
|
1978
1844
|
-ms-flex-align: start !important;
|
1979
1845
|
align-items: flex-start !important;
|
1980
1846
|
}
|
1981
1847
|
.align-items-xl-end {
|
1982
|
-
-webkit-box-align: end !important;
|
1983
1848
|
-ms-flex-align: end !important;
|
1984
1849
|
align-items: flex-end !important;
|
1985
1850
|
}
|
1986
1851
|
.align-items-xl-center {
|
1987
|
-
-webkit-box-align: center !important;
|
1988
1852
|
-ms-flex-align: center !important;
|
1989
1853
|
align-items: center !important;
|
1990
1854
|
}
|
1991
1855
|
.align-items-xl-baseline {
|
1992
|
-
-webkit-box-align: baseline !important;
|
1993
1856
|
-ms-flex-align: baseline !important;
|
1994
1857
|
align-items: baseline !important;
|
1995
1858
|
}
|
1996
1859
|
.align-items-xl-stretch {
|
1997
|
-
-webkit-box-align: stretch !important;
|
1998
1860
|
-ms-flex-align: stretch !important;
|
1999
1861
|
align-items: stretch !important;
|
2000
1862
|
}
|