testio-tailwind 1.1.2 → 2.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.
- package/.eleventy.js +2 -5
- package/README.md +1 -37
- package/icon-classes-extractor.js +3 -3
- package/index.html +122 -73
- package/package.json +13 -29
- package/src/_includes/head.njk +3 -3
- package/src/assets/images/pencil.svg +11 -0
- package/src/assets/stylesheets/app.css +94 -69
- package/src/assets/stylesheets/components/alerts.css +1 -1
- package/src/assets/stylesheets/components/cards.css +9 -9
- package/src/assets/stylesheets/components/chat.css +9 -6
- package/src/assets/stylesheets/components/customer/customer_productcards.css +3 -3
- package/src/assets/stylesheets/components/devices.css +1 -1
- package/src/assets/stylesheets/components/forms.css +3 -10
- package/src/assets/stylesheets/components/header.css +1 -2
- package/src/assets/stylesheets/components/icons.css +25 -5
- package/src/assets/stylesheets/components/list_item.css +1 -2
- package/src/assets/stylesheets/components/lists.css +1 -2
- package/src/assets/stylesheets/components/loading_spinner.css +61 -79
- package/src/assets/stylesheets/components/metasidebar.css +1 -2
- package/src/assets/stylesheets/components/notifications.css +1 -1
- package/src/assets/stylesheets/components/select.css +1 -1
- package/src/assets/stylesheets/components/select2.css +1 -1
- package/src/assets/stylesheets/components/splitview.css +6 -6
- package/src/assets/stylesheets/components/tables.css +18 -18
- package/src/assets/stylesheets/components/tags.css +10 -3
- package/src/assets/stylesheets/components/test_header.css +3 -3
- package/src/assets/stylesheets/components/tester/tester_cards.css +4 -4
- package/src/assets/stylesheets/components/trix_editor.css +3 -3
- package/src/assets/stylesheets/components/typography.css +12 -11
- package/src/assets/stylesheets/tailwind_config.css +299 -0
- package/src/assets/stylesheets/tailwind_custom_utilities.css +268 -0
- package/src/index.pug +8 -39
- package/src/pages/components/banner_cards.haml +0 -10
- package/src/pages/components/loading_spinner.haml +5 -5
- package/src/pages/forms/search.haml +2 -2
- package/src/pages/icons/index.njk +35 -2
- package/src/static/icons.json +1 -0
- package/src/static/site.webmanifest +2 -2
- package/src/assets/stylesheets/postcss.config.js +0 -24
- package/src/assets/stylesheets/tailwind.config.js +0 -346
- /package/src/{static → assets/images}/android-chrome-192x192.png +0 -0
- /package/src/{static → assets/images}/android-chrome-512x512.png +0 -0
- /package/src/{static → assets/images}/apple-touch-icon.png +0 -0
- /package/src/{static → assets/images}/favicon-16x16.png +0 -0
- /package/src/{static → assets/images}/favicon-32x32.png +0 -0
|
@@ -7,16 +7,16 @@
|
|
|
7
7
|
grid-template-columns: 1fr;
|
|
8
8
|
grid-template-rows: auto auto 1fr auto;
|
|
9
9
|
grid-area: main;
|
|
10
|
-
@
|
|
10
|
+
@media (width >= theme(--breakpoint-lg)) {
|
|
11
11
|
grid-template-columns: 1fr 1fr;
|
|
12
12
|
}
|
|
13
|
-
@
|
|
13
|
+
@media (width >= theme(--breakpoint-xl)) {
|
|
14
14
|
grid-template-columns: 1fr 2fr;
|
|
15
15
|
}
|
|
16
|
-
@
|
|
16
|
+
@media (width >= theme(--breakpoint-2xl)) {
|
|
17
17
|
grid-template-columns: 2fr 3fr;
|
|
18
18
|
}
|
|
19
|
-
@
|
|
19
|
+
@media (width >= theme(--breakpoint-3xl)) {
|
|
20
20
|
grid-template-columns: 1fr 3fr;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
dd {
|
|
130
130
|
margin-bottom: 0;
|
|
131
131
|
}
|
|
132
|
-
@
|
|
132
|
+
@media (width >= theme(--breakpoint-xl)) {
|
|
133
133
|
grid-template-columns: 1fr 2fr 1fr 2fr;
|
|
134
134
|
}
|
|
135
135
|
}
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
.splitview-details-content-grid {
|
|
167
167
|
@apply grid gap-xs mb-md;
|
|
168
168
|
|
|
169
|
-
@
|
|
169
|
+
@media (width >= theme(--breakpoint-xl)) {
|
|
170
170
|
grid-template-columns: 1fr 3fr;
|
|
171
171
|
.label {
|
|
172
172
|
padding-top: 2px;
|
|
@@ -188,20 +188,20 @@ td.action-cell,
|
|
|
188
188
|
|
|
189
189
|
.table-cellstyle th.missing::after {
|
|
190
190
|
@apply right-0 bg-gray-600;
|
|
191
|
-
-webkit-mask-image: url("
|
|
192
|
-
mask-image: url("
|
|
191
|
+
-webkit-mask-image: url("/assets/images/exclamation.svg");
|
|
192
|
+
mask-image: url("/assets/images/exclamation.svg");
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
.table-cellstyle th.inprogress::after {
|
|
196
196
|
@apply bg-gray-600;
|
|
197
|
-
-webkit-mask-image: url("
|
|
198
|
-
mask-image: url("
|
|
197
|
+
-webkit-mask-image: url("/assets/images/clock.svg");
|
|
198
|
+
mask-image: url("/assets/images/clock.svg");
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
.table-cellstyle th.completed::after {
|
|
202
202
|
@apply h-2.5 top-2.5 right-1.5 bg-success;
|
|
203
|
-
-webkit-mask-image: url("
|
|
204
|
-
mask-image: url("
|
|
203
|
+
-webkit-mask-image: url("/assets/images/check-thick.svg");
|
|
204
|
+
mask-image: url("/assets/images/check-thick.svg");
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
.table-cellstyle td {
|
|
@@ -228,8 +228,8 @@ td.action-cell,
|
|
|
228
228
|
|
|
229
229
|
.table-cellstyle td.inprogress::after {
|
|
230
230
|
@apply bg-gray-600;
|
|
231
|
-
-webkit-mask-image: url("
|
|
232
|
-
mask-image: url("
|
|
231
|
+
-webkit-mask-image: url("/assets/images/clock.svg");
|
|
232
|
+
mask-image: url("/assets/images/clock.svg");
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
.table-cellstyle td.completed {
|
|
@@ -238,8 +238,8 @@ td.action-cell,
|
|
|
238
238
|
|
|
239
239
|
.table-cellstyle .completed::after {
|
|
240
240
|
@apply h-2.5 top-2.5 right-1.5 bg-success;
|
|
241
|
-
-webkit-mask-image: url("
|
|
242
|
-
mask-image: url("
|
|
241
|
+
-webkit-mask-image: url("/assets/images/check-thick.svg");
|
|
242
|
+
mask-image: url("/assets/images/check-thick.svg");
|
|
243
243
|
}
|
|
244
244
|
|
|
245
245
|
.table-cellstyle td.cell-editable,
|
|
@@ -266,8 +266,8 @@ td.action-cell,
|
|
|
266
266
|
@apply absolute inline-block w-icon-xs h-icon-xs right-2.5 top-2 bg-primary;
|
|
267
267
|
content: "";
|
|
268
268
|
mask-repeat: round;
|
|
269
|
-
-webkit-mask-image: url("
|
|
270
|
-
mask-image: url("
|
|
269
|
+
-webkit-mask-image: url("/assets/images/pencil.svg");
|
|
270
|
+
mask-image: url("/assets/images/pencil.svg");
|
|
271
271
|
}
|
|
272
272
|
}
|
|
273
273
|
|
|
@@ -342,8 +342,8 @@ td.action-cell,
|
|
|
342
342
|
&::after {
|
|
343
343
|
@apply block w-full h-full bg-white;
|
|
344
344
|
content: "";
|
|
345
|
-
mask-image: url("
|
|
346
|
-
-webkit-mask-image: url("
|
|
345
|
+
mask-image: url("/assets/images/checkbox-background.svg");
|
|
346
|
+
-webkit-mask-image: url("/assets/images/checkbox-background.svg");
|
|
347
347
|
mask-repeat: no-repeat;
|
|
348
348
|
}
|
|
349
349
|
}
|
|
@@ -368,14 +368,14 @@ td.action-cell,
|
|
|
368
368
|
|
|
369
369
|
.table-cellstyle td.cell-selectable.inprogress label::after {
|
|
370
370
|
@apply bg-gray-600;
|
|
371
|
-
-webkit-mask-image: url("
|
|
372
|
-
mask-image: url("
|
|
371
|
+
-webkit-mask-image: url("/assets/images/clock.svg");
|
|
372
|
+
mask-image: url("/assets/images/clock.svg");
|
|
373
373
|
}
|
|
374
374
|
|
|
375
375
|
.table-cellstyle .cell-selectable.completed label::after {
|
|
376
376
|
@apply h-2.5 top-2.5 right-1.5 bg-success;
|
|
377
|
-
-webkit-mask-image: url("
|
|
378
|
-
mask-image: url("
|
|
377
|
+
-webkit-mask-image: url("/assets/images/check-thick.svg");
|
|
378
|
+
mask-image: url("/assets/images/check-thick.svg");
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.tag .icon {
|
|
16
|
-
|
|
16
|
+
height: var(--font-size-icon-xs);
|
|
17
|
+
font-size: var(--font-size-icon-xs);
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
.tag.sm {
|
|
@@ -29,13 +30,19 @@
|
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
.tag.popover-tag {
|
|
32
|
-
@apply text-base h-auto
|
|
33
|
+
@apply text-base h-auto cursor-pointer;
|
|
33
34
|
padding-top: 4px;
|
|
34
35
|
padding-bottom: 4px;
|
|
35
36
|
}
|
|
36
37
|
|
|
38
|
+
.tag.popover-tag:hover {
|
|
39
|
+
@apply bg-link-hover text-white;
|
|
40
|
+
}
|
|
41
|
+
|
|
37
42
|
.tag.popover-tag .icon {
|
|
38
|
-
@apply
|
|
43
|
+
@apply mr-icon-spacing;
|
|
44
|
+
height: var(--font-size-icon-xs);
|
|
45
|
+
font-size: var(--font-size-icon-xs);
|
|
39
46
|
}
|
|
40
47
|
|
|
41
48
|
.tag.popover-tag:hover .icon {
|
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
grid-template-columns: 1fr auto auto;
|
|
8
8
|
grid-template-rows: auto;
|
|
9
9
|
|
|
10
|
-
@
|
|
10
|
+
@media (width >= theme(--breakpoint-sm)) {
|
|
11
11
|
@apply pt-xs pr-md pb-0 pl-md;
|
|
12
12
|
grid-template-areas: "test-title test-progress session-info test-actions"
|
|
13
13
|
"nav-tabs nav-tabs nav-tabs nav-tabs";
|
|
14
14
|
grid-template-columns: auto 1fr auto auto;
|
|
15
15
|
grid-template-rows: auto;
|
|
16
16
|
}
|
|
17
|
-
@
|
|
17
|
+
@media (width >= theme(--breakpoint-md)) {
|
|
18
18
|
@apply pt-xs pr-md pb-0 pl-body-padding-desktop;
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
.nav-tabs {
|
|
45
45
|
@apply pt-xxs pb-xs;
|
|
46
46
|
}
|
|
47
|
-
@
|
|
47
|
+
@media (width >= theme(--breakpoint-sm)) {
|
|
48
48
|
@apply py-xxs;
|
|
49
49
|
}
|
|
50
50
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
.grid-testercards {
|
|
2
2
|
@apply grid gap-grid-gutter;
|
|
3
3
|
|
|
4
|
-
@
|
|
4
|
+
@media (width >= theme(--breakpoint-sm)) {
|
|
5
5
|
grid-template-columns: 1fr 1fr;
|
|
6
6
|
}
|
|
7
|
-
@
|
|
7
|
+
@media (width >= theme(--breakpoint-lg)) {
|
|
8
8
|
grid-template-columns: 1fr 1fr 1fr;
|
|
9
9
|
}
|
|
10
|
-
@
|
|
10
|
+
@media (width >= theme(--breakpoint-xl)) {
|
|
11
11
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
|
|
12
12
|
}
|
|
13
|
-
@
|
|
13
|
+
@media (width >= theme(--breakpoint-3xl)) {
|
|
14
14
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.form-group.trix-editor {
|
|
2
2
|
@apply gap-grid-gutter grid-rows-auto;
|
|
3
3
|
grid-template-rows: auto;
|
|
4
|
-
@
|
|
4
|
+
@media (width >= theme(--breakpoint-md)) {
|
|
5
5
|
grid-template-areas:
|
|
6
6
|
"label trix-toolbar"
|
|
7
7
|
"label trix-editor";
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
.trix-editor .trix-content {
|
|
12
12
|
@apply -mt-grid-gutter;
|
|
13
|
-
@
|
|
13
|
+
@media (width >= theme(--breakpoint-md)) {
|
|
14
14
|
grid-area: trix-editor;
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
trix-toolbar {
|
|
23
23
|
@apply border border-bordercolor rounded-t;
|
|
24
|
-
@
|
|
24
|
+
@media (width >= theme(--breakpoint-md)) {
|
|
25
25
|
grid-area: trix-toolbar;
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
|
|
2
|
+
body {
|
|
3
|
+
@apply font-body text-base;
|
|
4
|
+
}
|
|
5
|
+
|
|
2
6
|
h1, h2, h3, h4, h5,
|
|
3
7
|
.text-heading-1,
|
|
4
8
|
.text-heading-2,
|
|
@@ -9,31 +13,27 @@ h1, h2, h3, h4, h5,
|
|
|
9
13
|
}
|
|
10
14
|
|
|
11
15
|
h1 {
|
|
12
|
-
|
|
16
|
+
font-size: var(--font-size-heading-1);
|
|
13
17
|
}
|
|
14
18
|
|
|
15
19
|
h2 {
|
|
16
|
-
|
|
20
|
+
font-size: var(--font-size-heading-2);
|
|
17
21
|
}
|
|
18
22
|
|
|
19
23
|
h3 {
|
|
20
|
-
|
|
24
|
+
font-size: var(--font-size-heading-3);
|
|
21
25
|
}
|
|
22
26
|
|
|
23
27
|
h4 {
|
|
24
|
-
|
|
28
|
+
font-size: var(--font-size-heading-4);
|
|
25
29
|
}
|
|
26
30
|
|
|
27
31
|
h5 {
|
|
28
|
-
|
|
32
|
+
font-size: var(--font-size-heading-5);
|
|
29
33
|
}
|
|
30
34
|
|
|
31
35
|
h6 {
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
body {
|
|
36
|
-
@apply text-base;
|
|
36
|
+
font-size: var(--font-size-heading-6);
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.text-display-1,
|
|
@@ -41,10 +41,11 @@ body {
|
|
|
41
41
|
.text-display-3,
|
|
42
42
|
.text-display-4 {
|
|
43
43
|
@apply font-display;
|
|
44
|
+
font-weight: var(--font-weight-display);
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
a {
|
|
47
|
-
@apply text-link font-semibold hover:text-link-hover hover:underline cursor-pointer;
|
|
48
|
+
@apply text-link font-semibold leading-5 hover:text-link-hover hover:underline cursor-pointer;
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
code {
|
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
/* Colors */
|
|
3
|
+
--color-transparent: transparent;
|
|
4
|
+
--color-current: currentColor;
|
|
5
|
+
--color-black: #1d1d1d;
|
|
6
|
+
--color-white: #ffffff;
|
|
7
|
+
--color-gray-100: #f2f2f2;
|
|
8
|
+
--color-gray-200: #e6e6e6;
|
|
9
|
+
--color-gray-300: #bfc1c5;
|
|
10
|
+
--color-gray-400: #9fa2a8;
|
|
11
|
+
--color-gray-500: #7c8188;
|
|
12
|
+
--color-gray-600: #5f656d;
|
|
13
|
+
--color-gray-700: #343A40;
|
|
14
|
+
--color-gray-800: #262626;
|
|
15
|
+
--color-gray-900: #222222;
|
|
16
|
+
--color-gray-lightest: #f2f2f2;
|
|
17
|
+
--color-gray-lighter: #e6e6e6;
|
|
18
|
+
--color-gray-light: #bfc1c5;
|
|
19
|
+
--color-gray-DEFAULT: #9fa2a8;
|
|
20
|
+
--color-gray-dark: #7c8188;
|
|
21
|
+
--color-gray-darker: #5f656d;
|
|
22
|
+
--color-gray-darkest: #262626;
|
|
23
|
+
--color-red-200: #FF3131;
|
|
24
|
+
--color-red-light: #FF3131;
|
|
25
|
+
--color-red-500: #ec0404;
|
|
26
|
+
--color-red-DEFAULT: #ec0404;
|
|
27
|
+
--color-orange-500: #f48d21;
|
|
28
|
+
--color-orange-DEFAULT: #f48d21;
|
|
29
|
+
--color-green-500: #8cbd24;
|
|
30
|
+
--color-green-DEFAULT: #8cbd24;
|
|
31
|
+
--color-yellow-500: #d8ce0d;
|
|
32
|
+
--color-yellow-DEFAULT: #d8ce0d;
|
|
33
|
+
--color-blue-200: #21bef4;
|
|
34
|
+
--color-blue-light: #21bef4;
|
|
35
|
+
--color-blue-500: #326dd1;
|
|
36
|
+
--color-blue-DEFAULT: #326dd1;
|
|
37
|
+
--color-petrol-500: #236a84;
|
|
38
|
+
--color-petrol-DEFAULT: #236a84;
|
|
39
|
+
--color-petrol-800: #263340;
|
|
40
|
+
--color-petrol-dark: #263340;
|
|
41
|
+
--color-teal-300: #78eac1;
|
|
42
|
+
--color-teal-lighter: #78eac1;
|
|
43
|
+
--color-teal-400: #6ddeba;
|
|
44
|
+
--color-teal-light: #6ddeba;
|
|
45
|
+
--color-teal-500: #33ba9e;
|
|
46
|
+
--color-teal-DEFAULT: #33ba9e;
|
|
47
|
+
--color-pink-500: #e83e8c;
|
|
48
|
+
--color-pink-DEFAULT: #e83e8c;
|
|
49
|
+
--color-purple-200: #8988eb;
|
|
50
|
+
--color-purple-light: #8988eb;
|
|
51
|
+
--color-purple-500: #7954ff;
|
|
52
|
+
--color-purple-DEFAULT: #7954ff;
|
|
53
|
+
--border-DEFAULT: 1px;
|
|
54
|
+
--border-0: 0px;
|
|
55
|
+
--border-1: 1px;
|
|
56
|
+
--border-2: 2px;
|
|
57
|
+
--border-4: 4px;
|
|
58
|
+
--border-6: 6px;
|
|
59
|
+
--border-10: 10px;
|
|
60
|
+
--color-appbody: #FFFFFF;
|
|
61
|
+
--color-black: #1d1d1d;
|
|
62
|
+
--color-primary: #236a84;
|
|
63
|
+
--color-link: #236a84;
|
|
64
|
+
--color-link-hover: #21bef4;
|
|
65
|
+
--color-header: #1d1d1d;
|
|
66
|
+
--color-actionbar: #236a84;
|
|
67
|
+
--color-bordercolor: #e6e6e6;
|
|
68
|
+
--color-bordercolor-dark: #D4D6DC;
|
|
69
|
+
--color-success: #8cbd24;
|
|
70
|
+
--color-danger: #ec0404;
|
|
71
|
+
--color-disabled: #bfc1c5;
|
|
72
|
+
--color-disabled-dark: #5f656d;
|
|
73
|
+
--color-placeholder: #bfc1c5;
|
|
74
|
+
--color-info: #326dd1;
|
|
75
|
+
--color-label-color: #5f656d;
|
|
76
|
+
--color-label-inverted-color: #bfc1c5;
|
|
77
|
+
--color-dark: #222222;
|
|
78
|
+
--color-card: #e6e6e6;
|
|
79
|
+
--color-critical: #ec0404;
|
|
80
|
+
--color-high: #d8ce0d;
|
|
81
|
+
--color-low: #9fa2a8;
|
|
82
|
+
--color-visual: #f48d21;
|
|
83
|
+
--color-content: #326dd1;
|
|
84
|
+
--color-usability: #263340;
|
|
85
|
+
--color-color-product-website: #236a84;
|
|
86
|
+
--color-color-product-apple: #326dd1;
|
|
87
|
+
--color-color-product-android: #8cbd24;
|
|
88
|
+
--color-color-product-streaming: #FF3131;
|
|
89
|
+
--color-color-product-gaming: #f48d21;
|
|
90
|
+
--color-color-product-windows: #d8ce0d;
|
|
91
|
+
--color-navigation-customer-color: #262626;
|
|
92
|
+
--color-navlink-customer-hover-color: #78eac1;
|
|
93
|
+
--color-navlink-customer-hover-bg: #343A40;
|
|
94
|
+
--color-navlink-customer-active-bg: #78eac1;
|
|
95
|
+
--color-navigation-tester-color: #1d1d1d;
|
|
96
|
+
--color-navlink-tester-hover-color: #7954ff;
|
|
97
|
+
--color-navlink-tester-hover-bg: #343A40;
|
|
98
|
+
--color-navlink-tester-active-bg: #7954ff;
|
|
99
|
+
--color-navigation-manager-color: #ffffff;
|
|
100
|
+
--color-navlink-manager-hover-color: #222222;
|
|
101
|
+
--color-navlink-manager-hover-bg: #e6e6e6;
|
|
102
|
+
--color-navlink-manager-active-bg: #6ddeba;
|
|
103
|
+
|
|
104
|
+
/* Font Family */
|
|
105
|
+
--font-body: "Source Sans 3", sans-serif;
|
|
106
|
+
--font-sans: "Source Sans 3", sans-serif;
|
|
107
|
+
--font-serif: "Source Sans 3", sans-serif;
|
|
108
|
+
--font-mono: "Source Code Pro", monospace;
|
|
109
|
+
--font-display: "Source Sans 3", sans-serif;
|
|
110
|
+
|
|
111
|
+
/*//// Font size ////*/
|
|
112
|
+
--font-size-base: 0.875rem;
|
|
113
|
+
--font-size-heading-1: 2.25rem;
|
|
114
|
+
--font-size-heading-2: 1.875rem;
|
|
115
|
+
--font-size-heading-3: 1.563rem;
|
|
116
|
+
--font-size-heading-4: 1.375rem;
|
|
117
|
+
--font-size-heading-5: 1.125rem;
|
|
118
|
+
--font-size-heading-6: 1rem;
|
|
119
|
+
--font-size-navlinks: 0.875rem;
|
|
120
|
+
--font-size-buttons: 0.875rem;
|
|
121
|
+
--font-size-label: 0.8125rem;
|
|
122
|
+
--font-size-label-sm: 0.75rem;
|
|
123
|
+
--font-size-icon: 20px;
|
|
124
|
+
--font-size-icon-lg: 40px;
|
|
125
|
+
--font-size-icon-xl: 60px;
|
|
126
|
+
--font-size-icon-xxl: 90px;
|
|
127
|
+
--font-size-icon-sm: 18px;
|
|
128
|
+
--font-size-icon-xs: 16px;
|
|
129
|
+
--font-size-icon-xxs: 10px;
|
|
130
|
+
--font-size-icon-xxxs: 0.625rem;
|
|
131
|
+
--font-size-xl: 4.25rem;
|
|
132
|
+
--font-size-lg: 1.25rem;
|
|
133
|
+
--font-size-sm: 0.813rem;
|
|
134
|
+
--font-size-xs: 0.6875rem;
|
|
135
|
+
--font-size-xxs: 0.625rem;
|
|
136
|
+
--font-size-display-1: 3.25rem;
|
|
137
|
+
--font-size-display-2: 3rem;
|
|
138
|
+
--font-size-display-3: 2.75rem;
|
|
139
|
+
--font-size-display-4: 2.5rem;
|
|
140
|
+
--font-size-hidden: 0rem;
|
|
141
|
+
|
|
142
|
+
/*//// Font weight ////*/
|
|
143
|
+
--font-weight-headings: 300;
|
|
144
|
+
--font-weight-navlinks: 600;
|
|
145
|
+
--font-weight-display: 200;
|
|
146
|
+
|
|
147
|
+
/*//// Border radius ////*/
|
|
148
|
+
--rounded-DEFAULT: 5px;
|
|
149
|
+
--rounded-default: 0.3rem;
|
|
150
|
+
|
|
151
|
+
/*//// Spacing ////*/
|
|
152
|
+
--spacing-spacing: 1.875rem;
|
|
153
|
+
--spacing-xxs: 0.3125rem;
|
|
154
|
+
--spacing-xs: 0.625rem;
|
|
155
|
+
--spacing-sm: 0.9375rem;
|
|
156
|
+
--spacing-md: 1.25rem;
|
|
157
|
+
--spacing-lg: 3.125rem;
|
|
158
|
+
--spacing-xl: 3.75rem;
|
|
159
|
+
--spacing-xxl: 5.625rem;
|
|
160
|
+
--spacing-spacing-2xl: 7.5rem;
|
|
161
|
+
--spacing-spacing-3xl: 11.25rem;
|
|
162
|
+
--spacing-spacing-4xl: 15rem;
|
|
163
|
+
--spacing-spacing-5xl: 18.75rem;
|
|
164
|
+
--spacing-spacing-6xl: 22.5rem;
|
|
165
|
+
--spacing-spacing-7xl: 26.25rem;
|
|
166
|
+
--spacing-spacing-8xl: 30rem;
|
|
167
|
+
--spacing-btn: 2.5rem;
|
|
168
|
+
--spacing-btn-xs: 1.25rem;
|
|
169
|
+
--spacing-btn-sm: 1.875rem;
|
|
170
|
+
--spacing-btn-lg: 5.625rem;
|
|
171
|
+
--spacing-btn-xl: 9.375rem;
|
|
172
|
+
--spacing-header: 3.125rem;
|
|
173
|
+
--spacing-icon: 1.25rem;
|
|
174
|
+
--spacing-icon-lg: 2.5rem;
|
|
175
|
+
--spacing-icon-xl: 3.75rem;
|
|
176
|
+
--spacing-icon-sm: 1.125rem;
|
|
177
|
+
--spacing-icon-xs: 1rem;
|
|
178
|
+
--spacing-icon-xxs: 0.875rem;
|
|
179
|
+
--spacing-icon-spacing: 0.5rem;
|
|
180
|
+
--spacing-heading: 1rem;
|
|
181
|
+
--spacing-heading-lg: 2rem;
|
|
182
|
+
--spacing-section-margin: 1.875rem;
|
|
183
|
+
--spacing-actionbar: 4.375rem;
|
|
184
|
+
--spacing-aside: 12.5rem;
|
|
185
|
+
--spacing-sidebar: 12.5rem;
|
|
186
|
+
--spacing-grid-gutter: 1.25rem;
|
|
187
|
+
--spacing-13: 3.25rem;
|
|
188
|
+
--spacing-30: 7.25rem;
|
|
189
|
+
--spacing-144: 36rem;
|
|
190
|
+
--spacing-192: 48rem;
|
|
191
|
+
--spacing-240: 60rem;
|
|
192
|
+
--spacing-body-padding-mobile: 0.9375rem;
|
|
193
|
+
--spacing-body-padding-tablet: 1.875rem;
|
|
194
|
+
--spacing-body-padding-desktop: 3.125rem;
|
|
195
|
+
--spacing-card-lg: 23.75rem;
|
|
196
|
+
--spacing-card-md: 17.5rem;
|
|
197
|
+
--spacing-card-sm: 11.25rem;
|
|
198
|
+
--spacing-card-xs: 5rem;
|
|
199
|
+
--spacing-1px: 1px;
|
|
200
|
+
--spacing-modal-lg: 75rem;
|
|
201
|
+
--spacing-modal-md: 43.75rem;
|
|
202
|
+
--spacing-modal-sm: 25rem;
|
|
203
|
+
--spacing-progress-bar-thin-height: 0.125rem;
|
|
204
|
+
--spacing-progress-bar-thick-height: 0.625rem;
|
|
205
|
+
--spacing-meta-sidebar-width: 21.875rem;
|
|
206
|
+
--spacing-popover-width: 15rem;
|
|
207
|
+
|
|
208
|
+
/*//// Min width ////*/
|
|
209
|
+
--min-w-auto: auto;
|
|
210
|
+
--min-w-btn: 2.5rem;
|
|
211
|
+
--min-w-btn-sm: 1.875rem;
|
|
212
|
+
--min-w-cell: 6.25rem;
|
|
213
|
+
--min-w-6: 1.5rem;
|
|
214
|
+
--min-w-9: 2.25rem;
|
|
215
|
+
--min-w-11: 2.75rem;
|
|
216
|
+
--min-w-12: 3rem;
|
|
217
|
+
--min-w-24: 6rem;
|
|
218
|
+
--min-w-30: 7.25rem;
|
|
219
|
+
--min-w-36: 9rem;
|
|
220
|
+
--min-w-56: 14rem;
|
|
221
|
+
--min-w-spacing: 1.875rem;
|
|
222
|
+
--min-w-xxs: 0.3125rem;
|
|
223
|
+
--min-w-xs: 0.625rem;
|
|
224
|
+
--min-w-sm: 0.9375rem;
|
|
225
|
+
--min-w-md: 1.25rem;
|
|
226
|
+
--min-w-lg: 3.125rem;
|
|
227
|
+
--min-w-xl: 3.75rem;
|
|
228
|
+
--min-w-xxl: 5.625rem;
|
|
229
|
+
--min-w-spacing-2xl: 9.375rem;
|
|
230
|
+
--min-w-spacing-3xl: 11.25rem;
|
|
231
|
+
--min-w-spacing-4xl: 15rem;
|
|
232
|
+
--min-w-spacing-5xl: 18.75rem;
|
|
233
|
+
--min-w-spacing-6xl: 22.5rem;
|
|
234
|
+
--min-w-spacing-7xl: 26.25rem;
|
|
235
|
+
--min-w-spacing-8xl: 30rem;
|
|
236
|
+
--min-h-auto: auto;
|
|
237
|
+
--min-h-btn: 2.5rem;
|
|
238
|
+
--min-h-btn-sm: 1.875rem;
|
|
239
|
+
--min-h-8: 2rem;
|
|
240
|
+
--min-h-11: 2.75rem;
|
|
241
|
+
--min-h-12: 3rem;
|
|
242
|
+
--min-h-16: 4rem;
|
|
243
|
+
--min-h-22: 5.5rem;
|
|
244
|
+
--min-h-24: 6rem;
|
|
245
|
+
--min-h-30: 7.25rem;
|
|
246
|
+
--min-h-32: 8rem;
|
|
247
|
+
--min-h-48: 12rem;
|
|
248
|
+
--min-h-96: 24rem;
|
|
249
|
+
--min-h-144: 36rem;
|
|
250
|
+
--min-h-spacing: 1.875rem;
|
|
251
|
+
--min-h-xxs: 0.3125rem;
|
|
252
|
+
--min-h-xs: 0.625rem;
|
|
253
|
+
--min-h-sm: 0.9375rem;
|
|
254
|
+
--min-h-md: 1.25rem;
|
|
255
|
+
--min-h-lg: 3.125rem;
|
|
256
|
+
--min-h-xl: 3.75rem;
|
|
257
|
+
--min-h-xxl: 5.625rem;
|
|
258
|
+
|
|
259
|
+
/*//// Max width ////*/
|
|
260
|
+
--max-w-8: 2rem;
|
|
261
|
+
--max-w-32: 8rem;
|
|
262
|
+
--max-w-44: 11rem;
|
|
263
|
+
--max-w-48: 12rem;
|
|
264
|
+
--max-w-96: 24rem;
|
|
265
|
+
--max-w-144: 36rem;
|
|
266
|
+
--max-w-192: 48rem;
|
|
267
|
+
--max-w-xxl: 5.625rem;
|
|
268
|
+
--max-w-card-lg: 23.75rem;
|
|
269
|
+
--max-w-card-md: 17.5rem;
|
|
270
|
+
--max-w-card-sm: 11.25rem;
|
|
271
|
+
--max-w-card-xs: 5rem;
|
|
272
|
+
--max-w-capped: 43.75rem;
|
|
273
|
+
--shadow-DEFAULT: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 0px 0px 0 rgba(0, 0, 0, 0.05);
|
|
274
|
+
--background-image-pattern-disabled-bright: url('/assets/images/pattern-striped-bright.png');
|
|
275
|
+
--background-image-pattern-disabled-dark: url('/assets/images/pattern-striped-dark.png');
|
|
276
|
+
|
|
277
|
+
/*//// Grid ////*/
|
|
278
|
+
--grid-cols-3-1: 3fr 1fr;
|
|
279
|
+
--grid-cols-1-3: 1fr 3fr;
|
|
280
|
+
--grid-cols-max-auto: max-content auto;
|
|
281
|
+
--grid-cols-4-auto: auto auto auto auto;
|
|
282
|
+
--grid-cols-3-auto: auto auto auto;
|
|
283
|
+
--grid-cols-2-auto: auto auto;
|
|
284
|
+
--grid-cols-2-auto-fr: auto auto 1fr;
|
|
285
|
+
--grid-cols-auto-fr-auto: auto 1fr auto;
|
|
286
|
+
--grid-cols-auto-fr-2-auto: auto 1fr auto auto;
|
|
287
|
+
--grid-cols-auto-fr: auto 1fr;
|
|
288
|
+
--grid-cols-auto: auto;
|
|
289
|
+
--grid-cols-14: repeat(14, minmax(0, 1fr));
|
|
290
|
+
--grid-rows-auto: auto;
|
|
291
|
+
--grid-rows-auto-auto: auto auto;
|
|
292
|
+
--line-height-ultratight: 0.5;
|
|
293
|
+
--outline-link-hover: 2px solid #21bef4;
|
|
294
|
+
|
|
295
|
+
/*//// Breakpoints ////*/
|
|
296
|
+
--breakpoint-xs: 30rem;
|
|
297
|
+
--breakpoint-2xl: 1600px;
|
|
298
|
+
--breakpoint-3xl: 1930px;
|
|
299
|
+
}
|