@entur/typography 2.0.3 → 2.0.4

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