@nd-storybook/storybook 0.3.4 → 0.3.6
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/dist/index.cjs.js +35 -26
- package/dist/index.d.ts +22 -2
- package/dist/index.es.js +1622 -1539
- package/dist/style.css +3 -0
- package/package.json +4 -2
- package/dist/css/components/modal.css +0 -133
- package/dist/css/components/portal/accordion.css +0 -39
- package/dist/css/components/portal/accordionItem.css +0 -102
- package/dist/css/components/portal/alert.css +0 -71
- package/dist/css/components/portal/dataFrame.css +0 -450
- package/dist/css/components/portal/description-list.css +0 -37
- package/dist/css/components/portal/menuItem.css +0 -93
- package/dist/css/components/portal/navigationCard.css +0 -86
- package/dist/css/components/portal/portal-navigation.css +0 -45
- package/dist/css/molecules/form.css +0 -28
- package/dist/css/tailwind.css +0 -17
- package/dist/css/tokens.css +0 -294
- package/dist/css/typography.css +0 -359
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
@layer components {
|
|
2
|
-
|
|
3
|
-
.nd-form {
|
|
4
|
-
/* No specific styles */
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.nd-form-group {
|
|
8
|
-
@apply space-y-1 font-fira-sans;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.nd-form-group .label {
|
|
12
|
-
@apply text-sm text-[#1f2937] dark:text-[#f0f0f0]; /* fallback text-gray-800 replaced with exact */
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.nd-form-group .help {
|
|
16
|
-
@apply text-sm text-[#727272] dark:text-[#b0b0b0];
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.nd-form-group .error {
|
|
20
|
-
@apply text-sm text-[#e9425b];
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.nd-form-input {
|
|
24
|
-
@apply w-full px-3 py-2 border border-[#d1d5db] text-black dark:bg-[#2a2a2a] dark:text-[#f0f0f0] dark:border-[#444]
|
|
25
|
-
focus:dark:border-[#666] focus:dark:ring-2 focus:dark:ring-white/10;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
}
|
package/dist/css/tailwind.css
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
@import "tokens.css";
|
|
2
|
-
@import "typography.css";
|
|
3
|
-
|
|
4
|
-
@import "molecules/form.css";
|
|
5
|
-
|
|
6
|
-
@import "components/modal.css";
|
|
7
|
-
@import "components/portal/description-list.css";
|
|
8
|
-
@import "components/portal/portal-navigation.css";
|
|
9
|
-
@import "components/portal/accordionItem.css";
|
|
10
|
-
@import "components/portal/accordion.css";
|
|
11
|
-
@import "components/portal/navigationCard.css";
|
|
12
|
-
@import "components/portal/menuItem.css";
|
|
13
|
-
@import "components/portal/dataFrame.css";
|
|
14
|
-
@import "components/portal/alert.css";
|
|
15
|
-
@tailwind base;
|
|
16
|
-
@tailwind components;
|
|
17
|
-
@tailwind utilities;
|
package/dist/css/tokens.css
DELETED
|
@@ -1,294 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Design System Tokens
|
|
3
|
-
* Generated from design tokens - DO NOT EDIT DIRECTLY
|
|
4
|
-
* Last generated: 2025-12-08T13:56:43.111Z
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
:root {
|
|
8
|
-
--font-family-gulliver: "Gulliver Web", Georgia, serif;
|
|
9
|
-
--font-family-fira-sans: "Fira Sans", Arial, sans-serif;
|
|
10
|
-
--font-family-montserrat: "Montserrat", "Helvetica Neue", Arial, sans-serif;
|
|
11
|
-
--font-family-abril-fatface: "Abril Fatface", "Playfair Display", Georgia, serif;
|
|
12
|
-
--font-weight-bold: 700;
|
|
13
|
-
--font-weight-semibold: 600;
|
|
14
|
-
--font-weight-regular: 400;
|
|
15
|
-
--font-weight-light: 300;
|
|
16
|
-
--font-size-12: 12px;
|
|
17
|
-
--font-size-14: 14px;
|
|
18
|
-
--font-size-15: 15px;
|
|
19
|
-
--font-size-16: 16px;
|
|
20
|
-
--font-size-17: 17px;
|
|
21
|
-
--font-size-18: 18px;
|
|
22
|
-
--font-size-20: 20px;
|
|
23
|
-
--font-size-22: 22px;
|
|
24
|
-
--font-size-24: 24px;
|
|
25
|
-
--font-size-26: 26px;
|
|
26
|
-
--font-size-28: 28px;
|
|
27
|
-
--font-size-30: 30px;
|
|
28
|
-
--font-size-32: 32px;
|
|
29
|
-
--font-size-36: 36px;
|
|
30
|
-
--font-size-40: 40px;
|
|
31
|
-
--font-size-48: 48px;
|
|
32
|
-
--font-size-88: 88px;
|
|
33
|
-
--font-size-96: 96px;
|
|
34
|
-
--letter-spacing-0: 0px;
|
|
35
|
-
--letter-spacing-s: 1.6px;
|
|
36
|
-
--letter-spacing-m: 2.4px;
|
|
37
|
-
--letter-spacing-l: 4px;
|
|
38
|
-
--color-border-default: #000000;
|
|
39
|
-
--color-border-brand: #0096cb;
|
|
40
|
-
--color-border-accent-gray: #bdbdbd;
|
|
41
|
-
--color-border-accent-gray-subtle: #eceae9;
|
|
42
|
-
--color-border-disabled: #bdbdbd;
|
|
43
|
-
--color-border-warning: #e9425b;
|
|
44
|
-
--color-blue-400: #02b4f2;
|
|
45
|
-
--color-blue-500: #0096cb;
|
|
46
|
-
--color-blue-900: #09254a;
|
|
47
|
-
--color-blue-500-10: #02a1d91a;
|
|
48
|
-
--color-pink-200: #fef3f2;
|
|
49
|
-
--color-pink-400: #f2e1df;
|
|
50
|
-
--color-pink-600: #ec596f;
|
|
51
|
-
--color-pink-700: #e9425b;
|
|
52
|
-
--color-pink-800: #be123c;
|
|
53
|
-
--color-brown-500: #a27675;
|
|
54
|
-
--color-brown-800: #6a4847;
|
|
55
|
-
--color-brown-900: #3a1a1c;
|
|
56
|
-
--color-neutral-100: #f8f8f8;
|
|
57
|
-
--color-neutral-200: #f2f2f2;
|
|
58
|
-
--color-neutral-300: #eceae9;
|
|
59
|
-
--color-neutral-400: #bdbdbd;
|
|
60
|
-
--color-neutral-500: #999999;
|
|
61
|
-
--color-neutral-600: #727272;
|
|
62
|
-
--color-neutral-700: #484544;
|
|
63
|
-
--color-neutral-800: #222222;
|
|
64
|
-
--color-neutral-900: #121212;
|
|
65
|
-
--color-neutral-black: #000000;
|
|
66
|
-
--color-neutral-black-10: #0000001a;
|
|
67
|
-
--color-neutral-white: #ffffff;
|
|
68
|
-
--color-neutral-white-30: #ffffff4d;
|
|
69
|
-
--color-text-default: #000000;
|
|
70
|
-
--color-text-subtle: #727272;
|
|
71
|
-
--color-text-brand: #0096cb;
|
|
72
|
-
--color-text-brand-subtle: #02b4f2;
|
|
73
|
-
--color-text-accent-brown: #6a4847;
|
|
74
|
-
--color-text-accent-brown-subtle: #a27675;
|
|
75
|
-
--color-text-accent-pink: #e9425b;
|
|
76
|
-
--color-text-disabled: #727272;
|
|
77
|
-
--color-text-inverse: #ffffff;
|
|
78
|
-
--color-text-warning: #e9425b;
|
|
79
|
-
--color-text-warning-inverse: #000000;
|
|
80
|
-
--color-background-default: #ffffff;
|
|
81
|
-
--color-background-dark: #000000;
|
|
82
|
-
--color-background-dark-subtle: #222222;
|
|
83
|
-
--color-background-brand: #0096cb;
|
|
84
|
-
--color-background-brand-subtle: #02b4f2;
|
|
85
|
-
--color-background-brand-subtlest: #02a1d91a;
|
|
86
|
-
--color-background-accent-gray: #f2f2f2;
|
|
87
|
-
--color-background-accent-gray-subtle: #f8f8f8;
|
|
88
|
-
--color-background-accent-brown: #6a4847;
|
|
89
|
-
--color-background-accent-pink: #e9425b;
|
|
90
|
-
--color-background-accent-pink-subtle: #ec596f;
|
|
91
|
-
--color-background-accent-pink-subtlest: #f2e1df;
|
|
92
|
-
--color-background-disabled: #727272;
|
|
93
|
-
--color-icons-default: #000000;
|
|
94
|
-
--color-icons-gray: #727272;
|
|
95
|
-
--color-icons-brand: #0096cb;
|
|
96
|
-
--color-icons-warning: #e9425b;
|
|
97
|
-
--color-icons-inverse: #ffffff;
|
|
98
|
-
--color-shadow-default: #0000001a;
|
|
99
|
-
--color-dnk-brand: #be123c;
|
|
100
|
-
--color-dnk-background: #fef3f2;
|
|
101
|
-
--color-form-background-input-field-default: #ffffff;
|
|
102
|
-
--color-form-background-checkbox-default: #ffffff;
|
|
103
|
-
--color-form-border-input-field-default: #bdbdbd;
|
|
104
|
-
--color-form-border-checkbox-default: #bdbdbd;
|
|
105
|
-
--color-button-background-primary-default: #0096cb;
|
|
106
|
-
--color-button-background-dark-default: #000000;
|
|
107
|
-
--color-button-background-secondary-default: #ffffff;
|
|
108
|
-
--color-button-background-pill-default: #ffffff;
|
|
109
|
-
--color-button-border-secondary-default: #0096cb;
|
|
110
|
-
--color-button-border-pill-default: #eceae9;
|
|
111
|
-
--color-button-icon-primary-default: #ffffff;
|
|
112
|
-
--color-button-icon-secondary-default: #0096cb;
|
|
113
|
-
--color-button-icon-pill-default: #727272;
|
|
114
|
-
--color-button-text-primary-default: #ffffff;
|
|
115
|
-
--color-button-text-dark-default: #ffffff;
|
|
116
|
-
--color-button-text-secondary-default: #0096cb;
|
|
117
|
-
--color-button-text-ghost-default: #0096cb;
|
|
118
|
-
--color-button-text-pill-default: #727272;
|
|
119
|
-
--color-link-text-default-default: #000000;
|
|
120
|
-
--color-link-text-brown-default: #6a4847;
|
|
121
|
-
--color-form-background-input-field-hover: #f8f8f8;
|
|
122
|
-
--color-form-background-checkbox-hover: #f2f2f2;
|
|
123
|
-
--color-form-border-input-field-hover: #0096cb;
|
|
124
|
-
--color-form-border-checkbox-hover: #bdbdbd;
|
|
125
|
-
--color-button-background-primary-hover: #02b4f2;
|
|
126
|
-
--color-button-background-dark-hover: #222222;
|
|
127
|
-
--color-button-background-secondary-hover: #02a1d91a;
|
|
128
|
-
--color-button-background-pill-hover: #f8f8f8;
|
|
129
|
-
--color-button-border-secondary-hover: #0096cb;
|
|
130
|
-
--color-button-border-pill-hover: #eceae9;
|
|
131
|
-
--color-button-icon-primary-hover: #ffffff;
|
|
132
|
-
--color-button-icon-secondary-hover: #0096cb;
|
|
133
|
-
--color-button-icon-pill-hover: #727272;
|
|
134
|
-
--color-button-text-primary-hover: #ffffff;
|
|
135
|
-
--color-button-text-dark-hover: #ffffff;
|
|
136
|
-
--color-button-text-secondary-hover: #0096cb;
|
|
137
|
-
--color-button-text-ghost-hover: #02b4f2;
|
|
138
|
-
--color-button-text-pill-hover: #727272;
|
|
139
|
-
--color-link-text-default-hover: #000000;
|
|
140
|
-
--color-link-text-brown-hover: #a27675;
|
|
141
|
-
--color-form-background-input-field-active: #ffffff;
|
|
142
|
-
--color-form-background-checkbox-active: #0096cb;
|
|
143
|
-
--color-form-border-input-field-active: #0096cb;
|
|
144
|
-
--color-form-border-checkbox-active: #0096cb;
|
|
145
|
-
--color-button-background-primary-active: #02b4f2;
|
|
146
|
-
--color-button-background-dark-active: #222222;
|
|
147
|
-
--color-button-background-secondary-active: #02a1d91a;
|
|
148
|
-
--color-button-background-pill-active: #f8f8f8;
|
|
149
|
-
--color-button-border-secondary-active: #0096cb;
|
|
150
|
-
--color-button-border-pill-active: #bdbdbd;
|
|
151
|
-
--color-button-icon-primary-active: #ffffff;
|
|
152
|
-
--color-button-icon-secondary-active: #0096cb;
|
|
153
|
-
--color-button-icon-pill-active: #727272;
|
|
154
|
-
--color-button-text-primary-active: #ffffff;
|
|
155
|
-
--color-button-text-dark-active: #ffffff;
|
|
156
|
-
--color-button-text-secondary-active: #0096cb;
|
|
157
|
-
--color-button-text-ghost-active: #02b4f2;
|
|
158
|
-
--color-button-text-pill-active: #727272;
|
|
159
|
-
--color-link-text-default-active: #000000;
|
|
160
|
-
--color-link-text-brown-active: #a27675;
|
|
161
|
-
--color-form-background-input-field-disabled: #f2f2f2;
|
|
162
|
-
--color-form-background-checkbox-disabled: #f2f2f2;
|
|
163
|
-
--color-form-border-input-field-disabled: #bdbdbd;
|
|
164
|
-
--color-form-border-checkbox-disabled: #eceae9;
|
|
165
|
-
--color-button-background-primary-disabled: #727272;
|
|
166
|
-
--color-button-background-dark-disabled: #000000;
|
|
167
|
-
--color-button-background-secondary-disabled: #ffffff;
|
|
168
|
-
--color-button-background-pill-disabled: #ffffff;
|
|
169
|
-
--color-button-border-secondary-disabled: #bdbdbd;
|
|
170
|
-
--color-button-border-pill-disabled: #eceae9;
|
|
171
|
-
--color-button-icon-primary-disabled: #ffffff;
|
|
172
|
-
--color-button-icon-secondary-disabled: #0096cb;
|
|
173
|
-
--color-button-icon-pill-disabled: #727272;
|
|
174
|
-
--color-button-text-primary-disabled: #ffffff;
|
|
175
|
-
--color-button-text-dark-disabled: #727272;
|
|
176
|
-
--color-button-text-secondary-disabled: #727272;
|
|
177
|
-
--color-button-text-ghost-disabled: #727272;
|
|
178
|
-
--color-button-text-pill-disabled: #727272;
|
|
179
|
-
--color-link-text-default-disabled: #727272;
|
|
180
|
-
--color-link-text-brown-disabled: #727272;
|
|
181
|
-
--box-shadow-s: 0px 1px 8px 0px #0000001a;
|
|
182
|
-
--box-shadow-m: 0px 10px 20px 0px #0000001a, 0px 1px 2px 0px #0000001a;
|
|
183
|
-
--box-shadow-l: 0px -10px 20px 0px #0000001a, 0px 1px 2px 0px #0000001a;
|
|
184
|
-
--spacing-0: 0px;
|
|
185
|
-
--spacing-xxs: 4px;
|
|
186
|
-
--spacing-xs: 8px;
|
|
187
|
-
--spacing-s: 16px;
|
|
188
|
-
--spacing-m: 24px;
|
|
189
|
-
--spacing-l: 40px;
|
|
190
|
-
--spacing-xl: 64px;
|
|
191
|
-
--spacing-xxl: 128px;
|
|
192
|
-
--border-radius-0: 0px;
|
|
193
|
-
--border-radius-xl: 80px;
|
|
194
|
-
--border-radius-pill: 80px;
|
|
195
|
-
--border-width-0: 0px;
|
|
196
|
-
--border-width-s: 1px;
|
|
197
|
-
--font-size-heading-xs: 14px;
|
|
198
|
-
--font-size-heading-s: 18px;
|
|
199
|
-
--font-size-heading-m: 20px;
|
|
200
|
-
--font-size-heading-l: 40px;
|
|
201
|
-
--font-size-heading-xl: 48px;
|
|
202
|
-
--font-size-body-xs: 12px;
|
|
203
|
-
--font-size-body-s: 16px;
|
|
204
|
-
--font-size-body-m: 18px;
|
|
205
|
-
--font-size-body-l: 20px;
|
|
206
|
-
--font-size-body-xl: 22px;
|
|
207
|
-
--font-size-body-xxl: 28px;
|
|
208
|
-
--font-size-body-drop-cap: 96px;
|
|
209
|
-
--font-size-meta: 14px;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
/* Dark Mode Colors */
|
|
213
|
-
@media (prefers-color-scheme: dark) {
|
|
214
|
-
:root {
|
|
215
|
-
--color-text-default: #ffffff;
|
|
216
|
-
--color-text-subtle: #bdbdbd;
|
|
217
|
-
--color-text-brand: #0096cb;
|
|
218
|
-
--color-text-brand-subtle: #02b4f2;
|
|
219
|
-
--color-text-accent-brown: #a27675;
|
|
220
|
-
--color-text-accent-brown-subtle: #a27675;
|
|
221
|
-
--color-text-accent-pink: #e9425b;
|
|
222
|
-
--color-text-disabled: #bdbdbd;
|
|
223
|
-
--color-text-inverse: #ffffff;
|
|
224
|
-
--color-text-warning: #e9425b;
|
|
225
|
-
--color-text-warning-inverse: #ffffff;
|
|
226
|
-
--color-background-default: #121212;
|
|
227
|
-
--color-background-dark: #222222;
|
|
228
|
-
--color-background-dark-subtle: #727272;
|
|
229
|
-
--color-background-brand: #0096cb;
|
|
230
|
-
--color-background-brand-subtle: #02b4f2;
|
|
231
|
-
--color-background-brand-subtlest: #02a1d91a;
|
|
232
|
-
--color-background-accent-gray: #484544;
|
|
233
|
-
--color-background-accent-gray-subtle: #222222;
|
|
234
|
-
--color-background-accent-brown: #a27675;
|
|
235
|
-
--color-background-accent-pink: #e9425b;
|
|
236
|
-
--color-background-accent-pink-subtle: #ec596f;
|
|
237
|
-
--color-background-accent-pink-subtlest: #f2e1df;
|
|
238
|
-
--color-background-disabled: #222222;
|
|
239
|
-
--color-border-default: #ffffff;
|
|
240
|
-
--color-border-brand: #0096cb;
|
|
241
|
-
--color-border-accent-gray: #999999;
|
|
242
|
-
--color-border-accent-gray-subtle: #727272;
|
|
243
|
-
--color-border-disabled: #999999;
|
|
244
|
-
--color-border-warning: #e9425b;
|
|
245
|
-
--color-icons-default: #ffffff;
|
|
246
|
-
--color-icons-gray: #bdbdbd;
|
|
247
|
-
--color-icons-brand: #0096cb;
|
|
248
|
-
--color-icons-warning: #e9425b;
|
|
249
|
-
--color-icons-inverse: #ffffff;
|
|
250
|
-
--color-shadow-default: #ffffff4d;
|
|
251
|
-
--color-dnk-brand: #be123c;
|
|
252
|
-
--color-dnk-background: #fef3f2;
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
/* Mobile Typography (Default) */
|
|
257
|
-
@media (max-width: 767px) {
|
|
258
|
-
:root {
|
|
259
|
-
--font-size-heading-xs: 14px;
|
|
260
|
-
--font-size-heading-s: 16px;
|
|
261
|
-
--font-size-heading-m: 18px;
|
|
262
|
-
--font-size-heading-l: 26px;
|
|
263
|
-
--font-size-heading-xl: 28px;
|
|
264
|
-
--font-size-body-xs: 12px;
|
|
265
|
-
--font-size-body-s: 14px;
|
|
266
|
-
--font-size-body-m: 16px;
|
|
267
|
-
--font-size-body-l: 18px;
|
|
268
|
-
--font-size-body-xl: 20px;
|
|
269
|
-
--font-size-body-xxl: 24px;
|
|
270
|
-
--font-size-body-drop-cap: 88px;
|
|
271
|
-
--font-size-meta: 14px;
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
/* Tablet Typography (768px - 1023px) */
|
|
276
|
-
@media (min-width: 768px) and (max-width: 1023px) {
|
|
277
|
-
:root {
|
|
278
|
-
--font-size-heading-xs: 14px;
|
|
279
|
-
--font-size-heading-s: 18px;
|
|
280
|
-
--font-size-heading-m: 20px;
|
|
281
|
-
--font-size-heading-l: 36px;
|
|
282
|
-
--font-size-heading-xl: 40px;
|
|
283
|
-
--font-size-body-xs: 12px;
|
|
284
|
-
--font-size-body-s: 16px;
|
|
285
|
-
--font-size-body-m: 18px;
|
|
286
|
-
--font-size-body-l: 20px;
|
|
287
|
-
--font-size-body-xl: 22px;
|
|
288
|
-
--font-size-body-xxl: 28px;
|
|
289
|
-
--font-size-body-drop-cap: 96px;
|
|
290
|
-
--font-size-meta: 14px;
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
/* Desktop Typography (1024px+) is defined in the main :root block */
|
package/dist/css/typography.css
DELETED
|
@@ -1,359 +0,0 @@
|
|
|
1
|
-
/* Typography styles based on text.styles.tokens.json */
|
|
2
|
-
|
|
3
|
-
/* Article styles */
|
|
4
|
-
.text-article-heading {
|
|
5
|
-
font-family: var(--font-family-gulliver);
|
|
6
|
-
font-size: var(--font-size-heading-xl);
|
|
7
|
-
font-weight: var(--font-weight-bold);
|
|
8
|
-
letter-spacing: var(--letter-spacing-0);
|
|
9
|
-
line-height: 130%;
|
|
10
|
-
text-transform: none;
|
|
11
|
-
text-decoration: none;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.text-article-heading-light {
|
|
15
|
-
font-family: var(--font-family-gulliver);
|
|
16
|
-
font-size: var(--font-size-heading-xl);
|
|
17
|
-
font-weight: var(--font-weight-regular);
|
|
18
|
-
letter-spacing: var(--letter-spacing-0);
|
|
19
|
-
line-height: 130%;
|
|
20
|
-
text-transform: none;
|
|
21
|
-
text-decoration: none;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.text-article-heading-alternate {
|
|
25
|
-
font-family: var(--font-family-montserrat);
|
|
26
|
-
font-size: var(--font-size-heading-xl);
|
|
27
|
-
font-weight: var(--font-weight-light);
|
|
28
|
-
letter-spacing: var(--letter-spacing-0);
|
|
29
|
-
line-height: 130%;
|
|
30
|
-
text-transform: none;
|
|
31
|
-
text-decoration: none;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.text-article-heading-2 {
|
|
35
|
-
font-family: var(--font-family-gulliver);
|
|
36
|
-
font-size: var(--font-size-heading-m);
|
|
37
|
-
font-weight: var(--font-weight-bold);
|
|
38
|
-
letter-spacing: var(--letter-spacing-0);
|
|
39
|
-
line-height: 130%;
|
|
40
|
-
text-transform: none;
|
|
41
|
-
text-decoration: none;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.text-article-heading-2-light {
|
|
45
|
-
font-family: var(--font-family-gulliver);
|
|
46
|
-
font-size: var(--font-size-heading-m);
|
|
47
|
-
font-weight: var(--font-weight-regular);
|
|
48
|
-
letter-spacing: var(--letter-spacing-0);
|
|
49
|
-
line-height: 130%;
|
|
50
|
-
text-transform: none;
|
|
51
|
-
text-decoration: none;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.text-article-heading-2-alternate {
|
|
55
|
-
font-family: var(--font-family-montserrat);
|
|
56
|
-
font-size: var(--font-size-heading-m);
|
|
57
|
-
font-weight: var(--font-weight-bold);
|
|
58
|
-
letter-spacing: var(--letter-spacing-0);
|
|
59
|
-
line-height: 130%;
|
|
60
|
-
text-transform: none;
|
|
61
|
-
text-decoration: none;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.text-article-body {
|
|
65
|
-
font-family: var(--font-family-fira-sans);
|
|
66
|
-
font-size: var(--font-size-body-m);
|
|
67
|
-
font-weight: var(--font-weight-regular);
|
|
68
|
-
letter-spacing: var(--letter-spacing-0);
|
|
69
|
-
line-height: 160%;
|
|
70
|
-
text-transform: none;
|
|
71
|
-
text-decoration: none;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.text-article-type {
|
|
75
|
-
font-family: var(--font-family-fira-sans);
|
|
76
|
-
font-size: var(--font-size-body-xl);
|
|
77
|
-
font-weight: var(--font-weight-bold);
|
|
78
|
-
letter-spacing: var(--letter-spacing-s);
|
|
79
|
-
line-height: 160%;
|
|
80
|
-
text-transform: small-caps;
|
|
81
|
-
text-decoration: none;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.text-article-intro {
|
|
85
|
-
font-family: var(--font-family-fira-sans);
|
|
86
|
-
font-size: var(--font-size-body-l);
|
|
87
|
-
font-weight: var(--font-weight-light);
|
|
88
|
-
letter-spacing: var(--letter-spacing-0);
|
|
89
|
-
line-height: 160%;
|
|
90
|
-
text-transform: none;
|
|
91
|
-
text-decoration: none;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.text-article-city {
|
|
95
|
-
font-family: var(--font-family-fira-sans);
|
|
96
|
-
font-size: var(--font-size-body-xl);
|
|
97
|
-
font-weight: var(--font-weight-regular);
|
|
98
|
-
letter-spacing: var(--letter-spacing-m);
|
|
99
|
-
line-height: 160%;
|
|
100
|
-
text-transform: small-caps;
|
|
101
|
-
text-decoration: none;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.text-article-quote {
|
|
105
|
-
font-family: var(--font-family-gulliver);
|
|
106
|
-
font-size: var(--font-size-body-xxl);
|
|
107
|
-
font-weight: var(--font-weight-bold);
|
|
108
|
-
letter-spacing: var(--letter-spacing-0);
|
|
109
|
-
line-height: 130%;
|
|
110
|
-
text-transform: none;
|
|
111
|
-
text-decoration: none;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.text-article-question {
|
|
115
|
-
font-family: var(--font-family-fira-sans);
|
|
116
|
-
font-size: var(--font-size-body-m);
|
|
117
|
-
font-weight: var(--font-weight-bold);
|
|
118
|
-
letter-spacing: var(--letter-spacing-0);
|
|
119
|
-
line-height: 160%;
|
|
120
|
-
text-transform: none;
|
|
121
|
-
text-decoration: none;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.text-article-drop-cap {
|
|
125
|
-
font-family: var(--font-family-abril-fatface);
|
|
126
|
-
font-size: var(--font-size-body-drop-cap);
|
|
127
|
-
font-weight: var(--font-weight-bold);
|
|
128
|
-
letter-spacing: var(--letter-spacing-0);
|
|
129
|
-
line-height: 160%;
|
|
130
|
-
text-transform: none;
|
|
131
|
-
text-decoration: none;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.text-article-drop-cap-alternate {
|
|
135
|
-
font-family: var(--font-family-montserrat);
|
|
136
|
-
font-size: var(--font-size-body-drop-cap);
|
|
137
|
-
font-weight: var(--font-weight-light);
|
|
138
|
-
letter-spacing: var(--letter-spacing-0);
|
|
139
|
-
line-height: 160%;
|
|
140
|
-
text-transform: none;
|
|
141
|
-
text-decoration: none;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
/* Body styles */
|
|
145
|
-
.text-body-light {
|
|
146
|
-
font-family: var(--font-family-fira-sans);
|
|
147
|
-
font-size: var(--font-size-body-m);
|
|
148
|
-
font-weight: var(--font-weight-light);
|
|
149
|
-
letter-spacing: var(--letter-spacing-0);
|
|
150
|
-
line-height: 160%;
|
|
151
|
-
text-transform: none;
|
|
152
|
-
text-decoration: none;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.text-body {
|
|
156
|
-
font-family: var(--font-family-fira-sans);
|
|
157
|
-
font-size: var(--font-size-body-m);
|
|
158
|
-
font-weight: var(--font-weight-regular);
|
|
159
|
-
letter-spacing: var(--letter-spacing-0);
|
|
160
|
-
line-height: 160%;
|
|
161
|
-
text-transform: none;
|
|
162
|
-
text-decoration: none;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.text-body-bold {
|
|
166
|
-
font-family: var(--font-family-fira-sans);
|
|
167
|
-
font-size: var(--font-size-body-m);
|
|
168
|
-
font-weight: var(--font-weight-bold);
|
|
169
|
-
letter-spacing: var(--letter-spacing-0);
|
|
170
|
-
line-height: 160%;
|
|
171
|
-
text-transform: none;
|
|
172
|
-
text-decoration: none;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.text-body-uppercase {
|
|
176
|
-
font-family: var(--font-family-fira-sans);
|
|
177
|
-
font-size: var(--font-size-body-xl);
|
|
178
|
-
font-weight: var(--font-weight-regular);
|
|
179
|
-
letter-spacing: var(--letter-spacing-s);
|
|
180
|
-
line-height: normal;
|
|
181
|
-
text-transform: small-caps;
|
|
182
|
-
text-decoration: none;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.text-body-uppercase-bold {
|
|
186
|
-
font-family: var(--font-family-fira-sans);
|
|
187
|
-
font-size: var(--font-size-body-xl);
|
|
188
|
-
font-weight: var(--font-weight-bold);
|
|
189
|
-
letter-spacing: var(--letter-spacing-s);
|
|
190
|
-
line-height: normal;
|
|
191
|
-
text-transform: small-caps;
|
|
192
|
-
text-decoration: none;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.text-body-uppercase-bold-small {
|
|
196
|
-
font-family: var(--font-family-fira-sans);
|
|
197
|
-
font-size: var(--font-size-body-m);
|
|
198
|
-
font-weight: var(--font-weight-bold);
|
|
199
|
-
letter-spacing: var(--letter-spacing-s);
|
|
200
|
-
line-height: normal;
|
|
201
|
-
text-transform: small-caps;
|
|
202
|
-
text-decoration: none;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
/* Heading styles */
|
|
206
|
-
.text-heading-2 {
|
|
207
|
-
font-family: var(--font-family-gulliver);
|
|
208
|
-
font-size: var(--font-size-heading-m);
|
|
209
|
-
font-weight: var(--font-weight-bold);
|
|
210
|
-
letter-spacing: var(--letter-spacing-0);
|
|
211
|
-
line-height: 130%;
|
|
212
|
-
text-transform: none;
|
|
213
|
-
text-decoration: none;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.text-heading-3 {
|
|
217
|
-
font-family: var(--font-family-fira-sans);
|
|
218
|
-
font-size: var(--font-size-heading-s);
|
|
219
|
-
font-weight: var(--font-weight-bold);
|
|
220
|
-
letter-spacing: var(--letter-spacing-0);
|
|
221
|
-
line-height: 130%;
|
|
222
|
-
text-transform: none;
|
|
223
|
-
text-decoration: none;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.text-heading-page {
|
|
227
|
-
font-family: var(--font-family-gulliver);
|
|
228
|
-
font-size: var(--font-size-heading-l);
|
|
229
|
-
font-weight: var(--font-weight-bold);
|
|
230
|
-
letter-spacing: var(--letter-spacing-0);
|
|
231
|
-
line-height: 130%;
|
|
232
|
-
text-transform: none;
|
|
233
|
-
text-decoration: none;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
.text-heading-subheading {
|
|
237
|
-
font-family: var(--font-family-gulliver);
|
|
238
|
-
font-size: var(--font-size-heading-l);
|
|
239
|
-
font-weight: var(--font-weight-regular);
|
|
240
|
-
letter-spacing: var(--letter-spacing-0);
|
|
241
|
-
line-height: 130%;
|
|
242
|
-
text-transform: none;
|
|
243
|
-
text-decoration: none;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.text-heading-uppercase {
|
|
247
|
-
font-family: var(--font-family-fira-sans);
|
|
248
|
-
font-size: var(--font-size-heading-xs);
|
|
249
|
-
font-weight: var(--font-weight-bold);
|
|
250
|
-
letter-spacing: var(--letter-spacing-l);
|
|
251
|
-
line-height: 130%;
|
|
252
|
-
text-transform: small-caps;
|
|
253
|
-
text-decoration: none;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
/* Meta styles */
|
|
257
|
-
.text-meta-light {
|
|
258
|
-
font-family: var(--font-family-fira-sans);
|
|
259
|
-
font-size: var(--font-size-meta);
|
|
260
|
-
font-weight: var(--font-weight-light);
|
|
261
|
-
letter-spacing: var(--letter-spacing-0);
|
|
262
|
-
line-height: 140%;
|
|
263
|
-
text-transform: none;
|
|
264
|
-
text-decoration: none;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
.text-meta {
|
|
268
|
-
font-family: var(--font-family-fira-sans);
|
|
269
|
-
font-size: var(--font-size-meta);
|
|
270
|
-
font-weight: var(--font-weight-regular);
|
|
271
|
-
letter-spacing: var(--letter-spacing-0);
|
|
272
|
-
line-height: 140%;
|
|
273
|
-
text-transform: none;
|
|
274
|
-
text-decoration: none;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
.text-meta-bold {
|
|
278
|
-
font-family: var(--font-family-fira-sans);
|
|
279
|
-
font-size: var(--font-size-meta);
|
|
280
|
-
font-weight: var(--font-weight-bold);
|
|
281
|
-
letter-spacing: var(--letter-spacing-0);
|
|
282
|
-
line-height: 140%;
|
|
283
|
-
text-transform: none;
|
|
284
|
-
text-decoration: none;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
/* Additional styles */
|
|
288
|
-
.text-heading {
|
|
289
|
-
font-family: var(--font-family-gulliver);
|
|
290
|
-
font-size: var(--font-size-heading-xl);
|
|
291
|
-
font-weight: var(--font-weight-bold);
|
|
292
|
-
letter-spacing: var(--letter-spacing-0);
|
|
293
|
-
line-height: 130%;
|
|
294
|
-
text-transform: none;
|
|
295
|
-
text-decoration: none;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.text-heading-light {
|
|
299
|
-
font-family: var(--font-family-gulliver);
|
|
300
|
-
font-size: var(--font-size-heading-xl);
|
|
301
|
-
font-weight: var(--font-weight-regular);
|
|
302
|
-
letter-spacing: var(--letter-spacing-0);
|
|
303
|
-
line-height: 130%;
|
|
304
|
-
text-transform: none;
|
|
305
|
-
text-decoration: none;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
.text-heading-alternate {
|
|
309
|
-
font-family: var(--font-family-montserrat);
|
|
310
|
-
font-size: var(--font-size-heading-xl);
|
|
311
|
-
font-weight: var(--font-weight-light);
|
|
312
|
-
letter-spacing: var(--letter-spacing-0);
|
|
313
|
-
line-height: 130%;
|
|
314
|
-
text-transform: none;
|
|
315
|
-
text-decoration: none;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.text-heading-2-light {
|
|
319
|
-
font-family: var(--font-family-gulliver);
|
|
320
|
-
font-size: var(--font-size-heading-m);
|
|
321
|
-
font-weight: var(--font-weight-regular);
|
|
322
|
-
letter-spacing: var(--letter-spacing-0);
|
|
323
|
-
line-height: 130%;
|
|
324
|
-
text-transform: none;
|
|
325
|
-
text-decoration: none;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
.text-heading-2-alternate {
|
|
329
|
-
font-family: var(--font-family-montserrat);
|
|
330
|
-
font-size: var(--font-size-heading-m);
|
|
331
|
-
font-weight: var(--font-weight-bold);
|
|
332
|
-
letter-spacing: var(--letter-spacing-0);
|
|
333
|
-
line-height: 130%;
|
|
334
|
-
text-transform: none;
|
|
335
|
-
text-decoration: none;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.text-quote {
|
|
339
|
-
font-family: var(--font-family-gulliver);
|
|
340
|
-
font-size: var(--font-size-body-xxl);
|
|
341
|
-
font-weight: var(--font-weight-bold);
|
|
342
|
-
letter-spacing: var(--letter-spacing-0);
|
|
343
|
-
line-height: 130%;
|
|
344
|
-
text-transform: none;
|
|
345
|
-
text-decoration: none;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.text-intro {
|
|
349
|
-
font-family: var(--font-family-fira-sans);
|
|
350
|
-
font-size: var(--font-size-body-l);
|
|
351
|
-
font-weight: var(--font-weight-light);
|
|
352
|
-
letter-spacing: var(--letter-spacing-0);
|
|
353
|
-
line-height: 160%;
|
|
354
|
-
text-transform: none;
|
|
355
|
-
text-decoration: none;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
/* Responsive typography classes are handled by CSS variables in tokens.css */
|
|
359
|
-
/* No media queries needed here as the variables themselves change based on screen size */
|