@entur/typography 2.1.0 → 2.1.1-beta-automat.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/dist/beta/cjs/components/Blockquote.cjs +1 -1
- package/dist/beta/cjs/components/Heading.cjs +1 -1
- package/dist/beta/cjs/components/Link.cjs +1 -1
- package/dist/beta/cjs/components/ListItem.cjs +1 -1
- package/dist/beta/cjs/components/NumberedList.cjs +1 -1
- package/dist/beta/cjs/components/Text.cjs +1 -1
- package/dist/beta/cjs/components/UnorderedList.cjs +1 -1
- package/dist/beta/cjs/index.cjs +0 -1
- package/dist/beta/cjs/index.cjs.map +1 -1
- package/dist/beta/esm/components/Blockquote.mjs +1 -1
- package/dist/beta/esm/components/Heading.mjs +1 -1
- package/dist/beta/esm/components/Link.mjs +1 -1
- package/dist/beta/esm/components/ListItem.mjs +1 -1
- package/dist/beta/esm/components/NumberedList.mjs +1 -1
- package/dist/beta/esm/components/Text.mjs +1 -1
- package/dist/beta/esm/components/UnorderedList.mjs +1 -1
- package/dist/beta/esm/index.mjs +0 -1
- package/dist/beta/esm/index.mjs.map +1 -1
- package/dist/beta/styles/components/heading.css +595 -0
- package/dist/beta/styles/components/text.css +1267 -0
- package/dist/styles.css +190 -173
- package/package.json +6 -7
- package/dist/beta/styles/index.css +0 -1055
|
@@ -0,0 +1,1267 @@
|
|
|
1
|
+
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
Document
|
|
5
|
+
========
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
Use a better box model (opinionated).
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
*,
|
|
13
|
+
::before,
|
|
14
|
+
::after{
|
|
15
|
+
-webkit-box-sizing:border-box;
|
|
16
|
+
-moz-box-sizing:border-box;
|
|
17
|
+
box-sizing:border-box;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
html{
|
|
21
|
+
/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
|
|
22
|
+
font-family:system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
23
|
+
line-height:1.15; /* 1. Correct the line height in all browsers. */
|
|
24
|
+
-webkit-text-size-adjust:100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
|
|
25
|
+
-moz-tab-size:4;
|
|
26
|
+
-o-tab-size:4;
|
|
27
|
+
tab-size:4; /* 3. Use a more readable tab size (opinionated). */
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/*
|
|
31
|
+
Sections
|
|
32
|
+
========
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
body{
|
|
36
|
+
margin:0; /* Remove the margin in all browsers. */
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/*
|
|
40
|
+
Text-level semantics
|
|
41
|
+
====================
|
|
42
|
+
*/
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
Add the correct font weight in Chrome and Safari.
|
|
46
|
+
*/
|
|
47
|
+
|
|
48
|
+
b,
|
|
49
|
+
strong{
|
|
50
|
+
font-weight:bolder;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
|
55
|
+
2. Correct the odd 'em' font sizing in all browsers.
|
|
56
|
+
*/
|
|
57
|
+
|
|
58
|
+
code,
|
|
59
|
+
kbd,
|
|
60
|
+
samp,
|
|
61
|
+
pre{
|
|
62
|
+
font-family:ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; /* 1 */
|
|
63
|
+
font-size:1em; /* 2 */
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
Add the correct font size in all browsers.
|
|
68
|
+
*/
|
|
69
|
+
|
|
70
|
+
small{
|
|
71
|
+
font-size:80%;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
|
|
76
|
+
*/
|
|
77
|
+
|
|
78
|
+
sub,
|
|
79
|
+
sup{
|
|
80
|
+
font-size:75%;
|
|
81
|
+
line-height:0;
|
|
82
|
+
position:relative;
|
|
83
|
+
vertical-align:baseline;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
sub{
|
|
87
|
+
bottom:-0.25em;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
sup{
|
|
91
|
+
top:-0.5em;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/*
|
|
95
|
+
Tabular data
|
|
96
|
+
============
|
|
97
|
+
*/
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
101
|
+
*/
|
|
102
|
+
|
|
103
|
+
table{
|
|
104
|
+
border-color:currentcolor;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/*
|
|
108
|
+
Forms
|
|
109
|
+
=====
|
|
110
|
+
*/
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
1. Change the font styles in all browsers.
|
|
114
|
+
2. Remove the margin in Firefox and Safari.
|
|
115
|
+
*/
|
|
116
|
+
|
|
117
|
+
button,
|
|
118
|
+
input,
|
|
119
|
+
optgroup,
|
|
120
|
+
select,
|
|
121
|
+
textarea{
|
|
122
|
+
font-family:inherit; /* 1 */
|
|
123
|
+
font-size:100%; /* 1 */
|
|
124
|
+
line-height:1.15; /* 1 */
|
|
125
|
+
margin:0; /* 2 */
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
Correct the inability to style clickable types in iOS and Safari.
|
|
130
|
+
*/
|
|
131
|
+
|
|
132
|
+
button,
|
|
133
|
+
[type='button'],
|
|
134
|
+
[type='reset'],
|
|
135
|
+
[type='submit']{
|
|
136
|
+
-webkit-appearance:button;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
|
141
|
+
*/
|
|
142
|
+
|
|
143
|
+
legend{
|
|
144
|
+
padding:0;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
149
|
+
*/
|
|
150
|
+
|
|
151
|
+
progress{
|
|
152
|
+
vertical-align:baseline;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
157
|
+
*/
|
|
158
|
+
|
|
159
|
+
::-webkit-inner-spin-button,
|
|
160
|
+
::-webkit-outer-spin-button{
|
|
161
|
+
height:auto;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
1. Correct the odd appearance in Chrome and Safari.
|
|
166
|
+
2. Correct the outline style in Safari.
|
|
167
|
+
*/
|
|
168
|
+
|
|
169
|
+
[type='search']{
|
|
170
|
+
-webkit-appearance:textfield; /* 1 */
|
|
171
|
+
outline-offset:-2px; /* 2 */
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
176
|
+
*/
|
|
177
|
+
|
|
178
|
+
::-webkit-search-decoration{
|
|
179
|
+
-webkit-appearance:none;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
184
|
+
2. Change font properties to 'inherit' in Safari.
|
|
185
|
+
*/
|
|
186
|
+
|
|
187
|
+
::-webkit-file-upload-button{
|
|
188
|
+
-webkit-appearance:button; /* 1 */
|
|
189
|
+
font:inherit; /* 2 */
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/*
|
|
193
|
+
Interactive
|
|
194
|
+
===========
|
|
195
|
+
*/
|
|
196
|
+
|
|
197
|
+
/*
|
|
198
|
+
Add the correct display in Chrome and Safari.
|
|
199
|
+
*/
|
|
200
|
+
|
|
201
|
+
summary{
|
|
202
|
+
display:list-item;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
[data-color-mode=light],
|
|
206
|
+
:root{
|
|
207
|
+
--basecolors-frame-contrast:#181c56;
|
|
208
|
+
--basecolors-frame-contrastalt:#393d79;
|
|
209
|
+
--basecolors-frame-contrastalt-2:#292b6a;
|
|
210
|
+
--basecolors-frame-default:#ffffff;
|
|
211
|
+
--basecolors-frame-elevated:#ffffff;
|
|
212
|
+
--basecolors-frame-elevatedalt:#f6f6f9;
|
|
213
|
+
--basecolors-frame-subdued:#d9dae8;
|
|
214
|
+
--basecolors-frame-tint:#f6f6f9;
|
|
215
|
+
--basecolors-shape-accent:#181c56;
|
|
216
|
+
--basecolors-shape-bicycle-contrast:#00dbb6;
|
|
217
|
+
--basecolors-shape-bicycle-default:#0d827e;
|
|
218
|
+
--basecolors-shape-bus-contrast:#ff6392;
|
|
219
|
+
--basecolors-shape-bus-default:#c5044e;
|
|
220
|
+
--basecolors-shape-cableway-contrast:#b482fb;
|
|
221
|
+
--basecolors-shape-cableway-default:#78469a;
|
|
222
|
+
--basecolors-shape-disabled:#6e6f73;
|
|
223
|
+
--basecolors-shape-disabledalt:#b6b8ba;
|
|
224
|
+
--basecolors-shape-ferry-contrast:#6fdfff;
|
|
225
|
+
--basecolors-shape-ferry-default:#0c6693;
|
|
226
|
+
--basecolors-shape-funicular-contrast:#b482fb;
|
|
227
|
+
--basecolors-shape-funicular-default:#78469a;
|
|
228
|
+
--basecolors-shape-helicopter-contrast:#fbafea;
|
|
229
|
+
--basecolors-shape-helicopter-default:#800664;
|
|
230
|
+
--basecolors-shape-highlight:#ff5959;
|
|
231
|
+
--basecolors-shape-light:#ffffff;
|
|
232
|
+
--basecolors-shape-mask:#ffffff;
|
|
233
|
+
--basecolors-shape-maskalt:#ffffff;
|
|
234
|
+
--basecolors-shape-metro-contrast:#f08901;
|
|
235
|
+
--basecolors-shape-metro-default:#bf5826;
|
|
236
|
+
--basecolors-shape-mobility-contrast:#00dbb6;
|
|
237
|
+
--basecolors-shape-mobility-default:#0d827e;
|
|
238
|
+
--basecolors-shape-plane-contrast:#fbafea;
|
|
239
|
+
--basecolors-shape-plane-default:#800664;
|
|
240
|
+
--basecolors-shape-subdued:#626493;
|
|
241
|
+
--basecolors-shape-subduedalt:#d9dae8;
|
|
242
|
+
--basecolors-shape-taxi-contrast:#ffe082;
|
|
243
|
+
--basecolors-shape-taxi-default:#3d3e40;
|
|
244
|
+
--basecolors-shape-train-contrast:#42a5f5;
|
|
245
|
+
--basecolors-shape-train-default:#00367f;
|
|
246
|
+
--basecolors-shape-tram-contrast:#b482fb;
|
|
247
|
+
--basecolors-shape-tram-default:#78469a;
|
|
248
|
+
--basecolors-shape-walk-contrast:#8284ab;
|
|
249
|
+
--basecolors-shape-walk-default:#8d8e9c;
|
|
250
|
+
--basecolors-shape-airportlinkbus-contrast:#fbafea;
|
|
251
|
+
--basecolors-shape-airportlinkbus-default:#800664;
|
|
252
|
+
--basecolors-shape-airportlinkrail-contrast:#fbafea;
|
|
253
|
+
--basecolors-shape-airportlinkrail-default:#800664;
|
|
254
|
+
--basecolors-stroke-contrast:#aeb7e2;
|
|
255
|
+
--basecolors-stroke-default:#181c56;
|
|
256
|
+
--basecolors-stroke-disabled:#949699;
|
|
257
|
+
--basecolors-stroke-focus-contrast:#aeb7e2;
|
|
258
|
+
--basecolors-stroke-focus-standard:#181c56;
|
|
259
|
+
--basecolors-stroke-highlight:#ff5959;
|
|
260
|
+
--basecolors-stroke-light:#ffffff;
|
|
261
|
+
--basecolors-stroke-subdued:#8284ab;
|
|
262
|
+
--basecolors-stroke-subduedalt:#e3e6e8;
|
|
263
|
+
--basecolors-text-accent:#181c56;
|
|
264
|
+
--basecolors-text-disabled:#6e6f73;
|
|
265
|
+
--basecolors-text-disabledalt:#b6b8ba;
|
|
266
|
+
--basecolors-text-highlight:#ff5959;
|
|
267
|
+
--basecolors-text-light:#ffffff;
|
|
268
|
+
--basecolors-text-subdued:#626493;
|
|
269
|
+
--basecolors-text-subduedalt:#d9dae8;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
[data-color-mode=dark]{
|
|
273
|
+
--basecolors-frame-contrast:#212233;
|
|
274
|
+
--basecolors-frame-contrastalt:#141527;
|
|
275
|
+
--basecolors-frame-contrastalt-2:#08091c;
|
|
276
|
+
--basecolors-frame-default:#08091c;
|
|
277
|
+
--basecolors-frame-elevated:rgba(229, 229, 233, 0.1490196078);
|
|
278
|
+
--basecolors-frame-elevatedalt:#464755;
|
|
279
|
+
--basecolors-frame-subdued:#2d2e3e;
|
|
280
|
+
--basecolors-frame-tint:#141527;
|
|
281
|
+
--basecolors-shape-accent:#e5e5e9;
|
|
282
|
+
--basecolors-shape-bicycle-contrast:#4db2a1;
|
|
283
|
+
--basecolors-shape-bicycle-default:#4db2a1;
|
|
284
|
+
--basecolors-shape-bus-contrast:#ef7398;
|
|
285
|
+
--basecolors-shape-bus-default:#ef7398;
|
|
286
|
+
--basecolors-shape-cableway-contrast:#b898e5;
|
|
287
|
+
--basecolors-shape-cableway-default:#b898e5;
|
|
288
|
+
--basecolors-shape-disabled:#b6b8ba;
|
|
289
|
+
--basecolors-shape-disabledalt:#b3b4bd;
|
|
290
|
+
--basecolors-shape-ferry-contrast:#8ccfe2;
|
|
291
|
+
--basecolors-shape-ferry-default:#8ccfe2;
|
|
292
|
+
--basecolors-shape-funicular-contrast:#b898e5;
|
|
293
|
+
--basecolors-shape-funicular-default:#b898e5;
|
|
294
|
+
--basecolors-shape-helicopter-contrast:#f2b8e5;
|
|
295
|
+
--basecolors-shape-helicopter-default:#f2b8e5;
|
|
296
|
+
--basecolors-shape-highlight:#ff9494;
|
|
297
|
+
--basecolors-shape-light:#e5e5e9;
|
|
298
|
+
--basecolors-shape-mask:#2d2e3e;
|
|
299
|
+
--basecolors-shape-maskalt:#393a49;
|
|
300
|
+
--basecolors-shape-metro-contrast:#dd973c;
|
|
301
|
+
--basecolors-shape-metro-default:#dd973c;
|
|
302
|
+
--basecolors-shape-mobility-contrast:#4db2a1;
|
|
303
|
+
--basecolors-shape-mobility-default:#4db2a1;
|
|
304
|
+
--basecolors-shape-plane-contrast:#f2b8e5;
|
|
305
|
+
--basecolors-shape-plane-default:#f2b8e5;
|
|
306
|
+
--basecolors-shape-subdued:#b3b4bd;
|
|
307
|
+
--basecolors-shape-subduedalt:#b3b4bd;
|
|
308
|
+
--basecolors-shape-taxi-contrast:#ffe082;
|
|
309
|
+
--basecolors-shape-taxi-default:#ffe082;
|
|
310
|
+
--basecolors-shape-train-contrast:#60a2d7;
|
|
311
|
+
--basecolors-shape-train-default:#60a2d7;
|
|
312
|
+
--basecolors-shape-tram-contrast:#b898e5;
|
|
313
|
+
--basecolors-shape-tram-default:#b898e5;
|
|
314
|
+
--basecolors-shape-walk-contrast:#8d8e9c;
|
|
315
|
+
--basecolors-shape-walk-default:#8d8e9c;
|
|
316
|
+
--basecolors-shape-airportlinkbus-contrast:#f2b8e5;
|
|
317
|
+
--basecolors-shape-airportlinkbus-default:#f2b8e5;
|
|
318
|
+
--basecolors-shape-airportlinkrail-contrast:#f2b8e5;
|
|
319
|
+
--basecolors-shape-airportlinkrail-default:#f2b8e5;
|
|
320
|
+
--basecolors-stroke-contrast:#aeb7e2;
|
|
321
|
+
--basecolors-stroke-default:#b3b4bd;
|
|
322
|
+
--basecolors-stroke-disabled:#e3e6e8;
|
|
323
|
+
--basecolors-stroke-focus-contrast:#aeb7e2;
|
|
324
|
+
--basecolors-stroke-focus-standard:#aeb7e2;
|
|
325
|
+
--basecolors-stroke-highlight:#ff9494;
|
|
326
|
+
--basecolors-stroke-light:#b3b4bd;
|
|
327
|
+
--basecolors-stroke-subdued:#81828f;
|
|
328
|
+
--basecolors-stroke-subduedalt:#949699;
|
|
329
|
+
--basecolors-text-accent:#e5e5e9;
|
|
330
|
+
--basecolors-text-disabled:#b6b8ba;
|
|
331
|
+
--basecolors-text-disabledalt:#b6b8ba;
|
|
332
|
+
--basecolors-text-highlight:#ff9494;
|
|
333
|
+
--basecolors-text-light:#e5e5e9;
|
|
334
|
+
--basecolors-text-subdued:#b3b4bd;
|
|
335
|
+
--basecolors-text-subduedalt:#b3b4bd;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/*
|
|
339
|
+
* Typography Display Modes
|
|
340
|
+
*
|
|
341
|
+
* This system allows you to control typography scaling based on view size.
|
|
342
|
+
* Use the vie-mode attribute to switch between different typography scales:
|
|
343
|
+
*
|
|
344
|
+
* - Compact: [view-mode='compact'] or no attribute (responsive)
|
|
345
|
+
* - Display: [view-mode='display'] for big screens, kiosks, etc.
|
|
346
|
+
*
|
|
347
|
+
* Usage:
|
|
348
|
+
* <html view-mode="display"> or <div view-mode="display">
|
|
349
|
+
*
|
|
350
|
+
* The system automatically handles responsive behavior within each mode.
|
|
351
|
+
*/
|
|
352
|
+
|
|
353
|
+
/* Primitive size */
|
|
354
|
+
|
|
355
|
+
:root{
|
|
356
|
+
/* number */
|
|
357
|
+
--size-0:0rem;
|
|
358
|
+
--size-1:0.0625rem;
|
|
359
|
+
--size-2:0.125rem;
|
|
360
|
+
--size-3:0.25rem;
|
|
361
|
+
--size-4:0.375rem;
|
|
362
|
+
--size-5:0.5rem;
|
|
363
|
+
--size-6:0.75rem;
|
|
364
|
+
--size-7:0.875rem;
|
|
365
|
+
--size-8:1rem;
|
|
366
|
+
--size-9:1.25rem;
|
|
367
|
+
--size-10:1.5rem;
|
|
368
|
+
--size-11:1.75rem;
|
|
369
|
+
--size-12:2rem;
|
|
370
|
+
--size-13:2.25rem;
|
|
371
|
+
--size-14:2.5rem;
|
|
372
|
+
--size-15:2.75rem;
|
|
373
|
+
--size-16:3rem;
|
|
374
|
+
--size-17:3.25rem;
|
|
375
|
+
--size-18:3.5rem;
|
|
376
|
+
--size-19:4rem;
|
|
377
|
+
--size-20:4.5rem;
|
|
378
|
+
--size-21:5rem;
|
|
379
|
+
--size-22:5.5rem;
|
|
380
|
+
--size-23:6rem;
|
|
381
|
+
--size-24:6.5rem;
|
|
382
|
+
--size-25:7rem;
|
|
383
|
+
--size-26:7.5rem;
|
|
384
|
+
--size-27:8rem;
|
|
385
|
+
--size-28:8.5rem;
|
|
386
|
+
--size-29:9rem;
|
|
387
|
+
--size-30:9.5rem;
|
|
388
|
+
--size-31:10rem;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
:root,
|
|
392
|
+
[view-mode=standard]{
|
|
393
|
+
/* number */
|
|
394
|
+
--font-line-height-body-xs:var(--size-8);
|
|
395
|
+
--font-line-height-body-s:var(--size-9);
|
|
396
|
+
--font-line-height-body-lg:var(--size-10);
|
|
397
|
+
--font-line-height-body-m:var(--size-10);
|
|
398
|
+
--font-line-height-body-xl:var(--size-11);
|
|
399
|
+
--font-line-height-heading-s:var(--size-8);
|
|
400
|
+
--font-line-height-heading-xs:var(--size-8);
|
|
401
|
+
--font-line-height-heading-m:var(--size-9);
|
|
402
|
+
--font-line-height-heading-lg:var(--size-10);
|
|
403
|
+
--font-line-height-heading-xl:var(--size-11);
|
|
404
|
+
--font-line-height-heading-2xl:var(--size-12);
|
|
405
|
+
--font-paragraph-spacing-body-xs:var(--size-5);
|
|
406
|
+
--font-paragraph-spacing-body-s:var(--size-6);
|
|
407
|
+
--font-paragraph-spacing-body-m:var(--size-8);
|
|
408
|
+
--font-paragraph-spacing-body-lg:var(--size-9);
|
|
409
|
+
--font-paragraph-spacing-body-xl:var(--size-9);
|
|
410
|
+
--font-paragraph-spacing-heading-s:var(--size-5);
|
|
411
|
+
--font-paragraph-spacing-heading-xs:var(--size-5);
|
|
412
|
+
--font-paragraph-spacing-heading-lg:var(--size-6);
|
|
413
|
+
--font-paragraph-spacing-heading-m:var(--size-6);
|
|
414
|
+
--font-paragraph-spacing-heading-2xl:var(--size-8);
|
|
415
|
+
--font-paragraph-spacing-heading-xl:var(--size-8);
|
|
416
|
+
--font-size-body-xs:var(--size-6);
|
|
417
|
+
--font-size-body-s:var(--size-7);
|
|
418
|
+
--font-size-body-lg:var(--size-8);
|
|
419
|
+
--font-size-body-m:var(--size-8);
|
|
420
|
+
--font-size-body-xl:var(--size-9);
|
|
421
|
+
--font-size-heading-xs:var(--size-6);
|
|
422
|
+
--font-size-heading-s:var(--size-7);
|
|
423
|
+
--font-size-heading-m:var(--size-8);
|
|
424
|
+
--font-size-heading-lg:var(--size-9);
|
|
425
|
+
--font-size-heading-xl:var(--size-10);
|
|
426
|
+
--font-size-heading-2xl:var(--size-11);
|
|
427
|
+
/* string */
|
|
428
|
+
--font-family-nationale:Nationale;
|
|
429
|
+
--font-weight-body:500;
|
|
430
|
+
--font-weight-heading:600;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
@media screen and (min-width: 50rem){
|
|
434
|
+
:root,
|
|
435
|
+
[view-mode=standard]{
|
|
436
|
+
--font-line-height-body-xs:var(--size-8);
|
|
437
|
+
--font-line-height-body-s:var(--size-9);
|
|
438
|
+
--font-line-height-body-m:var(--size-10);
|
|
439
|
+
--font-line-height-body-lg:var(--size-11);
|
|
440
|
+
--font-line-height-body-xl:var(--size-12);
|
|
441
|
+
--font-line-height-heading-xs:var(--size-8);
|
|
442
|
+
--font-line-height-heading-s:var(--size-9);
|
|
443
|
+
--font-line-height-heading-m:var(--size-10);
|
|
444
|
+
--font-line-height-heading-lg:var(--size-11);
|
|
445
|
+
--font-line-height-heading-xl:var(--size-13);
|
|
446
|
+
--font-line-height-heading-2xl:var(--size-15);
|
|
447
|
+
--font-paragraph-spacing-body-xs:var(--size-5);
|
|
448
|
+
--font-paragraph-spacing-body-s:var(--size-6);
|
|
449
|
+
--font-paragraph-spacing-body-m:var(--size-8);
|
|
450
|
+
--font-paragraph-spacing-body-lg:var(--size-10);
|
|
451
|
+
--font-paragraph-spacing-body-xl:var(--size-10);
|
|
452
|
+
--font-paragraph-spacing-heading-xs:var(--size-5);
|
|
453
|
+
--font-paragraph-spacing-heading-m:var(--size-6);
|
|
454
|
+
--font-paragraph-spacing-heading-s:var(--size-6);
|
|
455
|
+
--font-paragraph-spacing-heading-lg:var(--size-8);
|
|
456
|
+
--font-paragraph-spacing-heading-xl:var(--size-9);
|
|
457
|
+
--font-paragraph-spacing-heading-2xl:var(--size-10);
|
|
458
|
+
--font-size-body-xs:var(--size-6);
|
|
459
|
+
--font-size-body-s:var(--size-7);
|
|
460
|
+
--font-size-body-m:var(--size-8);
|
|
461
|
+
--font-size-body-lg:var(--size-9);
|
|
462
|
+
--font-size-body-xl:var(--size-10);
|
|
463
|
+
--font-size-heading-xs:var(--size-7);
|
|
464
|
+
--font-size-heading-s:var(--size-8);
|
|
465
|
+
--font-size-heading-m:var(--size-9);
|
|
466
|
+
--font-size-heading-lg:var(--size-10);
|
|
467
|
+
--font-size-heading-xl:var(--size-12);
|
|
468
|
+
--font-size-heading-2xl:var(--size-14);
|
|
469
|
+
/* string */
|
|
470
|
+
--font-family-nationale:Nationale;
|
|
471
|
+
--font-weight-body:500;
|
|
472
|
+
--font-weight-heading:600;
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
[view-mode=compact]{
|
|
477
|
+
/* number */
|
|
478
|
+
--font-line-height-body-xs:var(--size-8);
|
|
479
|
+
--font-line-height-body-s:var(--size-9);
|
|
480
|
+
--font-line-height-body-lg:var(--size-10);
|
|
481
|
+
--font-line-height-body-m:var(--size-10);
|
|
482
|
+
--font-line-height-body-xl:var(--size-11);
|
|
483
|
+
--font-line-height-heading-s:var(--size-8);
|
|
484
|
+
--font-line-height-heading-xs:var(--size-8);
|
|
485
|
+
--font-line-height-heading-m:var(--size-9);
|
|
486
|
+
--font-line-height-heading-lg:var(--size-10);
|
|
487
|
+
--font-line-height-heading-xl:var(--size-11);
|
|
488
|
+
--font-line-height-heading-2xl:var(--size-12);
|
|
489
|
+
--font-paragraph-spacing-body-xs:var(--size-5);
|
|
490
|
+
--font-paragraph-spacing-body-s:var(--size-6);
|
|
491
|
+
--font-paragraph-spacing-body-m:var(--size-8);
|
|
492
|
+
--font-paragraph-spacing-body-lg:var(--size-9);
|
|
493
|
+
--font-paragraph-spacing-body-xl:var(--size-9);
|
|
494
|
+
--font-paragraph-spacing-heading-s:var(--size-5);
|
|
495
|
+
--font-paragraph-spacing-heading-xs:var(--size-5);
|
|
496
|
+
--font-paragraph-spacing-heading-lg:var(--size-6);
|
|
497
|
+
--font-paragraph-spacing-heading-m:var(--size-6);
|
|
498
|
+
--font-paragraph-spacing-heading-2xl:var(--size-8);
|
|
499
|
+
--font-paragraph-spacing-heading-xl:var(--size-8);
|
|
500
|
+
--font-size-body-xs:var(--size-6);
|
|
501
|
+
--font-size-body-s:var(--size-7);
|
|
502
|
+
--font-size-body-lg:var(--size-8);
|
|
503
|
+
--font-size-body-m:var(--size-8);
|
|
504
|
+
--font-size-body-xl:var(--size-9);
|
|
505
|
+
--font-size-heading-xs:var(--size-6);
|
|
506
|
+
--font-size-heading-s:var(--size-7);
|
|
507
|
+
--font-size-heading-m:var(--size-8);
|
|
508
|
+
--font-size-heading-lg:var(--size-9);
|
|
509
|
+
--font-size-heading-xl:var(--size-10);
|
|
510
|
+
--font-size-heading-2xl:var(--size-11);
|
|
511
|
+
/* string */
|
|
512
|
+
--font-family-nationale:Nationale;
|
|
513
|
+
--font-weight-body:500;
|
|
514
|
+
--font-weight-heading:600;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
[view-mode=display]{
|
|
518
|
+
/* number */
|
|
519
|
+
--font-line-height-body-xs:var(--size-11);
|
|
520
|
+
--font-line-height-body-s:var(--size-12);
|
|
521
|
+
--font-line-height-body-m:var(--size-15);
|
|
522
|
+
--font-line-height-body-lg:var(--size-18);
|
|
523
|
+
--font-line-height-body-xl:var(--size-19);
|
|
524
|
+
--font-line-height-heading-xs:var(--size-11);
|
|
525
|
+
--font-line-height-heading-s:var(--size-13);
|
|
526
|
+
--font-line-height-heading-m:var(--size-15);
|
|
527
|
+
--font-line-height-heading-lg:var(--size-18);
|
|
528
|
+
--font-line-height-heading-xl:var(--size-20);
|
|
529
|
+
--font-line-height-heading-2xl:var(--size-21);
|
|
530
|
+
--font-paragraph-spacing-body-xs:var(--size-9);
|
|
531
|
+
--font-paragraph-spacing-body-s:var(--size-10);
|
|
532
|
+
--font-paragraph-spacing-body-m:var(--size-12);
|
|
533
|
+
--font-paragraph-spacing-body-lg:var(--size-14);
|
|
534
|
+
--font-paragraph-spacing-body-xl:var(--size-16);
|
|
535
|
+
--font-paragraph-spacing-heading-xs:var(--size-6);
|
|
536
|
+
--font-paragraph-spacing-heading-s:var(--size-8);
|
|
537
|
+
--font-paragraph-spacing-heading-m:var(--size-9);
|
|
538
|
+
--font-paragraph-spacing-heading-lg:var(--size-10);
|
|
539
|
+
--font-paragraph-spacing-heading-xl:var(--size-12);
|
|
540
|
+
--font-paragraph-spacing-heading-2xl:var(--size-13);
|
|
541
|
+
--font-size-body-xs:var(--size-9);
|
|
542
|
+
--font-size-body-s:var(--size-10);
|
|
543
|
+
--font-size-body-m:var(--size-12);
|
|
544
|
+
--font-size-body-lg:var(--size-14);
|
|
545
|
+
--font-size-body-xl:var(--size-16);
|
|
546
|
+
--font-size-heading-xs:var(--size-10);
|
|
547
|
+
--font-size-heading-s:var(--size-12);
|
|
548
|
+
--font-size-heading-m:var(--size-14);
|
|
549
|
+
--font-size-heading-lg:var(--size-16);
|
|
550
|
+
--font-size-heading-xl:var(--size-19);
|
|
551
|
+
--font-size-heading-2xl:var(--size-20);
|
|
552
|
+
/* string */
|
|
553
|
+
--font-family-nationale:Nationale;
|
|
554
|
+
--font-weight-body:500;
|
|
555
|
+
--font-weight-heading:600;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
[data-color-mode=light],
|
|
559
|
+
:root{
|
|
560
|
+
--components-typography-basetext-contrast-text-accent:#ffffff;
|
|
561
|
+
--components-typography-basetext-standard-text-accent:#181c56;
|
|
562
|
+
--components-typography-blockquote-contrast-stroke:#8284ab;
|
|
563
|
+
--components-typography-blockquote-contrast-text-accent:#ffffff;
|
|
564
|
+
--components-typography-blockquote-contrast-text-subdued:#d9dae8;
|
|
565
|
+
--components-typography-blockquote-standard-stroke:#8284ab;
|
|
566
|
+
--components-typography-blockquote-standard-text-accent:#181c56;
|
|
567
|
+
--components-typography-blockquote-standard-text-subdued:#626493;
|
|
568
|
+
--components-typography-codetext-contrast-border:rgba(255, 255, 255, 0);
|
|
569
|
+
--components-typography-codetext-contrast-border-interactive:#aeb7e2;
|
|
570
|
+
--components-typography-codetext-contrast-fill:#f6f6f9;
|
|
571
|
+
--components-typography-codetext-contrast-text:#181c56;
|
|
572
|
+
--components-typography-codetext-standard-border:rgba(84, 86, 140, 0.4);
|
|
573
|
+
--components-typography-codetext-standard-border-interactive:#181c56;
|
|
574
|
+
--components-typography-codetext-standard-fill:#f6f6f9;
|
|
575
|
+
--components-typography-codetext-standard-text:#181c56;
|
|
576
|
+
--components-typography-label-contrast-text-accent:#d9dae8;
|
|
577
|
+
--components-typography-label-standard-text-accent:#626493;
|
|
578
|
+
--components-typography-list-contrast-border:#aeb7e2;
|
|
579
|
+
--components-typography-list-contrast-text-accent:#ffffff;
|
|
580
|
+
--components-typography-list-standard-border:#aeb7e2;
|
|
581
|
+
--components-typography-list-standard-text-accent:#181c56;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
[data-color-mode=dark]{
|
|
585
|
+
--components-typography-basetext-contrast-text-accent:#e5e5e9;
|
|
586
|
+
--components-typography-basetext-standard-text-accent:#e5e5e9;
|
|
587
|
+
--components-typography-blockquote-contrast-stroke:#81828f;
|
|
588
|
+
--components-typography-blockquote-contrast-text-accent:#e5e5e9;
|
|
589
|
+
--components-typography-blockquote-contrast-text-subdued:#b3b4bd;
|
|
590
|
+
--components-typography-blockquote-standard-stroke:#81828f;
|
|
591
|
+
--components-typography-blockquote-standard-text-accent:#e5e5e9;
|
|
592
|
+
--components-typography-blockquote-standard-text-subdued:#b3b4bd;
|
|
593
|
+
--components-typography-codetext-contrast-border:rgba(255, 255, 255, 0);
|
|
594
|
+
--components-typography-codetext-contrast-border-interactive:#e5e5e9;
|
|
595
|
+
--components-typography-codetext-contrast-fill:#393a49;
|
|
596
|
+
--components-typography-codetext-contrast-text:#e5e5e9;
|
|
597
|
+
--components-typography-codetext-standard-border:rgba(255, 255, 255, 0);
|
|
598
|
+
--components-typography-codetext-standard-border-interactive:#e5e5e9;
|
|
599
|
+
--components-typography-codetext-standard-fill:#393a49;
|
|
600
|
+
--components-typography-codetext-standard-text:#e5e5e9;
|
|
601
|
+
--components-typography-label-contrast-text-accent:#e5e5e9;
|
|
602
|
+
--components-typography-label-standard-text-accent:#e5e5e9;
|
|
603
|
+
--components-typography-list-contrast-border:#aeb7e2;
|
|
604
|
+
--components-typography-list-contrast-text-accent:#e5e5e9;
|
|
605
|
+
--components-typography-list-standard-border:#aeb7e2;
|
|
606
|
+
--components-typography-list-standard-text-accent:#e5e5e9;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.eds-text{
|
|
610
|
+
color:#181c56;
|
|
611
|
+
color:var(--components-typography-basetext-standard-text-accent);
|
|
612
|
+
font-weight:500;
|
|
613
|
+
font-weight:var(--font-weight-body);
|
|
614
|
+
margin:0;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.eds-contrast .eds-text{
|
|
618
|
+
color:#ffffff;
|
|
619
|
+
color:var(--components-typography-basetext-contrast-text-accent);
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.eds-text--xs{
|
|
623
|
+
font-size:0.75rem;
|
|
624
|
+
font-size:var(--font-size-body-xs);
|
|
625
|
+
line-height:1rem;
|
|
626
|
+
line-height:var(--font-line-height-body-xs);
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.eds-text--s{
|
|
630
|
+
font-size:0.875rem;
|
|
631
|
+
font-size:var(--font-size-body-s);
|
|
632
|
+
line-height:1.25rem;
|
|
633
|
+
line-height:var(--font-line-height-body-s);
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.eds-text--m{
|
|
637
|
+
font-size:1rem;
|
|
638
|
+
font-size:var(--font-size-body-m);
|
|
639
|
+
line-height:1.5rem;
|
|
640
|
+
line-height:var(--font-line-height-body-m);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.eds-text--xl{
|
|
644
|
+
font-size:1.25rem;
|
|
645
|
+
font-size:var(--font-size-body-xl);
|
|
646
|
+
line-height:1.75rem;
|
|
647
|
+
line-height:var(--font-line-height-body-xl);
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.eds-text--paragraph:has(+ .eds-heading){
|
|
651
|
+
margin-bottom:-webkit-calc(1.5rem + 1rem);
|
|
652
|
+
margin-bottom:-moz-calc(1.5rem + 1rem);
|
|
653
|
+
margin-bottom:calc(1.5rem + 1rem);
|
|
654
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-m) + 1rem);
|
|
655
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-m) + 1rem);
|
|
656
|
+
margin-bottom:calc(var(--font-line-height-body-m) + 1rem);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.eds-text--sub-paragraph:has(+ .eds-heading){
|
|
660
|
+
margin-bottom:-webkit-calc(1.25rem + 1rem);
|
|
661
|
+
margin-bottom:-moz-calc(1.25rem + 1rem);
|
|
662
|
+
margin-bottom:calc(1.25rem + 1rem);
|
|
663
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-s) + 1rem);
|
|
664
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-s) + 1rem);
|
|
665
|
+
margin-bottom:calc(var(--font-line-height-body-s) + 1rem);
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.eds-text--leading:has(+ .eds-heading){
|
|
669
|
+
margin-bottom:-webkit-calc(1.75rem + 1rem);
|
|
670
|
+
margin-bottom:-moz-calc(1.75rem + 1rem);
|
|
671
|
+
margin-bottom:calc(1.75rem + 1rem);
|
|
672
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-xl) + 1rem);
|
|
673
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-xl) + 1rem);
|
|
674
|
+
margin-bottom:calc(var(--font-line-height-body-xl) + 1rem);
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.eds-text--quote:has(+ .eds-heading){
|
|
678
|
+
margin-bottom:-webkit-calc(1.5rem + 1rem);
|
|
679
|
+
margin-bottom:-moz-calc(1.5rem + 1rem);
|
|
680
|
+
margin-bottom:calc(1.5rem + 1rem);
|
|
681
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-lg) + 1rem);
|
|
682
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-lg) + 1rem);
|
|
683
|
+
margin-bottom:calc(var(--font-line-height-body-lg) + 1rem);
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.eds-text--caption:has(+ .eds-heading){
|
|
687
|
+
margin-bottom:-webkit-calc(1rem + 1rem);
|
|
688
|
+
margin-bottom:-moz-calc(1rem + 1rem);
|
|
689
|
+
margin-bottom:calc(1rem + 1rem);
|
|
690
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-xs) + 1rem);
|
|
691
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-xs) + 1rem);
|
|
692
|
+
margin-bottom:calc(var(--font-line-height-body-xs) + 1rem);
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.eds-text--label:has(+ .eds-heading){
|
|
696
|
+
margin-bottom:-webkit-calc(0.5rem + 1rem);
|
|
697
|
+
margin-bottom:-moz-calc(0.5rem + 1rem);
|
|
698
|
+
margin-bottom:calc(0.5rem + 1rem);
|
|
699
|
+
margin-bottom:-webkit-calc(var(--font-paragraph-spacing-body-xs) + 1rem);
|
|
700
|
+
margin-bottom:-moz-calc(var(--font-paragraph-spacing-body-xs) + 1rem);
|
|
701
|
+
margin-bottom:calc(var(--font-paragraph-spacing-body-xs) + 1rem);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.eds-text--sublabel:has(+ .eds-heading){
|
|
705
|
+
margin-bottom:-webkit-calc(0.5rem + 1rem);
|
|
706
|
+
margin-bottom:-moz-calc(0.5rem + 1rem);
|
|
707
|
+
margin-bottom:calc(0.5rem + 1rem);
|
|
708
|
+
margin-bottom:-webkit-calc(var(--font-paragraph-spacing-body-xs) + 1rem);
|
|
709
|
+
margin-bottom:-moz-calc(var(--font-paragraph-spacing-body-xs) + 1rem);
|
|
710
|
+
margin-bottom:calc(var(--font-paragraph-spacing-body-xs) + 1rem);
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.eds-text--unordered-list:has(+ .eds-heading){
|
|
714
|
+
margin-bottom:-webkit-calc(1.5rem + 1rem);
|
|
715
|
+
margin-bottom:-moz-calc(1.5rem + 1rem);
|
|
716
|
+
margin-bottom:calc(1.5rem + 1rem);
|
|
717
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-lg) + 1rem);
|
|
718
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-lg) + 1rem);
|
|
719
|
+
margin-bottom:calc(var(--font-line-height-body-lg) + 1rem);
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.eds-text--numbered-list:has(+ .eds-heading){
|
|
723
|
+
margin-bottom:-webkit-calc(1.5rem + 1rem);
|
|
724
|
+
margin-bottom:-moz-calc(1.5rem + 1rem);
|
|
725
|
+
margin-bottom:calc(1.5rem + 1rem);
|
|
726
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-lg) + 1rem);
|
|
727
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-lg) + 1rem);
|
|
728
|
+
margin-bottom:calc(var(--font-line-height-body-lg) + 1rem);
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.eds-text--blockquote:has(+ .eds-heading){
|
|
732
|
+
margin-bottom:-webkit-calc(1.5rem + 1rem);
|
|
733
|
+
margin-bottom:-moz-calc(1.5rem + 1rem);
|
|
734
|
+
margin-bottom:calc(1.5rem + 1rem);
|
|
735
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-lg) + 1rem);
|
|
736
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-lg) + 1rem);
|
|
737
|
+
margin-bottom:calc(var(--font-line-height-body-lg) + 1rem);
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.eds-text--preformatted-text:has(+ .eds-heading){
|
|
741
|
+
margin-bottom:-webkit-calc(1.5rem + 1rem);
|
|
742
|
+
margin-bottom:-moz-calc(1.5rem + 1rem);
|
|
743
|
+
margin-bottom:calc(1.5rem + 1rem);
|
|
744
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-lg) + 1rem);
|
|
745
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-lg) + 1rem);
|
|
746
|
+
margin-bottom:calc(var(--font-line-height-body-lg) + 1rem);
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.eds-text--code-text:has(+ .eds-heading){
|
|
750
|
+
margin-bottom:-webkit-calc(1.5rem + 1rem);
|
|
751
|
+
margin-bottom:-moz-calc(1.5rem + 1rem);
|
|
752
|
+
margin-bottom:calc(1.5rem + 1rem);
|
|
753
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-lg) + 1rem);
|
|
754
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-lg) + 1rem);
|
|
755
|
+
margin-bottom:calc(var(--font-line-height-body-lg) + 1rem);
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.eds-text--leading{
|
|
759
|
+
font-size:1.25rem;
|
|
760
|
+
font-size:var(--font-size-body-xl);
|
|
761
|
+
line-height:1.75rem;
|
|
762
|
+
line-height:var(--font-line-height-body-xl);
|
|
763
|
+
margin-bottom:1.75rem;
|
|
764
|
+
margin-bottom:var(--font-line-height-body-xl);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.eds-text--quote{
|
|
768
|
+
font-size:1rem;
|
|
769
|
+
font-size:var(--font-size-body-lg);
|
|
770
|
+
line-height:1.5rem;
|
|
771
|
+
line-height:var(--font-line-height-body-lg);
|
|
772
|
+
margin-bottom:1.5rem;
|
|
773
|
+
margin-bottom:var(--font-line-height-body-lg);
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.eds-text--paragraph{
|
|
777
|
+
font-size:1rem;
|
|
778
|
+
font-size:var(--font-size-body-m);
|
|
779
|
+
line-height:1.5rem;
|
|
780
|
+
line-height:var(--font-line-height-body-m);
|
|
781
|
+
margin-bottom:1.5rem;
|
|
782
|
+
margin-bottom:var(--font-line-height-body-m);
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.eds-text--subparagraph{
|
|
786
|
+
font-size:0.875rem;
|
|
787
|
+
font-size:var(--font-size-body-s);
|
|
788
|
+
line-height:1.25rem;
|
|
789
|
+
line-height:var(--font-line-height-body-s);
|
|
790
|
+
margin-bottom:1.25rem;
|
|
791
|
+
margin-bottom:var(--font-line-height-body-s);
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.eds-text--caption{
|
|
795
|
+
font-size:0.75rem;
|
|
796
|
+
font-size:var(--font-size-body-xs);
|
|
797
|
+
line-height:1rem;
|
|
798
|
+
line-height:var(--font-line-height-body-xs);
|
|
799
|
+
margin-bottom:1rem;
|
|
800
|
+
margin-bottom:var(--font-line-height-body-xs);
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.eds-text--label{
|
|
804
|
+
font-size:1rem;
|
|
805
|
+
font-size:var(--font-size-body-m);
|
|
806
|
+
line-height:1rem;
|
|
807
|
+
line-height:var(--font-line-height-heading-xs);
|
|
808
|
+
margin-bottom:0.5rem;
|
|
809
|
+
margin-bottom:var(--font-paragraph-spacing-body-xs);
|
|
810
|
+
font-weight:600;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.eds-text--sublabel{
|
|
814
|
+
font-size:0.875rem;
|
|
815
|
+
font-size:var(--font-size-body-s);
|
|
816
|
+
line-height:1.25rem;
|
|
817
|
+
line-height:var(--font-line-height-body-s);
|
|
818
|
+
margin-bottom:0.5rem;
|
|
819
|
+
margin-bottom:var(--font-paragraph-spacing-body-xs);
|
|
820
|
+
font-weight:600;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.eds-text--overline{
|
|
824
|
+
font-size:0.75rem;
|
|
825
|
+
font-size:var(--font-size-body-xs);
|
|
826
|
+
line-height:1rem;
|
|
827
|
+
line-height:var(--font-line-height-body-xs);
|
|
828
|
+
margin-top:0.5rem;
|
|
829
|
+
margin-top:var(--font-paragraph-spacing-body-xs);
|
|
830
|
+
margin-bottom:1rem;
|
|
831
|
+
margin-bottom:var(--font-paragraph-spacing-body-m);
|
|
832
|
+
font-weight:500;
|
|
833
|
+
text-transform:uppercase;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.eds-text--emphasized{
|
|
837
|
+
font-style:italic;
|
|
838
|
+
font-weight:500;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.eds-text--code-text, .eds-text--preformatted-text{
|
|
842
|
+
background-color:#f6f6f9;
|
|
843
|
+
background-color:var(--components-typography-codetext-standard-fill);
|
|
844
|
+
border:0.0625rem solid rgba(84, 86, 140, 0.4);
|
|
845
|
+
border:0.0625rem solid var(--components-typography-codetext-standard-border);
|
|
846
|
+
-webkit-border-radius:0.25rem;
|
|
847
|
+
-moz-border-radius:0.25rem;
|
|
848
|
+
border-radius:0.25rem;
|
|
849
|
+
color:#181c56;
|
|
850
|
+
color:var(--components-typography-codetext-standard-text);
|
|
851
|
+
font-family:"Monaco", monospace;
|
|
852
|
+
font-size:0.875rem;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.eds-contrast .eds-text--code-text, .eds-contrast .eds-text--preformatted-text{
|
|
856
|
+
background-color:#f6f6f9;
|
|
857
|
+
background-color:var(--components-typography-codetext-contrast-fill);
|
|
858
|
+
border:0.0625rem solid rgba(255, 255, 255, 0);
|
|
859
|
+
border:0.0625rem solid var(--components-typography-codetext-contrast-border);
|
|
860
|
+
color:#181c56;
|
|
861
|
+
color:var(--components-typography-codetext-contrast-text);
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.eds-text--preformatted-text{
|
|
865
|
+
padding:1rem;
|
|
866
|
+
white-space:pre-wrap;
|
|
867
|
+
word-break:keep-all;
|
|
868
|
+
margin-bottom:-webkit-calc(1.5rem + 1rem);
|
|
869
|
+
margin-bottom:-moz-calc(1.5rem + 1rem);
|
|
870
|
+
margin-bottom:calc(1.5rem + 1rem);
|
|
871
|
+
margin-bottom:-webkit-calc(var(--font-line-height-body-lg) + 1rem);
|
|
872
|
+
margin-bottom:-moz-calc(var(--font-line-height-body-lg) + 1rem);
|
|
873
|
+
margin-bottom:calc(var(--font-line-height-body-lg) + 1rem);
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.eds-text--code-text{
|
|
877
|
+
display:inline-block;
|
|
878
|
+
word-wrap:break-word;
|
|
879
|
+
word-wrap:anywhere;
|
|
880
|
+
padding:0 0.25rem;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.eds-text--weight-400, .eds-text--weight-regular{
|
|
884
|
+
font-weight:400;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.eds-text--weight-500, .eds-text--weight-medium{
|
|
888
|
+
font-weight:500;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.eds-text--weight-600, .eds-text--weight-semibold{
|
|
892
|
+
font-weight:600;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.eds-text--weight-700, .eds-text--weight-bold{
|
|
896
|
+
font-weight:700;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.eds-text--spacing-none{
|
|
900
|
+
margin-top:0;
|
|
901
|
+
margin-bottom:0;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.eds-text--spacing-xs2{
|
|
905
|
+
margin-top:0.25rem;
|
|
906
|
+
margin-bottom:0.25rem;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.eds-text--spacing-xs2-top{
|
|
910
|
+
margin-top:0.25rem;
|
|
911
|
+
margin-bottom:0;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.eds-text--spacing-xs2-bottom{
|
|
915
|
+
margin-top:0;
|
|
916
|
+
margin-bottom:0.25rem;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.eds-text--spacing-xs{
|
|
920
|
+
margin-top:0.5rem;
|
|
921
|
+
margin-bottom:0.5rem;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.eds-text--spacing-xs-top{
|
|
925
|
+
margin-top:0.5rem;
|
|
926
|
+
margin-bottom:0;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.eds-text--spacing-xs-bottom{
|
|
930
|
+
margin-top:0;
|
|
931
|
+
margin-bottom:0.5rem;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.eds-text--spacing-sm{
|
|
935
|
+
margin-top:0.75rem;
|
|
936
|
+
margin-bottom:0.75rem;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.eds-text--spacing-sm-top{
|
|
940
|
+
margin-top:0.75rem;
|
|
941
|
+
margin-bottom:0;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.eds-text--spacing-sm-bottom{
|
|
945
|
+
margin-top:0;
|
|
946
|
+
margin-bottom:0.75rem;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.eds-text--spacing-md{
|
|
950
|
+
margin-top:1rem;
|
|
951
|
+
margin-bottom:1rem;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.eds-text--spacing-md-top{
|
|
955
|
+
margin-top:1rem;
|
|
956
|
+
margin-bottom:0;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.eds-text--spacing-md-bottom{
|
|
960
|
+
margin-top:0;
|
|
961
|
+
margin-bottom:1rem;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.eds-text--spacing-lg{
|
|
965
|
+
margin-top:1.5rem;
|
|
966
|
+
margin-bottom:1.5rem;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.eds-text--spacing-lg-top{
|
|
970
|
+
margin-top:1.5rem;
|
|
971
|
+
margin-bottom:0;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.eds-text--spacing-lg-bottom{
|
|
975
|
+
margin-top:0;
|
|
976
|
+
margin-bottom:1.5rem;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.eds-text--spacing-xl{
|
|
980
|
+
margin-top:2rem;
|
|
981
|
+
margin-bottom:2rem;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.eds-text--spacing-xl-top{
|
|
985
|
+
margin-top:2rem;
|
|
986
|
+
margin-bottom:0;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.eds-text--spacing-xl-bottom{
|
|
990
|
+
margin-top:0;
|
|
991
|
+
margin-bottom:2rem;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.eds-text--link{
|
|
995
|
+
color:#181c56;
|
|
996
|
+
color:var(--components-typography-basetext-standard-text-accent);
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.eds-contrast .eds-text--link{
|
|
1000
|
+
color:#ffffff;
|
|
1001
|
+
color:var(--components-typography-basetext-contrast-text-accent);
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.eds-text--link, .eds-text--link:link, .eds-text--link:visited{
|
|
1005
|
+
font-size:inherit;
|
|
1006
|
+
-webkit-text-decoration:none;
|
|
1007
|
+
text-decoration:none;
|
|
1008
|
+
position:relative;
|
|
1009
|
+
background-image:-webkit-linear-gradient(330deg, #181c56 0%, #181c56 100%);
|
|
1010
|
+
background-image:-moz-linear-gradient(330deg, #181c56 0%, #181c56 100%);
|
|
1011
|
+
background-image:-o-linear-gradient(330deg, #181c56 0%, #181c56 100%);
|
|
1012
|
+
background-image:linear-gradient(120deg, #181c56 0%, #181c56 100%);
|
|
1013
|
+
background-image:-webkit-linear-gradient(330deg, var(--components-typography-basetext-standard-text-accent) 0%, var(--components-typography-basetext-standard-text-accent) 100%);
|
|
1014
|
+
background-image:-moz-linear-gradient(330deg, var(--components-typography-basetext-standard-text-accent) 0%, var(--components-typography-basetext-standard-text-accent) 100%);
|
|
1015
|
+
background-image:-o-linear-gradient(330deg, var(--components-typography-basetext-standard-text-accent) 0%, var(--components-typography-basetext-standard-text-accent) 100%);
|
|
1016
|
+
background-image:linear-gradient(120deg, var(--components-typography-basetext-standard-text-accent) 0%, var(--components-typography-basetext-standard-text-accent) 100%);
|
|
1017
|
+
background-repeat:no-repeat;
|
|
1018
|
+
-moz-background-size:100% 0.125rem;
|
|
1019
|
+
-o-background-size:100% 0.125rem;
|
|
1020
|
+
background-size:100% 0.125rem;
|
|
1021
|
+
background-position:0 100%;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.eds-contrast .eds-text--link, .eds-contrast .eds-text--link:link, .eds-contrast .eds-text--link:visited{
|
|
1025
|
+
background-image:-webkit-linear-gradient(330deg, #ffffff 0%, #ffffff 100%);
|
|
1026
|
+
background-image:-moz-linear-gradient(330deg, #ffffff 0%, #ffffff 100%);
|
|
1027
|
+
background-image:-o-linear-gradient(330deg, #ffffff 0%, #ffffff 100%);
|
|
1028
|
+
background-image:linear-gradient(120deg, #ffffff 0%, #ffffff 100%);
|
|
1029
|
+
background-image:-webkit-linear-gradient(330deg, var(--components-typography-basetext-contrast-text-accent) 0%, var(--components-typography-basetext-contrast-text-accent) 100%);
|
|
1030
|
+
background-image:-moz-linear-gradient(330deg, var(--components-typography-basetext-contrast-text-accent) 0%, var(--components-typography-basetext-contrast-text-accent) 100%);
|
|
1031
|
+
background-image:-o-linear-gradient(330deg, var(--components-typography-basetext-contrast-text-accent) 0%, var(--components-typography-basetext-contrast-text-accent) 100%);
|
|
1032
|
+
background-image:linear-gradient(120deg, var(--components-typography-basetext-contrast-text-accent) 0%, var(--components-typography-basetext-contrast-text-accent) 100%);
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.eds-text--link:hover{
|
|
1036
|
+
-webkit-animation:eds-link-underline 0.3s ease-in;
|
|
1037
|
+
-moz-animation:eds-link-underline 0.3s ease-in;
|
|
1038
|
+
-o-animation:eds-link-underline 0.3s ease-in;
|
|
1039
|
+
animation:eds-link-underline 0.3s ease-in;
|
|
1040
|
+
cursor:pointer;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
@-webkit-keyframes eds-link-underline{
|
|
1044
|
+
from{
|
|
1045
|
+
background-size:0% 0.125rem;
|
|
1046
|
+
}
|
|
1047
|
+
to{
|
|
1048
|
+
background-size:100% 0.125rem;
|
|
1049
|
+
}
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
@-moz-keyframes eds-link-underline{
|
|
1053
|
+
from{
|
|
1054
|
+
-moz-background-size:0% 0.125rem;
|
|
1055
|
+
background-size:0% 0.125rem;
|
|
1056
|
+
}
|
|
1057
|
+
to{
|
|
1058
|
+
-moz-background-size:100% 0.125rem;
|
|
1059
|
+
background-size:100% 0.125rem;
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
@-o-keyframes eds-link-underline{
|
|
1064
|
+
from{
|
|
1065
|
+
-o-background-size:0% 0.125rem;
|
|
1066
|
+
background-size:0% 0.125rem;
|
|
1067
|
+
}
|
|
1068
|
+
to{
|
|
1069
|
+
-o-background-size:100% 0.125rem;
|
|
1070
|
+
background-size:100% 0.125rem;
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
@keyframes eds-link-underline{
|
|
1075
|
+
from{
|
|
1076
|
+
-moz-background-size:0% 0.125rem;
|
|
1077
|
+
-o-background-size:0% 0.125rem;
|
|
1078
|
+
background-size:0% 0.125rem;
|
|
1079
|
+
}
|
|
1080
|
+
to{
|
|
1081
|
+
-moz-background-size:100% 0.125rem;
|
|
1082
|
+
-o-background-size:100% 0.125rem;
|
|
1083
|
+
background-size:100% 0.125rem;
|
|
1084
|
+
}
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.eds-text--link:focus-visible{
|
|
1088
|
+
outline:2px solid #181c56;
|
|
1089
|
+
outline-color:#181c56;
|
|
1090
|
+
outline-color:var(--basecolors-stroke-focus-standard);
|
|
1091
|
+
outline-offset:0.125rem;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
.eds-contrast .eds-text--link:focus-visible{
|
|
1095
|
+
outline-color:#aeb7e2;
|
|
1096
|
+
outline-color:var(--basecolors-stroke-focus-contrast);
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
@media screen and (min-width: 50rem){
|
|
1100
|
+
.eds-text--link{
|
|
1101
|
+
font-size:1rem;
|
|
1102
|
+
line-height:1.5rem;
|
|
1103
|
+
}
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
.eds-text--link--ext-icon{
|
|
1107
|
+
margin-left:0.25rem;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
p .eds-text--link--ext-icon{
|
|
1111
|
+
top:0;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.eds-text--blockquote{
|
|
1115
|
+
border-left:0.25rem solid #8284ab;
|
|
1116
|
+
border-left:0.25rem solid var(--components-typography-blockquote-standard-stroke);
|
|
1117
|
+
font-family:inherit;
|
|
1118
|
+
margin:0;
|
|
1119
|
+
padding:0.5rem;
|
|
1120
|
+
padding-left:2rem;
|
|
1121
|
+
font-size:1rem;
|
|
1122
|
+
font-size:var(--font-size-body-lg);
|
|
1123
|
+
line-height:1.5rem;
|
|
1124
|
+
line-height:var(--font-line-height-body-lg);
|
|
1125
|
+
margin-bottom:1.5rem;
|
|
1126
|
+
margin-bottom:var(--font-line-height-body-lg);
|
|
1127
|
+
color:#181c56;
|
|
1128
|
+
color:var(--components-typography-blockquote-standard-text-accent);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.eds-contrast .eds-text--blockquote{
|
|
1132
|
+
color:#ffffff;
|
|
1133
|
+
color:var(--components-typography-blockquote-contrast-text-accent);
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.eds-text--blockquote__footer{
|
|
1137
|
+
font-size:0.875rem;
|
|
1138
|
+
font-size:var(--font-size-body-s);
|
|
1139
|
+
line-height:1.375rem;
|
|
1140
|
+
letter-spacing:1px;
|
|
1141
|
+
margin-top:1.5rem;
|
|
1142
|
+
text-transform:uppercase;
|
|
1143
|
+
color:#181c56;
|
|
1144
|
+
color:var(--components-typography-blockquote-standard-text-accent);
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
.eds-contrast .eds-text--blockquote__footer{
|
|
1148
|
+
color:#ffffff;
|
|
1149
|
+
color:var(--components-typography-blockquote-contrast-text-accent);
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.eds-text--unordered-list{
|
|
1153
|
+
list-style:none;
|
|
1154
|
+
margin-bottom:1.5rem;
|
|
1155
|
+
margin-bottom:var(--font-line-height-body-lg);
|
|
1156
|
+
color:#181c56;
|
|
1157
|
+
color:var(--components-typography-list-standard-text-accent);
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.eds-contrast .eds-text--unordered-list{
|
|
1161
|
+
color:#ffffff;
|
|
1162
|
+
color:var(--components-typography-list-contrast-text-accent);
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
.eds-text--unordered-list .eds-text--list-item::before{
|
|
1166
|
+
content:"";
|
|
1167
|
+
background:#aeb7e2;
|
|
1168
|
+
background:var(--components-typography-list-standard-border);
|
|
1169
|
+
display:block;
|
|
1170
|
+
height:0.125rem;
|
|
1171
|
+
left:-1.75rem;
|
|
1172
|
+
top:0.75rem;
|
|
1173
|
+
position:relative;
|
|
1174
|
+
width:0.75rem;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
.eds-text--numbered-list{
|
|
1178
|
+
counter-reset:eds-numbered-list-counter;
|
|
1179
|
+
list-style:none;
|
|
1180
|
+
margin-bottom:1.5rem;
|
|
1181
|
+
margin-bottom:var(--font-line-height-body-lg);
|
|
1182
|
+
color:#181c56;
|
|
1183
|
+
color:var(--components-typography-list-standard-text-accent);
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
.eds-contrast .eds-text--numbered-list{
|
|
1187
|
+
color:#ffffff;
|
|
1188
|
+
color:var(--components-typography-list-contrast-text-accent);
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.eds-text--numbered-list--type-a > .eds-text--list-item::before{
|
|
1192
|
+
content:counter(eds-numbered-list-counter, lower-alpha);
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
.eds-text--numbered-list--type-A > .eds-text--list-item::before{
|
|
1196
|
+
content:counter(eds-numbered-list-counter, upper-alpha);
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.eds-text--numbered-list--type-1 > .eds-text--list-item::before{
|
|
1200
|
+
content:counter(eds-numbered-list-counter, decimal);
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
.eds-text--numbered-list--type-i > .eds-text--list-item::before{
|
|
1204
|
+
content:counter(eds-numbered-list-counter, lower-roman);
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
.eds-text--numbered-list--type-I > .eds-text--list-item::before{
|
|
1208
|
+
content:counter(eds-numbered-list-counter, upper-roman);
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
.eds-text--list-item{
|
|
1212
|
+
padding-left:0.5rem;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.eds-text--numbered-list > .eds-text--list-item{
|
|
1216
|
+
counter-increment:eds-numbered-list-counter;
|
|
1217
|
+
margin-bottom:1rem;
|
|
1218
|
+
margin-bottom:var(--font-paragraph-spacing-body-m);
|
|
1219
|
+
position:relative;
|
|
1220
|
+
color:#181c56;
|
|
1221
|
+
color:var(--components-typography-list-standard-text-accent);
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
.eds-contrast .eds-text--numbered-list > .eds-text--list-item{
|
|
1225
|
+
color:#ffffff;
|
|
1226
|
+
color:var(--components-typography-list-contrast-text-accent);
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.eds-text--numbered-list > .eds-text--list-item::before{
|
|
1230
|
+
color:var(--primary-text-color);
|
|
1231
|
+
position:absolute;
|
|
1232
|
+
font-weight:600;
|
|
1233
|
+
font-weight:var(--font-weight-heading);
|
|
1234
|
+
left:-2.5rem;
|
|
1235
|
+
border:0.125rem solid #aeb7e2;
|
|
1236
|
+
border:0.125rem solid var(--components-typography-list-standard-border);
|
|
1237
|
+
-webkit-border-radius:50%;
|
|
1238
|
+
-moz-border-radius:50%;
|
|
1239
|
+
border-radius:50%;
|
|
1240
|
+
height:2rem;
|
|
1241
|
+
width:2rem;
|
|
1242
|
+
display:-webkit-box;
|
|
1243
|
+
display:-webkit-flex;
|
|
1244
|
+
display:-moz-box;
|
|
1245
|
+
display:flex;
|
|
1246
|
+
-webkit-box-align:center;
|
|
1247
|
+
-webkit-align-items:center;
|
|
1248
|
+
-moz-box-align:center;
|
|
1249
|
+
align-items:center;
|
|
1250
|
+
-webkit-box-pack:center;
|
|
1251
|
+
-webkit-justify-content:center;
|
|
1252
|
+
-moz-box-pack:center;
|
|
1253
|
+
justify-content:center;
|
|
1254
|
+
top:-0.25rem;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.eds-contrast .eds-text--numbered-list > .eds-text--list-item::before{
|
|
1258
|
+
border:0.125rem solid #aeb7e2;
|
|
1259
|
+
border:0.125rem solid var(--components-typography-list-contrast-border);
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.eds-text--list-item__title{
|
|
1263
|
+
display:block;
|
|
1264
|
+
font-weight:600;
|
|
1265
|
+
font-weight:var(--font-weight-heading);
|
|
1266
|
+
margin-bottom:0.5rem;
|
|
1267
|
+
}
|