@alfalab/core-components-vars 9.5.0 → 9.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/colors-bluetint.css +8 -0
- package/colors-indigo.css +8 -0
- package/cssm/bundle/click.css +8 -0
- package/cssm/bundle/corp.css +8 -0
- package/cssm/bundle/intranet.css +8 -0
- package/cssm/bundle/mobile.css +8 -0
- package/cssm/bundle/site.css +8 -0
- package/cssm/colors-bluetint.css +8 -0
- package/cssm/colors-indigo.css +8 -0
- package/cssm/index.css +8 -0
- package/index.d.ts +8 -0
- package/index.js +8 -0
- package/mixins.css +0 -1
- package/package.json +2 -3
- package/src/border-radius.css +11 -0
- package/src/bundle/click.css +7 -0
- package/src/bundle/corp.css +7 -0
- package/src/bundle/intranet.css +7 -0
- package/src/bundle/mobile.css +7 -0
- package/src/bundle/site.css +6 -0
- package/src/colors-addons.css +127 -0
- package/src/colors-bluetint.css +515 -0
- package/src/colors-bluetint.ts +4 -0
- package/src/colors-indigo.css +515 -0
- package/src/colors-indigo.ts +4 -0
- package/src/colors-transparent.css +28 -0
- package/src/colors-x5.css +4 -0
- package/src/colors.css +71 -0
- package/src/gaps.css +30 -0
- package/src/index.css +9 -0
- package/src/mixins.css +71 -0
- package/src/shadows-bluetint.css +43 -0
- package/src/shadows-indigo.css +38 -0
- package/src/typography.css +519 -0
- package/send-stats.js +0 -82
package/src/index.css
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@import './colors.css'; /* deprecated */
|
|
2
|
+
@import './colors-bluetint.css';
|
|
3
|
+
@import './colors-addons.css';
|
|
4
|
+
@import './colors-transparent.css';
|
|
5
|
+
@import './shadows-bluetint.css';
|
|
6
|
+
@import './border-radius.css';
|
|
7
|
+
@import './gaps.css';
|
|
8
|
+
@import './typography.css';
|
|
9
|
+
@import './mixins.css';
|
package/src/mixins.css
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
@define-mixin focus-outline {
|
|
2
|
+
outline: 2px solid var(--focus-color);
|
|
3
|
+
outline-offset: 2px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@define-mixin custom-scrollbar {
|
|
7
|
+
overflow: auto;
|
|
8
|
+
cursor: auto;
|
|
9
|
+
|
|
10
|
+
&::-webkit-scrollbar {
|
|
11
|
+
width: 12px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&::-webkit-scrollbar-track {
|
|
15
|
+
background-color: transparent;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&::-webkit-scrollbar-track-piece {
|
|
19
|
+
background-color: transparent;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&::-webkit-scrollbar-thumb {
|
|
23
|
+
background-color: var(--color-light-graphic-primary-alpha-30);
|
|
24
|
+
border-radius: var(--border-radius-circle) / 6px;
|
|
25
|
+
border-color: transparent;
|
|
26
|
+
border-style: solid;
|
|
27
|
+
border-width: 4px;
|
|
28
|
+
background-clip: padding-box;
|
|
29
|
+
min-height: 40px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&::-webkit-scrollbar-thumb:hover {
|
|
33
|
+
border-radius: var(--border-radius-circle) / 7px;
|
|
34
|
+
border-width: 4px 3px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&::-webkit-scrollbar-thumb:active {
|
|
38
|
+
background-color: var(--color-light-graphic-primary-alpha-60);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&::-webkit-resizer {
|
|
42
|
+
background: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="%2386868a" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.64645 0.646447C8.84171 0.841709 8.84171 1.15829 8.64645 1.35355L1.35355 8.64645C1.15829 8.84171 0.841709 8.84171 0.646447 8.64645C0.451184 8.45118 0.451184 8.1346 0.646447 7.93934L7.93934 0.646447C8.1346 0.451184 8.45118 0.451184 8.64645 0.646447ZM8.64645 3.64645C8.84171 3.84171 8.84171 4.15829 8.64645 4.35355L4.35355 8.64645C4.15829 8.84171 3.84171 8.84171 3.64645 8.64645C3.45118 8.45118 3.45118 8.1346 3.64645 7.93934L7.93934 3.64645C8.1346 3.45118 8.45118 3.45118 8.64645 3.64645Z" /></svg>')
|
|
43
|
+
no-repeat right bottom;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&::-webkit-scrollbar-button,
|
|
47
|
+
&::-webkit-scrollbar-corner {
|
|
48
|
+
display: none;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@define-mixin bg-class-list {
|
|
53
|
+
@each $backgroundColorBg in accent, info, attention-muted, positive-muted, negative-muted,
|
|
54
|
+
primary, primary-inverted, secondary, secondary-inverted, tertiary, tertiary-inverted,
|
|
55
|
+
quaternary, quaternary-inverted
|
|
56
|
+
{
|
|
57
|
+
.background-$(backgroundColorBg) {
|
|
58
|
+
background-color: var(--color-light-bg-$(backgroundColorBg));
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@each $backgroundColor in specialbg-component, specialbg-component-inverted,
|
|
63
|
+
specialbg-primary-grouped, specialbg-secondary-grouped, specialbg-tertiary-grouped,
|
|
64
|
+
specialbg-secondary-transparent, specialbg-secondary-transparent-inverted,
|
|
65
|
+
specialbg-tertiary-transparent, specialbg-tertiary-transparent-inverted
|
|
66
|
+
{
|
|
67
|
+
.background-$(backgroundColor) {
|
|
68
|
+
background-color: var(--color-light-$(backgroundColor));
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--shadow-xs: 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);
|
|
3
|
+
--shadow-s: 0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04),
|
|
4
|
+
0 0 1px rgba(0, 0, 0, 0.04);
|
|
5
|
+
--shadow-m: 0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),
|
|
6
|
+
0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);
|
|
7
|
+
--shadow-l: 0 24px 32px rgba(0, 0, 0, 0.08), 0 20px 24px rgba(0, 0, 0, 0.08),
|
|
8
|
+
0 12px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);
|
|
9
|
+
--shadow-xl: 0 32px 40px rgba(0, 0, 0, 0.08), 0 24px 32px rgba(0, 0, 0, 0.08),
|
|
10
|
+
0 20px 24px rgba(0, 0, 0, 0.08), 0 12px 16px rgba(0, 0, 0, 0.04),
|
|
11
|
+
0 4px 8px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.04);
|
|
12
|
+
|
|
13
|
+
/* Hard */
|
|
14
|
+
--shadow-xs-hard: 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);
|
|
15
|
+
--shadow-s-hard: 0 12px 16px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.16),
|
|
16
|
+
0 0 1px rgba(0, 0, 0, 0.16);
|
|
17
|
+
--shadow-m-hard: 0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),
|
|
18
|
+
0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);
|
|
19
|
+
--shadow-l-hard: 0 24px 32px rgba(0, 0, 0, 0.2), 0 20px 24px rgba(0, 0, 0, 0.2),
|
|
20
|
+
0 12px 16px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);
|
|
21
|
+
--shadow-xl-hard: 0 32px 40px rgba(0, 0, 0, 0.2), 0 24px 32px rgba(0, 0, 0, 0.2),
|
|
22
|
+
0 20px 24px rgba(0, 0, 0, 0.2), 0 12px 16px rgba(0, 0, 0, 0.16),
|
|
23
|
+
0 4px 8px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.16);
|
|
24
|
+
|
|
25
|
+
/* Up */
|
|
26
|
+
--shadow-xs-up: 0 0 4px rgba(0, 0, 0, 0.02), 0 -2px 4px rgba(0, 0, 0, 0.04);
|
|
27
|
+
--shadow-s-up: 0 0 8px rgba(0, 0, 0, 0.04), 0 -4px 8px rgba(0, 0, 0, 0.08);
|
|
28
|
+
--shadow-m-up: 0 0 16px rgba(0, 0, 0, 0.08), 0 -8px 16px rgba(0, 0, 0, 0.16);
|
|
29
|
+
--shadow-l-up: 0 0 24px rgba(0, 0, 0, 0.12), 0 -12px 24px rgba(0, 0, 0, 0.24);
|
|
30
|
+
--shadow-xl-up: 0 0 32px rgba(0, 0, 0, 0.16), 0 -16px 32px rgba(0, 0, 0, 0.32);
|
|
31
|
+
|
|
32
|
+
/* Hard up */
|
|
33
|
+
--shadow-xs-hard-up: 0 0 4px rgba(0, 0, 0, 0.02), 0 -2px 4px rgba(0, 0, 0, 0.04),
|
|
34
|
+
0 -2px 4px rgba(0, 0, 0, 0.16);
|
|
35
|
+
--shadow-s-hard-up: 0 0 8px rgba(0, 0, 0, 0.04), 0 -4px 8px rgba(0, 0, 0, 0.08),
|
|
36
|
+
0 -4px 8px rgba(0, 0, 0, 0.16);
|
|
37
|
+
--shadow-m-hard-up: 0 0 16px rgba(0, 0, 0, 0.08), 0 -8px 16px rgba(0, 0, 0, 0.16),
|
|
38
|
+
0 -8px 16px rgba(0, 0, 0, 0.16);
|
|
39
|
+
--shadow-l-hard-up: 0 0 24px rgba(0, 0, 0, 0.12), 0 -12px 24px rgba(0, 0, 0, 0.24),
|
|
40
|
+
0 -12px 24px rgba(0, 0, 0, 0.16);
|
|
41
|
+
--shadow-xl-hard-up: 0 0 32px rgba(0, 0, 0, 0.16), 0 -16px 32px rgba(0, 0, 0, 0.32),
|
|
42
|
+
0 -16px 32px rgba(0, 0, 0, 0.16);
|
|
43
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--shadow-xs: 0 0 4px rgba(11, 31, 53, 0.02), 0 2px 4px rgba(11, 31, 53, 0.04);
|
|
3
|
+
--shadow-s: 0 0 8px rgba(11, 31, 53, 0.04), 0 4px 8px rgba(11, 31, 53, 0.08);
|
|
4
|
+
--shadow-m: 0 0 16px rgba(11, 31, 53, 0.08), 0 8px 16px rgba(11, 31, 53, 0.16);
|
|
5
|
+
--shadow-l: 0 0 24px rgba(11, 31, 53, 0.12), 0 12px 24px rgba(11, 31, 53, 0.24);
|
|
6
|
+
--shadow-xl: 0 0 32px rgba(11, 31, 53, 0.16), 0 16px 32px rgba(11, 31, 53, 0.32);
|
|
7
|
+
|
|
8
|
+
/* Hard */
|
|
9
|
+
--shadow-xs-hard: 0 0 4px rgba(11, 31, 53, 0.02), 0 2px 4px rgba(11, 31, 53, 0.04),
|
|
10
|
+
0 2px 4px rgba(11, 31, 53, 0.16);
|
|
11
|
+
--shadow-s-hard: 0 0 8px rgba(11, 31, 53, 0.04), 0 4px 8px rgba(11, 31, 53, 0.08),
|
|
12
|
+
0 4px 8px rgba(11, 31, 53, 0.16);
|
|
13
|
+
--shadow-m-hard: 0 0 16px rgba(11, 31, 53, 0.08), 0 8px 16px rgba(11, 31, 53, 0.16),
|
|
14
|
+
0 8px 16px rgba(11, 31, 53, 0.16);
|
|
15
|
+
--shadow-l-hard: 0 0 24px rgba(11, 31, 53, 0.12), 0 12px 24px rgba(11, 31, 53, 0.24),
|
|
16
|
+
0 12px 24px rgba(11, 31, 53, 0.16);
|
|
17
|
+
--shadow-xl-hard: 0 0 32px rgba(11, 31, 53, 0.16), 0 16px 32px rgba(11, 31, 53, 0.32),
|
|
18
|
+
0 16px 32px rgba(11, 31, 53, 0.16);
|
|
19
|
+
|
|
20
|
+
/* Up */
|
|
21
|
+
--shadow-xs-up: 0 0 4px rgba(11, 31, 53, 0.02), 0 -2px 4px rgba(11, 31, 53, 0.04);
|
|
22
|
+
--shadow-s-up: 0 0 8px rgba(11, 31, 53, 0.04), 0 -4px 8px rgba(11, 31, 53, 0.08);
|
|
23
|
+
--shadow-m-up: 0 0 16px rgba(11, 31, 53, 0.08), 0 -8px 16px rgba(11, 31, 53, 0.16);
|
|
24
|
+
--shadow-l-up: 0 0 24px rgba(11, 31, 53, 0.12), 0 -12px 24px rgba(11, 31, 53, 0.24);
|
|
25
|
+
--shadow-xl-up: 0 0 32px rgba(11, 31, 53, 0.16), 0 -16px 32px rgba(11, 31, 53, 0.32);
|
|
26
|
+
|
|
27
|
+
/* Hard up */
|
|
28
|
+
--shadow-xs-hard-up: 0 0 4px rgba(11, 31, 53, 0.02), 0 -2px 4px rgba(11, 31, 53, 0.04),
|
|
29
|
+
0 -2px 4px rgba(11, 31, 53, 0.16);
|
|
30
|
+
--shadow-s-hard-up: 0 0 8px rgba(11, 31, 53, 0.04), 0 -4px 8px rgba(11, 31, 53, 0.08),
|
|
31
|
+
0 -4px 8px rgba(11, 31, 53, 0.16);
|
|
32
|
+
--shadow-m-hard-up: 0 0 16px rgba(11, 31, 53, 0.08), 0 -8px 16px rgba(11, 31, 53, 0.16),
|
|
33
|
+
0 -8px 16px rgba(11, 31, 53, 0.16);
|
|
34
|
+
--shadow-l-hard-up: 0 0 24px rgba(11, 31, 53, 0.12), 0 -12px 24px rgba(11, 31, 53, 0.24),
|
|
35
|
+
0 -12px 24px rgba(11, 31, 53, 0.16);
|
|
36
|
+
--shadow-xl-hard-up: 0 0 32px rgba(11, 31, 53, 0.16), 0 -16px 32px rgba(11, 31, 53, 0.32),
|
|
37
|
+
0 -16px 32px rgba(11, 31, 53, 0.16);
|
|
38
|
+
}
|
|
@@ -0,0 +1,519 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--font-family-system: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica,
|
|
3
|
+
sans-serif;
|
|
4
|
+
--font-family-styrene: 'Styrene UI', system-ui, -apple-system, 'Segoe UI', Roboto,
|
|
5
|
+
'Helvetica Neue', Helvetica, sans-serif;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@define-mixin accent_caps {
|
|
9
|
+
font-size: 12px;
|
|
10
|
+
line-height: 16px;
|
|
11
|
+
font-weight: 700;
|
|
12
|
+
letter-spacing: 1.25px;
|
|
13
|
+
text-transform: uppercase;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@define-mixin accent_component_primary {
|
|
17
|
+
font-size: 16px;
|
|
18
|
+
line-height: 20px;
|
|
19
|
+
font-weight: 700;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@define-mixin accent_component_secondary {
|
|
23
|
+
font-size: 14px;
|
|
24
|
+
line-height: 18px;
|
|
25
|
+
font-weight: 700;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@define-mixin accent_primary_large {
|
|
29
|
+
font-size: 18px;
|
|
30
|
+
line-height: 24px;
|
|
31
|
+
font-weight: 700;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@define-mixin accent_primary_medium {
|
|
35
|
+
font-size: 16px;
|
|
36
|
+
line-height: 24px;
|
|
37
|
+
font-weight: 700;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@define-mixin accent_primary_small {
|
|
41
|
+
font-size: 14px;
|
|
42
|
+
line-height: 20px;
|
|
43
|
+
font-weight: 700;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@define-mixin accent_secondary_large {
|
|
47
|
+
font-size: 13px;
|
|
48
|
+
line-height: 16px;
|
|
49
|
+
font-weight: 700;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@define-mixin accent_secondary_medium {
|
|
53
|
+
font-size: 12px;
|
|
54
|
+
line-height: 16px;
|
|
55
|
+
font-weight: 700;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@define-mixin accent_secondary_small {
|
|
59
|
+
font-size: 11px;
|
|
60
|
+
line-height: 16px;
|
|
61
|
+
font-weight: 700;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@define-mixin action_caps {
|
|
65
|
+
font-size: 12px;
|
|
66
|
+
line-height: 16px;
|
|
67
|
+
font-weight: 700;
|
|
68
|
+
letter-spacing: 1.25px;
|
|
69
|
+
text-transform: uppercase;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@define-mixin action_component_primary {
|
|
73
|
+
font-size: 16px;
|
|
74
|
+
line-height: 20px;
|
|
75
|
+
font-weight: 500;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@define-mixin action_component_secondary {
|
|
79
|
+
font-size: 14px;
|
|
80
|
+
line-height: 18px;
|
|
81
|
+
font-weight: 500;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@define-mixin action_primary_large {
|
|
85
|
+
font-size: 18px;
|
|
86
|
+
line-height: 24px;
|
|
87
|
+
font-weight: 500;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@define-mixin action_primary_medium {
|
|
91
|
+
font-size: 16px;
|
|
92
|
+
line-height: 24px;
|
|
93
|
+
font-weight: 500;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@define-mixin action_primary_small {
|
|
97
|
+
font-size: 14px;
|
|
98
|
+
line-height: 20px;
|
|
99
|
+
font-weight: 500;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@define-mixin action_secondary_large {
|
|
103
|
+
font-size: 13px;
|
|
104
|
+
line-height: 16px;
|
|
105
|
+
font-weight: 500;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
@define-mixin action_secondary_medium {
|
|
109
|
+
font-size: 12px;
|
|
110
|
+
line-height: 16px;
|
|
111
|
+
font-weight: 500;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
@define-mixin action_secondary_small {
|
|
115
|
+
font-size: 11px;
|
|
116
|
+
line-height: 16px;
|
|
117
|
+
font-weight: 500;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
@define-mixin headline-mobile_large {
|
|
121
|
+
font-size: 30px;
|
|
122
|
+
line-height: 36px;
|
|
123
|
+
font-weight: 500;
|
|
124
|
+
font-feature-settings: 'ss01';
|
|
125
|
+
font-family: var(--font-family-styrene);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@define-mixin headline-mobile_medium {
|
|
129
|
+
font-size: 26px;
|
|
130
|
+
line-height: 32px;
|
|
131
|
+
font-weight: 500;
|
|
132
|
+
font-feature-settings: 'ss01';
|
|
133
|
+
font-family: var(--font-family-styrene);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
@define-mixin headline-mobile_small {
|
|
137
|
+
font-size: 20px;
|
|
138
|
+
line-height: 28px;
|
|
139
|
+
font-weight: 500;
|
|
140
|
+
font-feature-settings: 'ss01';
|
|
141
|
+
font-family: var(--font-family-styrene);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
@define-mixin headline-mobile_xlarge {
|
|
145
|
+
font-size: 34px;
|
|
146
|
+
line-height: 40px;
|
|
147
|
+
font-weight: 500;
|
|
148
|
+
font-feature-settings: 'ss01';
|
|
149
|
+
font-family: var(--font-family-styrene);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
@define-mixin headline-mobile_xsmall {
|
|
153
|
+
font-size: 16px;
|
|
154
|
+
line-height: 20px;
|
|
155
|
+
font-weight: 500;
|
|
156
|
+
font-feature-settings: 'ss01';
|
|
157
|
+
font-family: var(--font-family-styrene);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
@define-mixin headline-system-mobile_large {
|
|
161
|
+
font-size: 30px;
|
|
162
|
+
line-height: 36px;
|
|
163
|
+
font-weight: 600;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
@define-mixin headline-system-mobile_medium {
|
|
167
|
+
font-size: 26px;
|
|
168
|
+
line-height: 32px;
|
|
169
|
+
font-weight: 600;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
@define-mixin headline-system-mobile_small {
|
|
173
|
+
font-size: 20px;
|
|
174
|
+
line-height: 28px;
|
|
175
|
+
font-weight: 600;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
@define-mixin headline-system-mobile_xlarge {
|
|
179
|
+
font-size: 34px;
|
|
180
|
+
line-height: 40px;
|
|
181
|
+
font-weight: 600;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@define-mixin headline-system-mobile_xsmall {
|
|
185
|
+
font-size: 16px;
|
|
186
|
+
line-height: 20px;
|
|
187
|
+
font-weight: 600;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
@define-mixin headline-system_large {
|
|
191
|
+
font-size: 40px;
|
|
192
|
+
line-height: 48px;
|
|
193
|
+
font-weight: 700;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
@define-mixin headline-system_medium {
|
|
197
|
+
font-size: 30px;
|
|
198
|
+
line-height: 36px;
|
|
199
|
+
font-weight: 700;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
@define-mixin headline-system_small {
|
|
203
|
+
font-size: 22px;
|
|
204
|
+
line-height: 26px;
|
|
205
|
+
font-weight: 700;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
@define-mixin headline-system_xlarge {
|
|
209
|
+
font-size: 48px;
|
|
210
|
+
line-height: 52px;
|
|
211
|
+
font-weight: 700;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
@define-mixin headline-system_xsmall {
|
|
215
|
+
font-size: 18px;
|
|
216
|
+
line-height: 22px;
|
|
217
|
+
font-weight: 700;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
@define-mixin headline_large {
|
|
221
|
+
font-size: 40px;
|
|
222
|
+
line-height: 48px;
|
|
223
|
+
font-weight: 500;
|
|
224
|
+
font-feature-settings: 'ss01';
|
|
225
|
+
font-family: var(--font-family-styrene);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
@define-mixin headline_medium {
|
|
229
|
+
font-size: 32px;
|
|
230
|
+
line-height: 40px;
|
|
231
|
+
font-weight: 500;
|
|
232
|
+
font-feature-settings: 'ss01';
|
|
233
|
+
font-family: var(--font-family-styrene);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
@define-mixin headline_small {
|
|
237
|
+
font-size: 24px;
|
|
238
|
+
line-height: 32px;
|
|
239
|
+
font-weight: 500;
|
|
240
|
+
font-feature-settings: 'ss01';
|
|
241
|
+
font-family: var(--font-family-styrene);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
@define-mixin headline_xlarge {
|
|
245
|
+
font-size: 48px;
|
|
246
|
+
line-height: 64px;
|
|
247
|
+
font-weight: 500;
|
|
248
|
+
font-feature-settings: 'ss01';
|
|
249
|
+
font-family: var(--font-family-styrene);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
@define-mixin headline_xsmall {
|
|
253
|
+
font-size: 20px;
|
|
254
|
+
line-height: 24px;
|
|
255
|
+
font-weight: 500;
|
|
256
|
+
font-feature-settings: 'ss01';
|
|
257
|
+
font-family: var(--font-family-styrene);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
@define-mixin key_large {
|
|
261
|
+
font-size: 120px;
|
|
262
|
+
line-height: 132px;
|
|
263
|
+
font-weight: 500;
|
|
264
|
+
font-feature-settings: 'ss01';
|
|
265
|
+
font-family: var(--font-family-styrene);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
@define-mixin key_medium {
|
|
269
|
+
font-size: 96px;
|
|
270
|
+
line-height: 120px;
|
|
271
|
+
font-weight: 500;
|
|
272
|
+
font-feature-settings: 'ss01';
|
|
273
|
+
font-family: var(--font-family-styrene);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
@define-mixin key_small {
|
|
277
|
+
font-size: 80px;
|
|
278
|
+
line-height: 96px;
|
|
279
|
+
font-weight: 500;
|
|
280
|
+
font-feature-settings: 'ss01';
|
|
281
|
+
font-family: var(--font-family-styrene);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
@define-mixin key_xlarge {
|
|
285
|
+
font-size: 144px;
|
|
286
|
+
line-height: 180px;
|
|
287
|
+
font-weight: 500;
|
|
288
|
+
font-feature-settings: 'ss01';
|
|
289
|
+
font-family: var(--font-family-styrene);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
@define-mixin key_xsmall {
|
|
293
|
+
font-size: 64px;
|
|
294
|
+
line-height: 80px;
|
|
295
|
+
font-weight: 500;
|
|
296
|
+
font-feature-settings: 'ss01';
|
|
297
|
+
font-family: var(--font-family-styrene);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
@define-mixin paragraph_caps {
|
|
301
|
+
font-size: 12px;
|
|
302
|
+
line-height: 16px;
|
|
303
|
+
font-weight: 500;
|
|
304
|
+
letter-spacing: 1.25px;
|
|
305
|
+
text-transform: uppercase;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
@define-mixin paragraph_component_primary {
|
|
309
|
+
font-size: 16px;
|
|
310
|
+
line-height: 20px;
|
|
311
|
+
font-weight: 400;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
@define-mixin paragraph_component_secondary {
|
|
315
|
+
font-size: 14px;
|
|
316
|
+
line-height: 18px;
|
|
317
|
+
font-weight: 400;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
@define-mixin paragraph_primary_large {
|
|
321
|
+
font-size: 18px;
|
|
322
|
+
line-height: 24px;
|
|
323
|
+
font-weight: 400;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
@define-mixin paragraph_primary_medium {
|
|
327
|
+
font-size: 16px;
|
|
328
|
+
line-height: 24px;
|
|
329
|
+
font-weight: 400;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
@define-mixin paragraph_primary_small {
|
|
333
|
+
font-size: 14px;
|
|
334
|
+
line-height: 20px;
|
|
335
|
+
font-weight: 400;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
@define-mixin paragraph_secondary_large {
|
|
339
|
+
font-size: 13px;
|
|
340
|
+
line-height: 16px;
|
|
341
|
+
font-weight: 400;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
@define-mixin paragraph_secondary_medium {
|
|
345
|
+
font-size: 12px;
|
|
346
|
+
line-height: 16px;
|
|
347
|
+
font-weight: 400;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
@define-mixin paragraph_secondary_small {
|
|
351
|
+
font-size: 11px;
|
|
352
|
+
line-height: 16px;
|
|
353
|
+
font-weight: 400;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
@define-mixin promo-mobile_large {
|
|
357
|
+
font-size: 30px;
|
|
358
|
+
line-height: 36px;
|
|
359
|
+
font-weight: 400;
|
|
360
|
+
font-feature-settings: 'ss01';
|
|
361
|
+
font-family: var(--font-family-styrene);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
@define-mixin promo-mobile_medium {
|
|
365
|
+
font-size: 26px;
|
|
366
|
+
line-height: 32px;
|
|
367
|
+
font-weight: 400;
|
|
368
|
+
font-feature-settings: 'ss01';
|
|
369
|
+
font-family: var(--font-family-styrene);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
@define-mixin promo-mobile_small {
|
|
373
|
+
font-size: 20px;
|
|
374
|
+
line-height: 28px;
|
|
375
|
+
font-weight: 400;
|
|
376
|
+
font-feature-settings: 'ss01';
|
|
377
|
+
font-family: var(--font-family-styrene);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
@define-mixin promo-mobile_xlarge {
|
|
381
|
+
font-size: 34px;
|
|
382
|
+
line-height: 40px;
|
|
383
|
+
font-weight: 400;
|
|
384
|
+
font-feature-settings: 'ss01';
|
|
385
|
+
font-family: var(--font-family-styrene);
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
@define-mixin promo-mobile_xsmall {
|
|
389
|
+
font-size: 16px;
|
|
390
|
+
line-height: 20px;
|
|
391
|
+
font-weight: 400;
|
|
392
|
+
font-feature-settings: 'ss01';
|
|
393
|
+
font-family: var(--font-family-styrene);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
@define-mixin promo-system-mobile_large {
|
|
397
|
+
font-size: 30px;
|
|
398
|
+
line-height: 36px;
|
|
399
|
+
font-weight: 400;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
@define-mixin promo-system-mobile_medium {
|
|
403
|
+
font-size: 26px;
|
|
404
|
+
line-height: 32px;
|
|
405
|
+
font-weight: 400;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
@define-mixin promo-system-mobile_small {
|
|
409
|
+
font-size: 20px;
|
|
410
|
+
line-height: 28px;
|
|
411
|
+
font-weight: 400;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
@define-mixin promo-system-mobile_xlarge {
|
|
415
|
+
font-size: 34px;
|
|
416
|
+
line-height: 40px;
|
|
417
|
+
font-weight: 400;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
@define-mixin promo-system-mobile_xsmall {
|
|
421
|
+
font-size: 16px;
|
|
422
|
+
line-height: 20px;
|
|
423
|
+
font-weight: 400;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
@define-mixin promo-system_large {
|
|
427
|
+
font-size: 40px;
|
|
428
|
+
line-height: 48px;
|
|
429
|
+
font-weight: 400;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
@define-mixin promo-system_medium {
|
|
433
|
+
font-size: 30px;
|
|
434
|
+
line-height: 36px;
|
|
435
|
+
font-weight: 400;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
@define-mixin promo-system_small {
|
|
439
|
+
font-size: 22px;
|
|
440
|
+
line-height: 26px;
|
|
441
|
+
font-weight: 400;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
@define-mixin promo-system_xlarge {
|
|
445
|
+
font-size: 48px;
|
|
446
|
+
line-height: 52px;
|
|
447
|
+
font-weight: 400;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
@define-mixin promo-system_xsmall {
|
|
451
|
+
font-size: 18px;
|
|
452
|
+
line-height: 22px;
|
|
453
|
+
font-weight: 400;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
@define-mixin promo_large {
|
|
457
|
+
font-size: 40px;
|
|
458
|
+
line-height: 48px;
|
|
459
|
+
font-weight: 400;
|
|
460
|
+
font-feature-settings: 'ss01';
|
|
461
|
+
font-family: var(--font-family-styrene);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
@define-mixin promo_medium {
|
|
465
|
+
font-size: 32px;
|
|
466
|
+
line-height: 40px;
|
|
467
|
+
font-weight: 400;
|
|
468
|
+
font-feature-settings: 'ss01';
|
|
469
|
+
font-family: var(--font-family-styrene);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
@define-mixin promo_small {
|
|
473
|
+
font-size: 24px;
|
|
474
|
+
line-height: 32px;
|
|
475
|
+
font-weight: 400;
|
|
476
|
+
font-feature-settings: 'ss01';
|
|
477
|
+
font-family: var(--font-family-styrene);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
@define-mixin promo_xlarge {
|
|
481
|
+
font-size: 48px;
|
|
482
|
+
line-height: 64px;
|
|
483
|
+
font-weight: 400;
|
|
484
|
+
font-feature-settings: 'ss01';
|
|
485
|
+
font-family: var(--font-family-styrene);
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
@define-mixin promo_xsmall {
|
|
489
|
+
font-size: 20px;
|
|
490
|
+
line-height: 24px;
|
|
491
|
+
font-weight: 400;
|
|
492
|
+
font-feature-settings: 'ss01';
|
|
493
|
+
font-family: var(--font-family-styrene);
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
@define-mixin accent_component {
|
|
497
|
+
font-size: 16px;
|
|
498
|
+
line-height: 20px;
|
|
499
|
+
font-weight: 700;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
@define-mixin action_component {
|
|
503
|
+
font-size: 16px;
|
|
504
|
+
line-height: 20px;
|
|
505
|
+
font-weight: 500;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
@define-mixin paragraph_component {
|
|
509
|
+
font-size: 16px;
|
|
510
|
+
line-height: 20px;
|
|
511
|
+
font-weight: 400;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
@define-mixin row_limit $num {
|
|
515
|
+
-webkit-line-clamp: $num;
|
|
516
|
+
display: -webkit-box;
|
|
517
|
+
-webkit-box-orient: vertical;
|
|
518
|
+
overflow: hidden;
|
|
519
|
+
}
|