poops 1.0.7 → 1.0.9
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/example/dist/css/styles.css +75 -255
- package/example/dist/css/styles.css.map +1 -1
- package/example/dist/css/styles.min.css +4 -3
- package/example/dist/js/scripts.js +1 -1
- package/example/dist/js/scripts.min.js +1 -1
- package/example/src/markup/_layouts/layout.html +4 -0
- package/example/src/scss/index.scss +2 -1
- package/example/src/scss/style/test.css +3 -0
- package/index.html +5 -1
- package/lib/styles.js +15 -10
- package/package.json +1 -1
- package/poops.js +1 -1
|
@@ -1,89 +1,6 @@
|
|
|
1
|
-
/* poops v1.0.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
*/
|
|
5
|
-
/*
|
|
6
|
-
* ORIENTATIONS - 'orientation label': (property)
|
|
7
|
-
*/
|
|
8
|
-
/*
|
|
9
|
-
* BREAKPOINTS - 'size label': (min, max)
|
|
10
|
-
*/
|
|
11
|
-
/*
|
|
12
|
-
* CONTAINER + GRID
|
|
13
|
-
*/
|
|
14
|
-
/*
|
|
15
|
-
* COLORS
|
|
16
|
-
*/
|
|
17
|
-
/*
|
|
18
|
-
* TYPOGRAPHY
|
|
19
|
-
*/
|
|
20
|
-
/*
|
|
21
|
-
* > If a font-size has not been set on any of the <p>'s ancestors,
|
|
22
|
-
* then 1em will equal the default browser font-size, which is usually 16px.
|
|
23
|
-
* So, by default 1em is equivalent to 16px.
|
|
24
|
-
* - https://developer.mozilla.org/en-US/docs/Web/CSS/font-size#ems
|
|
25
|
-
*/
|
|
26
|
-
/*
|
|
27
|
-
* Breakpoint: $container-breakpoint
|
|
28
|
-
*
|
|
29
|
-
* (font-size, letter-spacing, line-height, font-weight, text-transform)
|
|
30
|
-
*/
|
|
31
|
-
/* stylelint-disable */
|
|
32
|
-
/*
|
|
33
|
-
* Removes unit from a provided value
|
|
34
|
-
*
|
|
35
|
-
* @param $value (string): e.g. `16px`
|
|
36
|
-
* @return (number): e.g. `16`
|
|
37
|
-
*/
|
|
38
|
-
/*
|
|
39
|
-
* Converts PX to EM values
|
|
40
|
-
* @see utils/_config.scss for $base-font-size
|
|
41
|
-
*
|
|
42
|
-
* @param $value (string): e.g. `16px`
|
|
43
|
-
* @return (string): e.g. `1em`
|
|
44
|
-
*/
|
|
45
|
-
/*
|
|
46
|
-
* Converts PX to REM values (document root relative EM)
|
|
47
|
-
* @see utils/_config.scss for $base-font-size
|
|
48
|
-
*
|
|
49
|
-
* @param $value (string): e.g. `16px`
|
|
50
|
-
* @return (string): e.g. `1rem`
|
|
51
|
-
*/
|
|
52
|
-
/* stylelint-disable */ /*
|
|
53
|
-
* Generates media query via provided predefined breakpoint map item without
|
|
54
|
-
* @media. Used by `breakpoint` mixin.
|
|
55
|
-
* @see utils/_config.scss $breakpoints. $breakpoints is a globally defined var.
|
|
56
|
-
*
|
|
57
|
-
* @param $size: breakpoint map item name ('', sm, md, lg, xl, xxl)
|
|
58
|
-
* @param $explicit: (boolean | optional) for generating min-max queries
|
|
59
|
-
*
|
|
60
|
-
* @return (string) e.g. `only screen and (min-width: 1366px)` or `only screen and (min-width: 1366px) and (max-width: 1679px)`
|
|
61
|
-
*/
|
|
62
|
-
/*
|
|
63
|
-
* Mixin for generating media queries. Uses `generate-breakpoint` function
|
|
64
|
-
* @see utils/_config.scss $breakpoints. $breakpoints is a globally defined var.
|
|
65
|
-
*
|
|
66
|
-
* @param $size: (string) breakpoint map item name ('', sm, md, lg, xl, xxl)
|
|
67
|
-
* @param $explicit: (boolean | optional) for generating min-max queries
|
|
68
|
-
*/
|
|
69
|
-
/*
|
|
70
|
-
* Mixin for generating generic utility classes. E.g. `.t-32` => `top: 32px`
|
|
71
|
-
* Uses `generate-breakpoint` function.
|
|
72
|
-
* @see utils/_config.scss $breakpoints. $breakpoints is a globally defined var.
|
|
73
|
-
* @see utils/_config.scss $orientations. $orientations is a globally defined
|
|
74
|
-
* var.
|
|
75
|
-
*
|
|
76
|
-
* @param $pref: (string) base class name
|
|
77
|
-
* @param $property: (string) css property name
|
|
78
|
-
* @param $values: (list | map) list or a map of property values
|
|
79
|
-
* @param $unit: (string) value unit
|
|
80
|
-
* @param $suff: (string) generated class name suffix
|
|
81
|
-
* @param $orientations: (map | optional) map of orientation property variations
|
|
82
|
-
* @param $responsive: (boolean | optional) whether to generate responsive classes
|
|
83
|
-
*/
|
|
84
|
-
/* stylelint-disable max-nesting-depth */
|
|
85
|
-
/* stylelint-enable */
|
|
86
|
-
/* stylelint-disable */
|
|
1
|
+
/* poops v1.0.8 | https://github.com/stamat/poops | MIT License */
|
|
2
|
+
@charset "UTF-8";
|
|
3
|
+
/*! Sulphuris 🜍 1.0.4 */
|
|
87
4
|
.border, .border-y, .border-x, .border-r, .border-l, .border-b, .border-t {
|
|
88
5
|
border-color: currentcolor;
|
|
89
6
|
border-style: solid;
|
|
@@ -495,28 +412,29 @@ button.reset,
|
|
|
495
412
|
justify-content: center;
|
|
496
413
|
min-height: 56px;
|
|
497
414
|
padding: 16px 32px;
|
|
498
|
-
transition:
|
|
415
|
+
transition: color 250ms cubic-bezier(0.86, 0, 0.07, 1), background 250ms cubic-bezier(0.86, 0, 0.07, 1);
|
|
499
416
|
}
|
|
417
|
+
|
|
500
418
|
@media only screen and (min-width: 1024px) {
|
|
501
419
|
.btn:hover {
|
|
502
420
|
background-color: #1a1a1d;
|
|
503
421
|
}
|
|
504
422
|
}
|
|
505
|
-
|
|
506
423
|
.btn-inverted {
|
|
507
424
|
background-color: #1a1a1d;
|
|
508
425
|
}
|
|
426
|
+
|
|
509
427
|
@media only screen and (min-width: 1024px) {
|
|
510
428
|
.btn-inverted:hover {
|
|
511
429
|
background-color: #f6c026;
|
|
512
430
|
}
|
|
513
431
|
}
|
|
514
|
-
|
|
515
432
|
.btn-outline {
|
|
516
433
|
background: transparent;
|
|
517
434
|
border: solid 2px #1a1a1d;
|
|
518
435
|
color: #1a1a1d;
|
|
519
436
|
}
|
|
437
|
+
|
|
520
438
|
@media only screen and (min-width: 1024px) {
|
|
521
439
|
.btn-outline:hover {
|
|
522
440
|
background-color: #1a1a1d;
|
|
@@ -527,13 +445,13 @@ button.reset,
|
|
|
527
445
|
border-color: #fff;
|
|
528
446
|
color: #fff;
|
|
529
447
|
}
|
|
448
|
+
|
|
530
449
|
@media only screen and (min-width: 1024px) {
|
|
531
450
|
.btn-outline.btn-inverted:hover {
|
|
532
451
|
background-color: #fff;
|
|
533
452
|
color: #1a1a1d;
|
|
534
453
|
}
|
|
535
454
|
}
|
|
536
|
-
|
|
537
455
|
.text-black {
|
|
538
456
|
color: #1a1a1d;
|
|
539
457
|
}
|
|
@@ -708,6 +626,7 @@ h1, .h1 {
|
|
|
708
626
|
line-height: 1;
|
|
709
627
|
font-weight: bold;
|
|
710
628
|
}
|
|
629
|
+
|
|
711
630
|
@media only screen and (min-width: 1024px) {
|
|
712
631
|
h1, .h1 {
|
|
713
632
|
font-size: 6rem;
|
|
@@ -716,13 +635,13 @@ h1, .h1 {
|
|
|
716
635
|
font-weight: bold;
|
|
717
636
|
}
|
|
718
637
|
}
|
|
719
|
-
|
|
720
638
|
h2, .h2 {
|
|
721
639
|
font-size: 3rem;
|
|
722
640
|
letter-spacing: 0;
|
|
723
641
|
line-height: 1;
|
|
724
642
|
font-weight: bold;
|
|
725
643
|
}
|
|
644
|
+
|
|
726
645
|
@media only screen and (min-width: 1024px) {
|
|
727
646
|
h2, .h2 {
|
|
728
647
|
font-size: 4rem;
|
|
@@ -731,13 +650,13 @@ h2, .h2 {
|
|
|
731
650
|
font-weight: bold;
|
|
732
651
|
}
|
|
733
652
|
}
|
|
734
|
-
|
|
735
653
|
h3, .h3 {
|
|
736
654
|
font-size: 2rem;
|
|
737
655
|
letter-spacing: 0.015625rem;
|
|
738
656
|
line-height: 1;
|
|
739
657
|
font-weight: bold;
|
|
740
658
|
}
|
|
659
|
+
|
|
741
660
|
@media only screen and (min-width: 1024px) {
|
|
742
661
|
h3, .h3 {
|
|
743
662
|
font-size: 3rem;
|
|
@@ -746,13 +665,13 @@ h3, .h3 {
|
|
|
746
665
|
font-weight: bold;
|
|
747
666
|
}
|
|
748
667
|
}
|
|
749
|
-
|
|
750
668
|
h4, .h4 {
|
|
751
669
|
font-size: 1.5rem;
|
|
752
670
|
letter-spacing: 0;
|
|
753
671
|
line-height: 1;
|
|
754
672
|
font-weight: bold;
|
|
755
673
|
}
|
|
674
|
+
|
|
756
675
|
@media only screen and (min-width: 1024px) {
|
|
757
676
|
h4, .h4 {
|
|
758
677
|
font-size: 2rem;
|
|
@@ -761,13 +680,13 @@ h4, .h4 {
|
|
|
761
680
|
font-weight: bold;
|
|
762
681
|
}
|
|
763
682
|
}
|
|
764
|
-
|
|
765
683
|
h5, .h5 {
|
|
766
684
|
font-size: 1.25rem;
|
|
767
685
|
letter-spacing: 0.009375rem;
|
|
768
686
|
line-height: 1;
|
|
769
687
|
font-weight: bold;
|
|
770
688
|
}
|
|
689
|
+
|
|
771
690
|
@media only screen and (min-width: 1024px) {
|
|
772
691
|
h5, .h5 {
|
|
773
692
|
font-size: 1.5rem;
|
|
@@ -776,13 +695,13 @@ h5, .h5 {
|
|
|
776
695
|
font-weight: bold;
|
|
777
696
|
}
|
|
778
697
|
}
|
|
779
|
-
|
|
780
698
|
h6, .h6 {
|
|
781
699
|
font-size: 1rem;
|
|
782
700
|
letter-spacing: 0.009375rem;
|
|
783
701
|
line-height: 1;
|
|
784
702
|
font-weight: bold;
|
|
785
703
|
}
|
|
704
|
+
|
|
786
705
|
@media only screen and (min-width: 1024px) {
|
|
787
706
|
h6, .h6 {
|
|
788
707
|
font-size: 1.25rem;
|
|
@@ -791,7 +710,6 @@ h6, .h6 {
|
|
|
791
710
|
font-weight: bold;
|
|
792
711
|
}
|
|
793
712
|
}
|
|
794
|
-
|
|
795
713
|
.p1 {
|
|
796
714
|
font-size: 1.5rem;
|
|
797
715
|
letter-spacing: 0.01875rem;
|
|
@@ -1234,11 +1152,11 @@ h6 {
|
|
|
1234
1152
|
}
|
|
1235
1153
|
|
|
1236
1154
|
.hide-native-scrollbar {
|
|
1237
|
-
-ms-overflow-style: none;
|
|
1238
|
-
scrollbar-width: none;
|
|
1155
|
+
-ms-overflow-style: none;
|
|
1156
|
+
scrollbar-width: none;
|
|
1239
1157
|
}
|
|
1240
1158
|
|
|
1241
|
-
.hide-native-scrollbar::-webkit-scrollbar {
|
|
1159
|
+
.hide-native-scrollbar::-webkit-scrollbar {
|
|
1242
1160
|
display: none;
|
|
1243
1161
|
}
|
|
1244
1162
|
|
|
@@ -1255,94 +1173,52 @@ h6 {
|
|
|
1255
1173
|
}
|
|
1256
1174
|
|
|
1257
1175
|
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
1258
|
-
/* stylelint-disable */
|
|
1259
|
-
/* Document
|
|
1260
|
-
========================================================================== */
|
|
1261
|
-
/**
|
|
1262
|
-
* Prevent adjustments of font size after orientation changes in iOS.
|
|
1263
|
-
*/
|
|
1264
1176
|
html {
|
|
1265
1177
|
-webkit-text-size-adjust: 100%;
|
|
1266
1178
|
}
|
|
1267
1179
|
|
|
1268
|
-
/* Sections
|
|
1269
|
-
========================================================================== */
|
|
1270
|
-
/**
|
|
1271
|
-
* Remove the margin in all browsers.
|
|
1272
|
-
*/
|
|
1273
1180
|
body {
|
|
1274
1181
|
margin: 0;
|
|
1275
1182
|
}
|
|
1276
1183
|
|
|
1277
|
-
/**
|
|
1278
|
-
* Render the `main` element consistently in IE.
|
|
1279
|
-
*/
|
|
1280
1184
|
main {
|
|
1281
1185
|
display: block;
|
|
1282
1186
|
}
|
|
1283
1187
|
|
|
1284
|
-
/* Grouping content
|
|
1285
|
-
========================================================================== */
|
|
1286
|
-
/**
|
|
1287
|
-
* 1. Add the correct box sizing in Firefox.
|
|
1288
|
-
* 2. Show the overflow in Edge and IE.
|
|
1289
|
-
*/
|
|
1290
1188
|
hr {
|
|
1291
|
-
box-sizing: content-box;
|
|
1292
|
-
height: 0;
|
|
1293
|
-
overflow: visible;
|
|
1189
|
+
box-sizing: content-box;
|
|
1190
|
+
height: 0;
|
|
1191
|
+
overflow: visible;
|
|
1294
1192
|
}
|
|
1295
1193
|
|
|
1296
|
-
/**
|
|
1297
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
1298
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
1299
|
-
*/
|
|
1300
1194
|
pre,
|
|
1301
1195
|
code,
|
|
1302
1196
|
kbd,
|
|
1303
1197
|
samp {
|
|
1304
|
-
font-family: monospace, monospace;
|
|
1305
|
-
font-size: 1em;
|
|
1198
|
+
font-family: monospace, monospace;
|
|
1199
|
+
font-size: 1em;
|
|
1306
1200
|
}
|
|
1307
1201
|
|
|
1308
|
-
/* Text-level semantics
|
|
1309
|
-
========================================================================== */
|
|
1310
|
-
/**
|
|
1311
|
-
* Remove the gray background on active links in IE 10.
|
|
1312
|
-
*/
|
|
1313
1202
|
a {
|
|
1314
1203
|
background-color: transparent;
|
|
1315
1204
|
}
|
|
1316
1205
|
|
|
1317
|
-
/**
|
|
1318
|
-
* 1. Remove the bottom border in Chrome 57-
|
|
1319
|
-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
1320
|
-
*/
|
|
1321
1206
|
abbr[title] {
|
|
1322
|
-
border-bottom: none;
|
|
1323
|
-
text-decoration: underline;
|
|
1324
|
-
text-decoration: underline dotted;
|
|
1207
|
+
border-bottom: none;
|
|
1208
|
+
text-decoration: underline;
|
|
1209
|
+
-webkit-text-decoration: underline dotted;
|
|
1210
|
+
text-decoration: underline dotted;
|
|
1325
1211
|
}
|
|
1326
1212
|
|
|
1327
|
-
/**
|
|
1328
|
-
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
1329
|
-
*/
|
|
1330
1213
|
b,
|
|
1331
1214
|
strong {
|
|
1332
1215
|
font-weight: bolder;
|
|
1333
1216
|
}
|
|
1334
1217
|
|
|
1335
|
-
/**
|
|
1336
|
-
* Add the correct font size in all browsers.
|
|
1337
|
-
*/
|
|
1338
1218
|
small {
|
|
1339
1219
|
font-size: 80%;
|
|
1340
1220
|
}
|
|
1341
1221
|
|
|
1342
|
-
/**
|
|
1343
|
-
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
1344
|
-
* all browsers.
|
|
1345
|
-
*/
|
|
1346
1222
|
sub,
|
|
1347
1223
|
sup {
|
|
1348
1224
|
font-size: 75%;
|
|
@@ -1359,53 +1235,31 @@ sup {
|
|
|
1359
1235
|
top: -0.5em;
|
|
1360
1236
|
}
|
|
1361
1237
|
|
|
1362
|
-
/* Embedded content
|
|
1363
|
-
========================================================================== */
|
|
1364
|
-
/**
|
|
1365
|
-
* Remove the border on images inside links in IE 10.
|
|
1366
|
-
*/
|
|
1367
1238
|
img {
|
|
1368
1239
|
border-style: none;
|
|
1369
1240
|
}
|
|
1370
1241
|
|
|
1371
|
-
/* Forms
|
|
1372
|
-
========================================================================== */
|
|
1373
|
-
/**
|
|
1374
|
-
* 1. Change the font styles in all browsers.
|
|
1375
|
-
* 2. Remove the margin in Firefox and Safari.
|
|
1376
|
-
*/
|
|
1377
1242
|
button,
|
|
1378
1243
|
input,
|
|
1379
1244
|
optgroup,
|
|
1380
1245
|
select,
|
|
1381
1246
|
textarea {
|
|
1382
|
-
font-family: inherit;
|
|
1383
|
-
font-size: 100%;
|
|
1384
|
-
line-height: 1.15;
|
|
1385
|
-
margin: 0;
|
|
1247
|
+
font-family: inherit;
|
|
1248
|
+
font-size: 100%;
|
|
1249
|
+
line-height: 1.15;
|
|
1250
|
+
margin: 0;
|
|
1386
1251
|
}
|
|
1387
1252
|
|
|
1388
|
-
/**
|
|
1389
|
-
* Show the overflow in IE.
|
|
1390
|
-
* 1. Show the overflow in Edge.
|
|
1391
|
-
*/
|
|
1392
1253
|
button,
|
|
1393
|
-
input {
|
|
1254
|
+
input {
|
|
1394
1255
|
overflow: visible;
|
|
1395
1256
|
}
|
|
1396
1257
|
|
|
1397
|
-
/**
|
|
1398
|
-
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
1399
|
-
* 1. Remove the inheritance of text transform in Firefox.
|
|
1400
|
-
*/
|
|
1401
1258
|
button,
|
|
1402
|
-
select {
|
|
1259
|
+
select {
|
|
1403
1260
|
text-transform: none;
|
|
1404
1261
|
}
|
|
1405
1262
|
|
|
1406
|
-
/**
|
|
1407
|
-
* Correct the inability to style clickable types in iOS and Safari.
|
|
1408
|
-
*/
|
|
1409
1263
|
button,
|
|
1410
1264
|
[type=button],
|
|
1411
1265
|
[type=reset],
|
|
@@ -1413,9 +1267,6 @@ button,
|
|
|
1413
1267
|
-webkit-appearance: button;
|
|
1414
1268
|
}
|
|
1415
1269
|
|
|
1416
|
-
/**
|
|
1417
|
-
* Remove the inner border and padding in Firefox.
|
|
1418
|
-
*/
|
|
1419
1270
|
button::-moz-focus-inner,
|
|
1420
1271
|
[type=button]::-moz-focus-inner,
|
|
1421
1272
|
[type=reset]::-moz-focus-inner,
|
|
@@ -1424,9 +1275,6 @@ button::-moz-focus-inner,
|
|
|
1424
1275
|
padding: 0;
|
|
1425
1276
|
}
|
|
1426
1277
|
|
|
1427
|
-
/**
|
|
1428
|
-
* Restore the focus styles unset by the previous rule.
|
|
1429
|
-
*/
|
|
1430
1278
|
button:-moz-focusring,
|
|
1431
1279
|
[type=button]:-moz-focusring,
|
|
1432
1280
|
[type=reset]:-moz-focusring,
|
|
@@ -1434,106 +1282,60 @@ button:-moz-focusring,
|
|
|
1434
1282
|
outline: 1px dotted ButtonText;
|
|
1435
1283
|
}
|
|
1436
1284
|
|
|
1437
|
-
/**
|
|
1438
|
-
* Correct the padding in Firefox.
|
|
1439
|
-
*/
|
|
1440
1285
|
fieldset {
|
|
1441
1286
|
padding: 0.35em 0.75em 0.625em;
|
|
1442
1287
|
}
|
|
1443
1288
|
|
|
1444
|
-
/**
|
|
1445
|
-
* 1. Correct the text wrapping in Edge and IE.
|
|
1446
|
-
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
1447
|
-
* 3. Remove the padding so developers are not caught out when they zero out
|
|
1448
|
-
* `fieldset` elements in all browsers.
|
|
1449
|
-
*/
|
|
1450
1289
|
legend {
|
|
1451
|
-
box-sizing: border-box;
|
|
1452
|
-
color: inherit;
|
|
1453
|
-
display: table;
|
|
1454
|
-
max-width: 100%;
|
|
1455
|
-
padding: 0;
|
|
1456
|
-
white-space: normal;
|
|
1290
|
+
box-sizing: border-box;
|
|
1291
|
+
color: inherit;
|
|
1292
|
+
display: table;
|
|
1293
|
+
max-width: 100%;
|
|
1294
|
+
padding: 0;
|
|
1295
|
+
white-space: normal;
|
|
1457
1296
|
}
|
|
1458
1297
|
|
|
1459
|
-
/**
|
|
1460
|
-
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
1461
|
-
*/
|
|
1462
1298
|
progress {
|
|
1463
1299
|
vertical-align: baseline;
|
|
1464
1300
|
}
|
|
1465
1301
|
|
|
1466
|
-
/**
|
|
1467
|
-
* Remove the default vertical scrollbar in IE 10+.
|
|
1468
|
-
*/
|
|
1469
1302
|
textarea {
|
|
1470
1303
|
overflow: auto;
|
|
1471
1304
|
}
|
|
1472
1305
|
|
|
1473
|
-
/**
|
|
1474
|
-
* 1. Add the correct box sizing in IE 10.
|
|
1475
|
-
* 2. Remove the padding in IE 10.
|
|
1476
|
-
*/
|
|
1477
1306
|
[type=checkbox],
|
|
1478
1307
|
[type=radio] {
|
|
1479
|
-
box-sizing: border-box;
|
|
1480
|
-
padding: 0;
|
|
1308
|
+
box-sizing: border-box;
|
|
1309
|
+
padding: 0;
|
|
1481
1310
|
}
|
|
1482
1311
|
|
|
1483
|
-
/**
|
|
1484
|
-
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
1485
|
-
*/
|
|
1486
1312
|
[type=number]::-webkit-inner-spin-button,
|
|
1487
1313
|
[type=number]::-webkit-outer-spin-button {
|
|
1488
1314
|
height: auto;
|
|
1489
1315
|
}
|
|
1490
1316
|
|
|
1491
|
-
/**
|
|
1492
|
-
* 1. Correct the odd appearance in Chrome and Safari.
|
|
1493
|
-
* 2. Correct the outline style in Safari.
|
|
1494
|
-
*/
|
|
1495
1317
|
[type=search] {
|
|
1496
|
-
-webkit-appearance: textfield;
|
|
1497
|
-
outline-offset: -2px;
|
|
1318
|
+
-webkit-appearance: textfield;
|
|
1319
|
+
outline-offset: -2px;
|
|
1498
1320
|
}
|
|
1499
1321
|
|
|
1500
|
-
/**
|
|
1501
|
-
* Remove the inner padding in Chrome and Safari on macOS.
|
|
1502
|
-
*/
|
|
1503
1322
|
[type=search]::-webkit-search-decoration {
|
|
1504
1323
|
-webkit-appearance: none;
|
|
1505
1324
|
}
|
|
1506
1325
|
|
|
1507
|
-
/**
|
|
1508
|
-
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
1509
|
-
* 2. Change font properties to `inherit` in Safari.
|
|
1510
|
-
*/
|
|
1511
1326
|
::-webkit-file-upload-button {
|
|
1512
|
-
-webkit-appearance: button;
|
|
1513
|
-
font: inherit;
|
|
1327
|
+
-webkit-appearance: button;
|
|
1328
|
+
font: inherit;
|
|
1514
1329
|
}
|
|
1515
1330
|
|
|
1516
|
-
/* Interactive
|
|
1517
|
-
========================================================================== */
|
|
1518
|
-
/*
|
|
1519
|
-
* Add the correct display in Edge, IE 10+, and Firefox.
|
|
1520
|
-
*/
|
|
1521
1331
|
details {
|
|
1522
1332
|
display: block;
|
|
1523
1333
|
}
|
|
1524
1334
|
|
|
1525
|
-
/*
|
|
1526
|
-
* Add the correct display in all browsers.
|
|
1527
|
-
*/
|
|
1528
1335
|
summary {
|
|
1529
1336
|
display: list-item;
|
|
1530
1337
|
}
|
|
1531
1338
|
|
|
1532
|
-
/* Misc
|
|
1533
|
-
========================================================================== */
|
|
1534
|
-
/**
|
|
1535
|
-
* Add the correct display in IE 10+.
|
|
1536
|
-
*/
|
|
1537
1339
|
template {
|
|
1538
1340
|
display: none;
|
|
1539
1341
|
}
|
|
@@ -1547,6 +1349,7 @@ template {
|
|
|
1547
1349
|
margin-left: -8px;
|
|
1548
1350
|
margin-right: -8px;
|
|
1549
1351
|
}
|
|
1352
|
+
|
|
1550
1353
|
@media only screen and (min-width: 1024px) {
|
|
1551
1354
|
.grid-gutter {
|
|
1552
1355
|
margin-left: -16px;
|
|
@@ -1559,6 +1362,7 @@ template {
|
|
|
1559
1362
|
padding-left: 8px;
|
|
1560
1363
|
padding-right: 8px;
|
|
1561
1364
|
}
|
|
1365
|
+
|
|
1562
1366
|
@media only screen and (min-width: 1024px) {
|
|
1563
1367
|
.grid-gutter.container {
|
|
1564
1368
|
margin-left: auto;
|
|
@@ -1571,13 +1375,13 @@ template {
|
|
|
1571
1375
|
padding-left: 8px;
|
|
1572
1376
|
padding-right: 8px;
|
|
1573
1377
|
}
|
|
1378
|
+
|
|
1574
1379
|
@media only screen and (min-width: 1024px) {
|
|
1575
1380
|
.grid-gutter > [class*=col-] {
|
|
1576
1381
|
padding-left: 16px;
|
|
1577
1382
|
padding-right: 16px;
|
|
1578
1383
|
}
|
|
1579
1384
|
}
|
|
1580
|
-
|
|
1581
1385
|
.col-1 {
|
|
1582
1386
|
width: 8.3333333333%;
|
|
1583
1387
|
}
|
|
@@ -1819,6 +1623,7 @@ template {
|
|
|
1819
1623
|
.col-offset-0 {
|
|
1820
1624
|
margin-left: 0%;
|
|
1821
1625
|
}
|
|
1626
|
+
|
|
1822
1627
|
.grid-reverse .col-offset-0 {
|
|
1823
1628
|
margin-left: auto;
|
|
1824
1629
|
margin-right: 0%;
|
|
@@ -1827,6 +1632,7 @@ template {
|
|
|
1827
1632
|
.col-offset-1 {
|
|
1828
1633
|
margin-left: 8.3333333333%;
|
|
1829
1634
|
}
|
|
1635
|
+
|
|
1830
1636
|
.grid-reverse .col-offset-1 {
|
|
1831
1637
|
margin-left: auto;
|
|
1832
1638
|
margin-right: 8.3333333333%;
|
|
@@ -1835,6 +1641,7 @@ template {
|
|
|
1835
1641
|
.col-offset-2 {
|
|
1836
1642
|
margin-left: 16.6666666667%;
|
|
1837
1643
|
}
|
|
1644
|
+
|
|
1838
1645
|
.grid-reverse .col-offset-2 {
|
|
1839
1646
|
margin-left: auto;
|
|
1840
1647
|
margin-right: 16.6666666667%;
|
|
@@ -1843,6 +1650,7 @@ template {
|
|
|
1843
1650
|
.col-offset-3 {
|
|
1844
1651
|
margin-left: 25%;
|
|
1845
1652
|
}
|
|
1653
|
+
|
|
1846
1654
|
.grid-reverse .col-offset-3 {
|
|
1847
1655
|
margin-left: auto;
|
|
1848
1656
|
margin-right: 25%;
|
|
@@ -1851,6 +1659,7 @@ template {
|
|
|
1851
1659
|
.col-offset-4 {
|
|
1852
1660
|
margin-left: 33.3333333333%;
|
|
1853
1661
|
}
|
|
1662
|
+
|
|
1854
1663
|
.grid-reverse .col-offset-4 {
|
|
1855
1664
|
margin-left: auto;
|
|
1856
1665
|
margin-right: 33.3333333333%;
|
|
@@ -1859,6 +1668,7 @@ template {
|
|
|
1859
1668
|
.col-offset-5 {
|
|
1860
1669
|
margin-left: 41.6666666667%;
|
|
1861
1670
|
}
|
|
1671
|
+
|
|
1862
1672
|
.grid-reverse .col-offset-5 {
|
|
1863
1673
|
margin-left: auto;
|
|
1864
1674
|
margin-right: 41.6666666667%;
|
|
@@ -1867,6 +1677,7 @@ template {
|
|
|
1867
1677
|
.col-offset-6 {
|
|
1868
1678
|
margin-left: 50%;
|
|
1869
1679
|
}
|
|
1680
|
+
|
|
1870
1681
|
.grid-reverse .col-offset-6 {
|
|
1871
1682
|
margin-left: auto;
|
|
1872
1683
|
margin-right: 50%;
|
|
@@ -1875,6 +1686,7 @@ template {
|
|
|
1875
1686
|
.col-offset-7 {
|
|
1876
1687
|
margin-left: 58.3333333333%;
|
|
1877
1688
|
}
|
|
1689
|
+
|
|
1878
1690
|
.grid-reverse .col-offset-7 {
|
|
1879
1691
|
margin-left: auto;
|
|
1880
1692
|
margin-right: 58.3333333333%;
|
|
@@ -1883,6 +1695,7 @@ template {
|
|
|
1883
1695
|
.col-offset-8 {
|
|
1884
1696
|
margin-left: 66.6666666667%;
|
|
1885
1697
|
}
|
|
1698
|
+
|
|
1886
1699
|
.grid-reverse .col-offset-8 {
|
|
1887
1700
|
margin-left: auto;
|
|
1888
1701
|
margin-right: 66.6666666667%;
|
|
@@ -1891,6 +1704,7 @@ template {
|
|
|
1891
1704
|
.col-offset-9 {
|
|
1892
1705
|
margin-left: 75%;
|
|
1893
1706
|
}
|
|
1707
|
+
|
|
1894
1708
|
.grid-reverse .col-offset-9 {
|
|
1895
1709
|
margin-left: auto;
|
|
1896
1710
|
margin-right: 75%;
|
|
@@ -1899,6 +1713,7 @@ template {
|
|
|
1899
1713
|
.col-offset-10 {
|
|
1900
1714
|
margin-left: 83.3333333333%;
|
|
1901
1715
|
}
|
|
1716
|
+
|
|
1902
1717
|
.grid-reverse .col-offset-10 {
|
|
1903
1718
|
margin-left: auto;
|
|
1904
1719
|
margin-right: 83.3333333333%;
|
|
@@ -1907,6 +1722,7 @@ template {
|
|
|
1907
1722
|
.col-offset-11 {
|
|
1908
1723
|
margin-left: 91.6666666667%;
|
|
1909
1724
|
}
|
|
1725
|
+
|
|
1910
1726
|
.grid-reverse .col-offset-11 {
|
|
1911
1727
|
margin-left: auto;
|
|
1912
1728
|
margin-right: 91.6666666667%;
|
|
@@ -2346,112 +2162,112 @@ template {
|
|
|
2346
2162
|
flex-grow: 1;
|
|
2347
2163
|
max-width: 138.6666666667px;
|
|
2348
2164
|
}
|
|
2165
|
+
|
|
2349
2166
|
@media only screen and (min-width: 1024px) {
|
|
2350
2167
|
.col-1-max {
|
|
2351
2168
|
max-width: 133.3333333333px;
|
|
2352
2169
|
}
|
|
2353
2170
|
}
|
|
2354
|
-
|
|
2355
2171
|
.col-2-max {
|
|
2356
2172
|
flex-grow: 1;
|
|
2357
2173
|
max-width: 277.3333333333px;
|
|
2358
2174
|
}
|
|
2175
|
+
|
|
2359
2176
|
@media only screen and (min-width: 1024px) {
|
|
2360
2177
|
.col-2-max {
|
|
2361
2178
|
max-width: 266.6666666667px;
|
|
2362
2179
|
}
|
|
2363
2180
|
}
|
|
2364
|
-
|
|
2365
2181
|
.col-3-max {
|
|
2366
2182
|
flex-grow: 1;
|
|
2367
2183
|
max-width: 416px;
|
|
2368
2184
|
}
|
|
2185
|
+
|
|
2369
2186
|
@media only screen and (min-width: 1024px) {
|
|
2370
2187
|
.col-3-max {
|
|
2371
2188
|
max-width: 400px;
|
|
2372
2189
|
}
|
|
2373
2190
|
}
|
|
2374
|
-
|
|
2375
2191
|
.col-4-max {
|
|
2376
2192
|
flex-grow: 1;
|
|
2377
2193
|
max-width: 554.6666666667px;
|
|
2378
2194
|
}
|
|
2195
|
+
|
|
2379
2196
|
@media only screen and (min-width: 1024px) {
|
|
2380
2197
|
.col-4-max {
|
|
2381
2198
|
max-width: 533.3333333333px;
|
|
2382
2199
|
}
|
|
2383
2200
|
}
|
|
2384
|
-
|
|
2385
2201
|
.col-5-max {
|
|
2386
2202
|
flex-grow: 1;
|
|
2387
2203
|
max-width: 693.3333333333px;
|
|
2388
2204
|
}
|
|
2205
|
+
|
|
2389
2206
|
@media only screen and (min-width: 1024px) {
|
|
2390
2207
|
.col-5-max {
|
|
2391
2208
|
max-width: 666.6666666667px;
|
|
2392
2209
|
}
|
|
2393
2210
|
}
|
|
2394
|
-
|
|
2395
2211
|
.col-6-max {
|
|
2396
2212
|
flex-grow: 1;
|
|
2397
2213
|
max-width: 832px;
|
|
2398
2214
|
}
|
|
2215
|
+
|
|
2399
2216
|
@media only screen and (min-width: 1024px) {
|
|
2400
2217
|
.col-6-max {
|
|
2401
2218
|
max-width: 800px;
|
|
2402
2219
|
}
|
|
2403
2220
|
}
|
|
2404
|
-
|
|
2405
2221
|
.col-7-max {
|
|
2406
2222
|
flex-grow: 1;
|
|
2407
2223
|
max-width: 970.6666666667px;
|
|
2408
2224
|
}
|
|
2225
|
+
|
|
2409
2226
|
@media only screen and (min-width: 1024px) {
|
|
2410
2227
|
.col-7-max {
|
|
2411
2228
|
max-width: 933.3333333333px;
|
|
2412
2229
|
}
|
|
2413
2230
|
}
|
|
2414
|
-
|
|
2415
2231
|
.col-8-max {
|
|
2416
2232
|
flex-grow: 1;
|
|
2417
2233
|
max-width: 1109.3333333333px;
|
|
2418
2234
|
}
|
|
2235
|
+
|
|
2419
2236
|
@media only screen and (min-width: 1024px) {
|
|
2420
2237
|
.col-8-max {
|
|
2421
2238
|
max-width: 1066.6666666667px;
|
|
2422
2239
|
}
|
|
2423
2240
|
}
|
|
2424
|
-
|
|
2425
2241
|
.col-9-max {
|
|
2426
2242
|
flex-grow: 1;
|
|
2427
2243
|
max-width: 1248px;
|
|
2428
2244
|
}
|
|
2245
|
+
|
|
2429
2246
|
@media only screen and (min-width: 1024px) {
|
|
2430
2247
|
.col-9-max {
|
|
2431
2248
|
max-width: 1200px;
|
|
2432
2249
|
}
|
|
2433
2250
|
}
|
|
2434
|
-
|
|
2435
2251
|
.col-10-max {
|
|
2436
2252
|
flex-grow: 1;
|
|
2437
2253
|
max-width: 1386.6666666667px;
|
|
2438
2254
|
}
|
|
2255
|
+
|
|
2439
2256
|
@media only screen and (min-width: 1024px) {
|
|
2440
2257
|
.col-10-max {
|
|
2441
2258
|
max-width: 1333.3333333333px;
|
|
2442
2259
|
}
|
|
2443
2260
|
}
|
|
2444
|
-
|
|
2445
2261
|
.col-11-max {
|
|
2446
2262
|
flex-grow: 1;
|
|
2447
2263
|
max-width: 1525.3333333333px;
|
|
2448
2264
|
}
|
|
2265
|
+
|
|
2449
2266
|
@media only screen and (min-width: 1024px) {
|
|
2450
2267
|
.col-11-max {
|
|
2451
2268
|
max-width: 1466.6666666667px;
|
|
2452
2269
|
}
|
|
2453
2270
|
}
|
|
2454
|
-
|
|
2455
2271
|
.grid-reverse {
|
|
2456
2272
|
flex-direction: row-reverse;
|
|
2457
2273
|
}
|
|
@@ -16851,13 +16667,13 @@ template {
|
|
|
16851
16667
|
padding-left: 16px;
|
|
16852
16668
|
padding-right: 16px;
|
|
16853
16669
|
}
|
|
16670
|
+
|
|
16854
16671
|
@media only screen and (min-width: 1024px) {
|
|
16855
16672
|
.container {
|
|
16856
16673
|
padding-left: 56px;
|
|
16857
16674
|
padding-right: 56px;
|
|
16858
16675
|
}
|
|
16859
16676
|
}
|
|
16860
|
-
|
|
16861
16677
|
.flex-row {
|
|
16862
16678
|
flex-direction: row;
|
|
16863
16679
|
}
|
|
@@ -17662,4 +17478,8 @@ code.terminal::before {
|
|
|
17662
17478
|
a {
|
|
17663
17479
|
color: #824F2D;
|
|
17664
17480
|
}
|
|
17481
|
+
|
|
17482
|
+
body {
|
|
17483
|
+
padding-bottom: 32px;
|
|
17484
|
+
}
|
|
17665
17485
|
/*# sourceMappingURL=styles.css.map */
|