@total_onion/onion-library 1.0.82 → 1.0.84

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.
Files changed (20) hide show
  1. package/components/block-post-info-v3/post-info-v3.scss +16 -17
  2. package/components/block-section-separator-v3/section-separator-v3.scss +11 -9
  3. package/components/block-single-responsive-image-v3/single-responsive-image-v3.scss +0 -2
  4. package/components/block-standard-content-v3/standard-content-v3.scss +0 -1
  5. package/components/block-sub-group-container-v3/sub-group-container-v3.scss +6 -12
  6. package/components/component-animations-v3/animations-v3.scss +117 -0
  7. package/components/component-content-container-settings-v3/content-container-settings-v3.scss +13 -13
  8. package/components/component-element-positioning-v3/element-positioning-v3.scss +2 -3
  9. package/components/component-grid-layout-container-v3/grid-layout-container-v3.scss +5 -5
  10. package/components/component-grid-layout-element-v3/grid-layout-element-v3.scss +25 -0
  11. package/components/component-text-editor-settings-element-classes-v3/text-editor-settings-element-classes-v3.twig +4 -1
  12. package/components/component-text-editor-settings-v3/group_687a4e2334e37.json +26 -11
  13. package/components/fields-animations-v3/animations-v3.scss +121 -0
  14. package/components/fields-core-critical-v3/core-critical-v3.scss +5 -5
  15. package/components/fields-core-css-sizing-vars-v3/core-css-sizing-vars-v3.scss +20 -86
  16. package/components/fields-core-mixins-v3/core-mixins-v3.scss +1563 -1759
  17. package/components/fields-core-typography-mixins-v3/core-typography-mixins-v3.scss +988 -0
  18. package/components/fields-core-typography-v3/core-typography-v3.php +53 -53
  19. package/components/fields-core-typography-v3/core-typography-v3.scss +445 -166
  20. package/package.json +1 -1
@@ -0,0 +1,988 @@
1
+ @use 'Assets/scss/theme/breakpoints';
2
+ @use 'Assets/scss/modules/library-modules/core-functions-v3/core-functions-v3';
3
+ @use 'Assets/scss/modules/library-modules/core-mixins-v3/core-mixins-v3';
4
+
5
+ @mixin h-xl-size {
6
+ font-size: clamp(
7
+ var(--h-xl-font-size-min-desktop, 10px),
8
+ core-functions-v3.fontSize(var(--h-xl-desktop)),
9
+ var(--h-xl-font-size-max-desktop, 180px)
10
+ );
11
+ }
12
+ @mixin h-xl {
13
+ letter-spacing: var(--h1-l-letter-spacing);
14
+ line-height: var(--h1-l-line-height);
15
+ font-family: var(--h1-l-font-family);
16
+ --default-font-weight: var(--h1-l-default-font-weight);
17
+ font-weight: var(--default-font-weight);
18
+ strong,
19
+ b {
20
+ font-weight: var(--h1-l-bold-font-weight);
21
+ }
22
+ font-size: clamp(
23
+ var(--h-xl-font-size-min-mobile, 10px),
24
+ core-functions-v3.fontSize(var(--h-xl-mobile), 'mobile'),
25
+ var(--h-xl-font-size-max-mobile, 180px)
26
+ );
27
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
28
+ font-size: clamp(
29
+ var(--h-xl-font-size-min-mobile, 10px),
30
+ core-functions-v3.fontSize(var(--h-xl-portrait), 'portrait'),
31
+ var(--h-xl-font-size-max-mobile, 180px)
32
+ );
33
+ }
34
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
35
+ font-size: clamp(
36
+ var(--h-xl-font-size-min-desktop, 10px),
37
+ core-functions-v3.fontSize(var(--h-xl-landscape), 'landscape'),
38
+ var(--h-xl-font-size-max-desktop, 180px)
39
+ );
40
+ }
41
+
42
+ @include core-mixins-v3.device(breakpoints.$desktop) {
43
+ @include h-xl-size();
44
+ }
45
+ }
46
+ @mixin h-l-size {
47
+ font-size: clamp(
48
+ var(--h-l-font-size-min-desktop, 10px),
49
+ core-functions-v3.fontSize(var(--h-l-desktop)),
50
+ var(--h-l-font-size-max-desktop, 180px)
51
+ );
52
+ }
53
+ @mixin h-l {
54
+ letter-spacing: var(--h1-letter-spacing);
55
+ line-height: var(--h1-line-height);
56
+ font-family: var(--h1-font-family);
57
+ --default-font-weight: var(--h1-default-font-weight);
58
+ font-weight: var(--default-font-weight);
59
+
60
+ strong,
61
+ b {
62
+ font-weight: var(--h1-bold-font-weight);
63
+ }
64
+
65
+ font-size: clamp(
66
+ var(--h-l-font-size-min-mobile, 10px),
67
+ core-functions-v3.fontSize(var(--h-l-mobile), 'mobile'),
68
+ var(--h-l-font-size-max-mobile, 180px)
69
+ );
70
+
71
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
72
+ font-size: clamp(
73
+ var(--h-l-font-size-min-mobile, 10px),
74
+ core-functions-v3.fontSize(var(--h-l-portrait), 'portrait'),
75
+ var(--h-l-font-size-max-mobile, 180px)
76
+ );
77
+ }
78
+
79
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
80
+ font-size: clamp(
81
+ var(--h-l-font-size-min-desktop, 10px),
82
+ core-functions-v3.fontSize(var(--h-l-landscape), 'landscape'),
83
+ var(--h-l-font-size-max-desktop, 180px)
84
+ );
85
+ }
86
+
87
+ @include core-mixins-v3.device(breakpoints.$desktop) {
88
+ @include h-l-size();
89
+ }
90
+ }
91
+ @mixin h-m-size {
92
+ font-size: clamp(
93
+ var(--h-m-font-size-min-desktop, 10px),
94
+ core-functions-v3.fontSize(var(--h-m-desktop)),
95
+ var(--h-m-font-size-max-desktop, 180px)
96
+ );
97
+ }
98
+ @mixin h-m {
99
+ letter-spacing: var(--h2-letter-spacing);
100
+ line-height: var(--h2-line-height);
101
+ font-family: var(--h2-font-family);
102
+ --default-font-weight: var(--h2-default-font-weight);
103
+ font-weight: var(--default-font-weight);
104
+
105
+ strong,
106
+ b {
107
+ font-weight: var(--h2-bold-font-weight);
108
+ }
109
+
110
+ font-size: clamp(
111
+ var(--h-m-font-size-min-mobile, 10px),
112
+ core-functions-v3.fontSize(var(--h-m-mobile)),
113
+ var(--h-m-font-size-max-mobile, 180px)
114
+ );
115
+
116
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
117
+ font-size: clamp(
118
+ var(--h-m-font-size-min-mobile, 10px),
119
+ core-functions-v3.fontSize(var(--h-m-portrait)),
120
+ var(--h-m-font-size-max-mobile, 180px)
121
+ );
122
+ }
123
+
124
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
125
+ font-size: clamp(
126
+ var(--h-m-font-size-min-desktop, 10px),
127
+ core-functions-v3.fontSize(var(--h-m-landscape)),
128
+ var(--h-m-font-size-max-desktop, 180px)
129
+ );
130
+ }
131
+
132
+ @include core-mixins-v3.device(breakpoints.$desktop) {
133
+ @include h-m-size();
134
+ }
135
+ }
136
+ @mixin h-s-size {
137
+ font-size: clamp(
138
+ var(--h-s-font-size-min-desktop, 10px),
139
+ core-functions-v3.fontSize(var(--h-s-desktop)),
140
+ var(--h-s-font-size-max-desktop, 180px)
141
+ );
142
+ }
143
+ @mixin h-s {
144
+ letter-spacing: var(--h3-letter-spacing);
145
+ line-height: var(--h3-line-height);
146
+ font-family: var(--h3-font-family);
147
+ --default-font-weight: var(--h3-default-font-weight);
148
+ font-weight: var(--default-font-weight);
149
+
150
+ strong,
151
+ b {
152
+ font-weight: var(--h3-bold-font-weight);
153
+ }
154
+
155
+ font-size: clamp(
156
+ var(--h-s-font-size-min-mobile, 10px),
157
+ core-functions-v3.fontSize(var(--h-s-mobile), 'mobile'),
158
+ var(--h-s-font-size-max-mobile, 180px)
159
+ );
160
+
161
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
162
+ font-size: clamp(
163
+ var(--h-s-font-size-min-mobile, 10px),
164
+ core-functions-v3.fontSize(var(--h-s-portrait), 'portrait'),
165
+ var(--h-s-font-size-max-mobile, 180px)
166
+ );
167
+ }
168
+
169
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
170
+ font-size: clamp(
171
+ var(--h-s-font-size-min-desktop, 10px),
172
+ core-functions-v3.fontSize(var(--h-s-landscape), 'landscape'),
173
+ var(--h-s-font-size-max-desktop, 180px)
174
+ );
175
+ }
176
+
177
+ @include core-mixins-v3.device(breakpoints.$desktop) {
178
+ @include h-s-size();
179
+ }
180
+ }
181
+ @mixin h-xs-size {
182
+ font-size: clamp(
183
+ var(--h-xs-font-size-min-desktop, 10px),
184
+ core-functions-v3.fontSize(var(--h-xs-desktop)),
185
+ var(--h-xs-font-size-max-desktop, 180px)
186
+ );
187
+ }
188
+ @mixin h-xs {
189
+ letter-spacing: var(--h4-letter-spacing);
190
+ line-height: var(--h4-line-height);
191
+ font-family: var(--h4-font-family);
192
+ --default-font-weight: var(--h4-default-font-weight);
193
+ font-weight: var(--default-font-weight);
194
+
195
+ strong,
196
+ b {
197
+ font-weight: var(--h4-bold-font-weight);
198
+ }
199
+
200
+ font-size: clamp(
201
+ var(--h-xs-font-size-min-mobile, 10px),
202
+ core-functions-v3.fontSize(var(--h-xs-mobile), 'mobile'),
203
+ var(--h-xs-font-size-max-mobile, 180px)
204
+ );
205
+
206
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
207
+ font-size: clamp(
208
+ var(--h-xs-font-size-min-mobile, 10px),
209
+ core-functions-v3.fontSize(var(--h-xs-portrait), 'portrait'),
210
+ var(--h-xs-font-size-max-mobile, 180px)
211
+ );
212
+ }
213
+
214
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
215
+ font-size: clamp(
216
+ var(--h-xs-font-size-min-desktop, 10px),
217
+ core-functions-v3.fontSize(var(--h-xs-landscape), 'landscape'),
218
+ var(--h-xs-font-size-max-desktop, 180px)
219
+ );
220
+ }
221
+
222
+ @include core-mixins-v3.device(breakpoints.$desktop) {
223
+ @include h-xs-size();
224
+ }
225
+ }
226
+ @mixin h-xxs-size {
227
+ font-size: clamp(
228
+ var(--h-xxs-font-size-min-desktop, 10px),
229
+ core-functions-v3.fontSize(var(--h-xxs-desktop)),
230
+ var(--h-xxs-font-size-max-desktop, 180px)
231
+ );
232
+ }
233
+ @mixin h-xxs {
234
+ letter-spacing: var(--h5-letter-spacing);
235
+ line-height: var(--h5-line-height);
236
+ font-family: var(--h5-font-family);
237
+ --default-font-weight: var(--h5-default-font-weight);
238
+ font-weight: var(--default-font-weight);
239
+
240
+ strong,
241
+ b {
242
+ font-weight: var(--h5-bold-font-weight);
243
+ }
244
+
245
+ font-size: clamp(
246
+ var(--h-xxs-font-size-min-mobile, 10px),
247
+ core-functions-v3.fontSize(var(--h-xxs-mobile), 'mobile'),
248
+ var(--h-xxs-font-size-max-mobile, 180px)
249
+ );
250
+
251
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
252
+ font-size: clamp(
253
+ var(--h-xxs-font-size-min-mobile, 10px),
254
+ core-functions-v3.fontSize(var(--h5-portrait), 'portrait'),
255
+ var(--h-xxs-font-size-max-mobile, 180px)
256
+ );
257
+ }
258
+
259
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
260
+ font-size: clamp(
261
+ var(--h-xxs-font-size-min-desktop, 10px),
262
+ core-functions-v3.fontSize(var(--h5-landscape), 'landscape'),
263
+ var(--h-xxs-font-size-max-desktop, 180px)
264
+ );
265
+ }
266
+
267
+ @include core-mixins-v3.device(breakpoints.$desktop) {
268
+ @include h-xxs-size();
269
+ }
270
+ }
271
+ @mixin h-xxxs-size {
272
+ font-size: clamp(
273
+ var(--h-xxxs-font-size-min-desktop, 10px),
274
+ core-functions-v3.fontSize(var(--h-xxxs-desktop)),
275
+ var(--h-xxxs-font-size-max-desktop, 180px)
276
+ );
277
+ }
278
+ @mixin h-xxxs {
279
+ letter-spacing: var(--h6-letter-spacing);
280
+ line-height: var(--h6-line-height);
281
+ font-family: var(--h6-font-family);
282
+ --default-font-weight: var(--h6-default-font-weight);
283
+ font-weight: var(--default-font-weight);
284
+
285
+ strong,
286
+ b {
287
+ font-weight: var(--h6-bold-font-weight);
288
+ }
289
+
290
+ font-size: clamp(
291
+ var(--h-xxxs-font-size-min-mobile, 10px),
292
+ core-functions-v3.fontSize(var(--h-xxxs-mobile), 'mobile'),
293
+ var(--h-xxxs-font-size-max-mobile, 180px)
294
+ );
295
+
296
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
297
+ font-size: clamp(
298
+ var(--h-xxxs-font-size-min-mobile, 10px),
299
+ core-functions-v3.fontSize(var(--h-xxxs-portrait), 'portrait'),
300
+ var(--h-xxxs-font-size-max-mobile, 180px)
301
+ );
302
+ }
303
+
304
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
305
+ font-size: clamp(
306
+ var(--h-xxxs-font-size-min-desktop, 10px),
307
+ core-functions-v3.fontSize(var(--h-xxxs-landscape), 'landscape'),
308
+ var(--h-xxxs-font-size-max-desktop, 180px)
309
+ );
310
+ }
311
+
312
+ @include core-mixins-v3.device(breakpoints.$desktop) {
313
+ @include h-xxxs-size();
314
+ }
315
+ }
316
+ @mixin sh-xl-size {
317
+ font-size: clamp(
318
+ var(--sh-xl-font-size-min-desktop, 10px),
319
+ core-functions-v3.fontSize(var(--sh-xl-desktop)),
320
+ var(--sh-xl-font-size-max-desktop, 180px)
321
+ );
322
+ }
323
+ @mixin sh-xl {
324
+ letter-spacing: var(--sh1-letter-spacing);
325
+ line-height: var(--sh1-line-height);
326
+ font-family: var(--sh1-font-family);
327
+ --default-font-weight: var(--sh1-default-font-weight);
328
+ font-weight: var(--default-font-weight);
329
+
330
+ strong,
331
+ b {
332
+ font-weight: var(--sh1-bold-font-weight);
333
+ }
334
+
335
+ font-size: clamp(
336
+ var(--sh-xl-font-size-min-mobile, 10px),
337
+ core-functions-v3.fontSize(var(--sh-xl-mobile)),
338
+ var(--sh-xl-font-size-max-mobile, 180px)
339
+ );
340
+
341
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
342
+ font-size: clamp(
343
+ var(--sh-xl-font-size-min-mobile, 10px),
344
+ core-functions-v3.fontSize(var(--sh-xl-portrait), 'portrait'),
345
+ var(--sh-xl-font-size-max-mobile, 180px)
346
+ );
347
+ }
348
+
349
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
350
+ font-size: clamp(
351
+ var(--sh-xl-font-size-min-desktop, 10px),
352
+ core-functions-v3.fontSize(var(--sh-xl-landscape), 'landscape'),
353
+ var(--sh-xl-font-size-max-desktop, 180px)
354
+ );
355
+ }
356
+
357
+ @include core-mixins-v3.device(breakpoints.$desktop) {
358
+ @include sh-xl-size();
359
+ }
360
+ }
361
+ @mixin sh-l-size {
362
+ font-size: clamp(
363
+ var(--sh-l-font-size-min-desktop, 10px),
364
+ core-functions-v3.fontSize(var(--sh-l-desktop)),
365
+ var(--sh-l-font-size-max-desktop, 180px)
366
+ );
367
+ }
368
+ @mixin sh-l {
369
+ letter-spacing: var(--sh2-letter-spacing);
370
+ line-height: var(--sh2-line-height);
371
+ font-family: var(--sh2-font-family);
372
+ --default-font-weight: var(--sh2-default-font-weight);
373
+ font-weight: var(--default-font-weight);
374
+
375
+ strong,
376
+ b {
377
+ font-weight: var(--sh2-bold-font-weight);
378
+ }
379
+
380
+ font-size: clamp(
381
+ var(--sh-l-font-size-min-mobile, 10px),
382
+ core-functions-v3.fontSize(var(--sh-l-mobile)),
383
+ var(--sh-l-font-size-max-mobile, 180px)
384
+ );
385
+
386
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
387
+ font-size: clamp(
388
+ var(--sh-l-font-size-min-mobile, 10px),
389
+ core-functions-v3.fontSize(var(--sh-l-portrait)),
390
+ var(--sh-l-font-size-max-mobile, 180px)
391
+ );
392
+ }
393
+
394
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
395
+ font-size: clamp(
396
+ var(--sh-l-font-size-min-desktop, 10px),
397
+ core-functions-v3.fontSize(var(--sh-l-landscape)),
398
+ var(--sh-l-font-size-max-desktop, 180px)
399
+ );
400
+ }
401
+
402
+ @include core-mixins-v3.device(breakpoints.$desktop) {
403
+ @include sh-l-size();
404
+ }
405
+ }
406
+ @mixin sh-m-size {
407
+ font-size: clamp(
408
+ var(--sh-m-font-size-min-desktop, 10px),
409
+ core-functions-v3.fontSize(var(--sh-m-desktop)),
410
+ var(--sh-m-font-size-max-desktop, 180px)
411
+ );
412
+ }
413
+ @mixin sh-m {
414
+ letter-spacing: var(--sh3-letter-spacing);
415
+ line-height: var(--sh3-line-height);
416
+ font-family: var(--sh3-font-family);
417
+ --default-font-weight: var(--sh3-default-font-weight);
418
+ font-weight: var(--default-font-weight);
419
+
420
+ strong,
421
+ b {
422
+ font-weight: var(--sh3-bold-font-weight);
423
+ }
424
+
425
+ font-size: clamp(
426
+ var(--sh-m-font-size-min-mobile, 10px),
427
+ core-functions-v3.fontSize(var(--sh-m-mobile)),
428
+ var(--sh-m-font-size-max-mobile, 180px)
429
+ );
430
+
431
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
432
+ font-size: clamp(
433
+ var(--sh-m-font-size-min-mobile, 10px),
434
+ core-functions-v3.fontSize(var(--sh-m-portrait)),
435
+ var(--sh-m-font-size-max-mobile, 180px)
436
+ );
437
+ }
438
+
439
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
440
+ font-size: clamp(
441
+ var(--sh-m-font-size-min-desktop, 10px),
442
+ core-functions-v3.fontSize(var(--sh-m-landscape)),
443
+ var(--sh-m-font-size-max-desktop, 180px)
444
+ );
445
+ }
446
+
447
+ @include core-mixins-v3.device(breakpoints.$desktop) {
448
+ @include sh-m-size();
449
+ }
450
+ }
451
+ @mixin sh-s-size {
452
+ font-size: clamp(
453
+ var(--sh-s-font-size-min-desktop, 10px),
454
+ core-functions-v3.fontSize(var(--sh-s-desktop)),
455
+ var(--sh-s-font-size-max-desktop, 180px)
456
+ );
457
+ }
458
+ @mixin sh-s {
459
+ letter-spacing: var(--sh4-letter-spacing);
460
+ line-height: var(--sh4-line-height);
461
+ font-family: var(--sh4-font-family);
462
+ --default-font-weight: var(--sh4-default-font-weight);
463
+ font-weight: var(--default-font-weight);
464
+
465
+ strong,
466
+ b {
467
+ font-weight: var(--sh4-bold-font-weight);
468
+ }
469
+
470
+ font-size: clamp(
471
+ var(--sh-s-font-size-min-mobile, 10px),
472
+ core-functions-v3.fontSize(var(--sh-s-mobile)),
473
+ var(--sh-s-font-size-max-mobile, 180px)
474
+ );
475
+
476
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
477
+ font-size: clamp(
478
+ var(--sh-s-font-size-min-mobile, 10px),
479
+ core-functions-v3.fontSize(var(--sh-s-portrait)),
480
+ var(--sh-s-font-size-max-mobile, 180px)
481
+ );
482
+ }
483
+
484
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
485
+ font-size: clamp(
486
+ var(--sh-s-font-size-min-desktop, 10px),
487
+ core-functions-v3.fontSize(var(--sh-s-landscape)),
488
+ var(--sh-s-font-size-max-desktop, 180px)
489
+ );
490
+ }
491
+
492
+ @include core-mixins-v3.device(breakpoints.$desktop) {
493
+ @include sh-s-size();
494
+ }
495
+ }
496
+ @mixin sh-xs-size {
497
+ font-size: clamp(
498
+ var(--sh-xs-font-size-min-desktop, 10px),
499
+ core-functions-v3.fontSize(var(--sh-xs-desktop)),
500
+ var(--sh-xs-font-size-max-desktop, 180px)
501
+ );
502
+ }
503
+ @mixin sh-xs {
504
+ letter-spacing: var(--sh5-letter-spacing);
505
+ line-height: var(--sh5-line-height);
506
+ font-family: var(--sh5-font-family);
507
+ --default-font-weight: var(--sh5-default-font-weight);
508
+ font-weight: var(--default-font-weight);
509
+
510
+ strong,
511
+ b {
512
+ font-weight: var(--sh5-bold-font-weight);
513
+ }
514
+
515
+ font-size: clamp(
516
+ var(--sh-xs-font-size-min-mobile, 10px),
517
+ core-functions-v3.fontSize(var(--sh-xs-mobile)),
518
+ var(--sh-xs-font-size-max-mobile, 180px)
519
+ );
520
+
521
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
522
+ font-size: clamp(
523
+ var(--sh-xs-font-size-min-mobile, 10px),
524
+ core-functions-v3.fontSize(var(--sh-xs-portrait)),
525
+ var(--sh-xs-font-size-max-mobile, 180px)
526
+ );
527
+ }
528
+
529
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
530
+ font-size: clamp(
531
+ var(--sh-xs-font-size-min-desktop, 10px),
532
+ core-functions-v3.fontSize(var(--sh-xs-landscape)),
533
+ var(--sh-xs-font-size-max-desktop, 180px)
534
+ );
535
+ }
536
+
537
+ @include core-mixins-v3.device(breakpoints.$desktop) {
538
+ @include sh-xs-size();
539
+ }
540
+ }
541
+ @mixin sh-xxs-size {
542
+ font-size: clamp(
543
+ var(--sh-xxs-font-size-min-desktop, 10px),
544
+ core-functions-v3.fontSize(var(--sh-xxs-desktop)),
545
+ var(--sh-xxs-font-size-max-desktop, 180px)
546
+ );
547
+ }
548
+ @mixin sh-xxs {
549
+ letter-spacing: var(--sh6-letter-spacing);
550
+ line-height: var(--sh6-line-height);
551
+ font-family: var(--sh6-font-family);
552
+ --default-font-weight: var(--sh6-default-font-weight);
553
+ font-weight: var(--default-font-weight);
554
+
555
+ strong,
556
+ b {
557
+ font-weight: var(--sh6-bold-font-weight);
558
+ }
559
+
560
+ font-size: clamp(
561
+ var(--sh-xxs-font-size-min-mobile, 10px),
562
+ core-functions-v3.fontSize(var(--sh-xxs-mobile)),
563
+ var(--sh-xxs-font-size-max-mobile, 180px)
564
+ );
565
+
566
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
567
+ font-size: clamp(
568
+ var(--sh-xxs-font-size-min-mobile, 10px),
569
+ core-functions-v3.fontSize(var(--sh-xxs-portrait)),
570
+ var(--sh-xxs-font-size-max-mobile, 180px)
571
+ );
572
+ }
573
+
574
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
575
+ font-size: clamp(
576
+ var(--sh-xxs-font-size-min-desktop, 10px),
577
+ core-functions-v3.fontSize(var(--sh-xxs-landscape)),
578
+ var(--sh-xxs-font-size-max-desktop, 180px)
579
+ );
580
+ }
581
+
582
+ @include core-mixins-v3.device(breakpoints.$desktop) {
583
+ @include sh-xxs-size();
584
+ }
585
+ }
586
+ @mixin p-l-size {
587
+ font-size: clamp(
588
+ var(--p-l-font-size-min-desktop, 10px),
589
+ core-functions-v3.fontSize(var(--p-l-desktop)),
590
+ var(--p-l-font-size-max-desktop, 180px)
591
+ );
592
+ }
593
+ @mixin p-l {
594
+ line-height: var(--paragraph-line-height);
595
+ letter-spacing: var(--paragraph-letter-spacing);
596
+ font-family: var(--paragraph-font-family);
597
+
598
+ strong,
599
+ b {
600
+ font-weight: var(--paragraph-bold-font-weight);
601
+ }
602
+
603
+ &:has(.font-tertiary) {
604
+ line-height: calc(
605
+ var(--paragraph-line-height) *
606
+ var(--global-line-height-multiplier-tertiary)
607
+ );
608
+ }
609
+
610
+ em {
611
+ font-style: italic;
612
+ }
613
+
614
+ font-size: clamp(
615
+ var(--p-l-font-size-min-mobile, 10px),
616
+ core-functions-v3.fontSize(var(--p-l-mobile), 'mobile'),
617
+ var(--p-l-font-size-max-mobile, 180px)
618
+ );
619
+
620
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
621
+ font-size: clamp(
622
+ var(--p-l-font-size-min-mobile, 10px),
623
+ core-functions-v3.fontSize(var(--p-l-portrait), 'portrait'),
624
+ var(--p-l-font-size-max-mobile, 180px)
625
+ );
626
+ }
627
+
628
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
629
+ font-size: clamp(
630
+ var(--p-l-font-size-min-desktop, 10px),
631
+ core-functions-v3.fontSize(var(--p-l-landscape), 'landscape'),
632
+ var(--p-l-font-size-max-desktop, 180px)
633
+ );
634
+ }
635
+
636
+ @include core-mixins-v3.device(breakpoints.$desktop) {
637
+ @include p-l-size();
638
+ }
639
+ }
640
+ @mixin p-size {
641
+ font-size: clamp(
642
+ var(--p-m-font-size-min-desktop, 10px),
643
+ core-functions-v3.fontSize(var(--p-m-desktop)),
644
+ var(--p-m-font-size-max-desktop, 180px)
645
+ );
646
+ }
647
+ @mixin p-size {
648
+ font-size: clamp(
649
+ var(--p-font-size-min-desktop, 10px),
650
+ core-functions-v3.fontSize(var(--p-desktop)),
651
+ var(--p-font-size-max-desktop, 180px)
652
+ );
653
+ }
654
+ @mixin p {
655
+ line-height: var(--paragraph-line-height);
656
+ letter-spacing: var(--paragraph-letter-spacing);
657
+ font-family: var(--paragraph-font-family);
658
+ --default-font-weight: var(--paragraph-default-font-weight);
659
+ font-weight: var(--default-font-weight);
660
+
661
+ strong,
662
+ b {
663
+ font-weight: var(--paragraph-bold-font-weight);
664
+ }
665
+
666
+ &:has(.font-tertiary) {
667
+ line-height: calc(
668
+ var(--paragraph-line-height) *
669
+ var(--global-line-height-multiplier-tertiary)
670
+ );
671
+ }
672
+
673
+ em {
674
+ font-style: italic;
675
+ }
676
+
677
+ font-size: clamp(
678
+ var(--p-font-size-min-mobile, 10px),
679
+ core-functions-v3.fontSize(var(--p-mobile)),
680
+ var(--p-font-size-max-mobile, 180px)
681
+ );
682
+
683
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
684
+ font-size: clamp(
685
+ var(--p-font-size-min-mobile, 10px),
686
+ core-functions-v3.fontSize(var(--p-portrait)),
687
+ var(--p-font-size-max-mobile, 180px)
688
+ );
689
+ }
690
+
691
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
692
+ font-size: clamp(
693
+ var(--p-font-size-min-desktop, 10px),
694
+ core-functions-v3.fontSize(var(--p-landscape)),
695
+ var(--p-font-size-max-desktop, 180px)
696
+ );
697
+ }
698
+
699
+ @include core-mixins-v3.device(breakpoints.$desktop) {
700
+ @include p-size();
701
+ }
702
+ }
703
+ @mixin p-s-size {
704
+ font-size: clamp(
705
+ var(--p-s-font-size-min-desktop, 10px),
706
+ core-functions-v3.fontSize(var(--p-s-desktop)),
707
+ var(--p-s-font-size-max-desktop, 180px)
708
+ );
709
+ }
710
+ @mixin p-s {
711
+ line-height: var(--paragraph-line-height);
712
+ letter-spacing: var(--paragraph-letter-spacing);
713
+ font-family: var(--paragraph-font-family);
714
+
715
+ strong,
716
+ b {
717
+ font-weight: var(--paragraph-bold-font-weight);
718
+ }
719
+
720
+ &:has(.font-tertiary) {
721
+ line-height: calc(
722
+ var(--paragraph-line-height) *
723
+ var(--global-line-height-multiplier-tertiary)
724
+ );
725
+ }
726
+
727
+ em {
728
+ font-style: italic;
729
+ }
730
+
731
+ font-size: clamp(
732
+ var(--p-s-font-size-min-mobile, 10px),
733
+ core-functions-v3.fontSize(var(--p-s-mobile), 'mobile'),
734
+ var(--p-s-font-size-max-mobile, 180px)
735
+ );
736
+
737
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
738
+ font-size: clamp(
739
+ var(--p-s-font-size-min-mobile, 10px),
740
+ core-functions-v3.fontSize(var(--p-s-portrait), 'portrait'),
741
+ var(--p-s-font-size-max-mobile, 180px)
742
+ );
743
+ }
744
+
745
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
746
+ font-size: clamp(
747
+ var(--p-s-font-size-min-desktop, 10px),
748
+ core-functions-v3.fontSize(var(--p-s-landscape), 'landscape'),
749
+ var(--p-s-font-size-max-desktop, 180px)
750
+ );
751
+ }
752
+
753
+ @include core-mixins-v3.device(breakpoints.$desktop) {
754
+ @include p-s-size();
755
+ }
756
+ }
757
+ @mixin p-xs-size {
758
+ font-size: clamp(
759
+ var(--p-xs-font-size-min-desktop, 10px),
760
+ core-functions-v3.fontSize(var(--p-xs-desktop)),
761
+ var(--p-xs-font-size-max-desktop, 180px)
762
+ );
763
+ }
764
+ @mixin p-xs {
765
+ line-height: var(--paragraph-line-height);
766
+ letter-spacing: var(--paragraph-letter-spacing);
767
+ font-family: var(--paragraph-font-family);
768
+
769
+ strong,
770
+ b {
771
+ font-weight: var(--paragraph-bold-font-weight);
772
+ }
773
+
774
+ &:has(.font-tertiary) {
775
+ line-height: calc(
776
+ var(--paragraph-line-height) *
777
+ var(--global-line-height-multiplier-tertiary)
778
+ );
779
+ }
780
+
781
+ em {
782
+ font-style: italic;
783
+ }
784
+
785
+ font-size: clamp(
786
+ var(--p-xs-font-size-min-mobile, 10px),
787
+ core-functions-v3.fontSize(var(--p-xs-mobile)),
788
+ var(--p-xs-font-size-max-mobile, 180px)
789
+ );
790
+
791
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
792
+ font-size: clamp(
793
+ var(--p-xs-font-size-min-mobile, 10px),
794
+ core-functions-v3.fontSize(var(--p-xs-portrait)),
795
+ var(--p-xs-font-size-max-mobile, 180px)
796
+ );
797
+ }
798
+
799
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
800
+ font-size: clamp(
801
+ var(--p-xs-font-size-min-desktop, 10px),
802
+ core-functions-v3.fontSize(var(--p-xs-landscape)),
803
+ var(--p-xs-font-size-max-desktop, 180px)
804
+ );
805
+ }
806
+
807
+ @include core-mixins-v3.device(breakpoints.$desktop) {
808
+ @include p-xs-size();
809
+ }
810
+ }
811
+ @mixin p-xs-size {
812
+ font-size: clamp(
813
+ var(--p-xs-font-size-min-desktop, 10px),
814
+ core-functions-v3.fontSize(var(--p-xs-desktop)),
815
+ var(--p-xs-font-size-max-desktop, 180px)
816
+ );
817
+ }
818
+ @mixin p-xs {
819
+ line-height: var(--paragraph-line-height);
820
+ letter-spacing: var(--paragraph-letter-spacing);
821
+ font-family: var(--paragraph-font-family);
822
+
823
+ strong,
824
+ b {
825
+ font-weight: var(--paragraph-bold-font-weight);
826
+ }
827
+
828
+ &:has(.font-tertiary) {
829
+ line-height: calc(
830
+ var(--paragraph-line-height) *
831
+ var(--global-line-height-multiplier-tertiary)
832
+ );
833
+ }
834
+
835
+ em {
836
+ font-style: italic;
837
+ }
838
+
839
+ font-size: clamp(
840
+ var(--p-xs-font-size-min-mobile, 10px),
841
+ core-functions-v3.fontSize(var(--p-xs-mobile)),
842
+ var(--p-xs-font-size-max-mobile, 180px)
843
+ );
844
+
845
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
846
+ font-size: clamp(
847
+ var(--p-xs-font-size-min-mobile, 10px),
848
+ core-functions-v3.fontSize(var(--p-xs-portrait)),
849
+ var(--p-xs-font-size-max-mobile, 180px)
850
+ );
851
+ }
852
+
853
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
854
+ font-size: clamp(
855
+ var(--p-xs-font-size-min-desktop, 10px),
856
+ core-functions-v3.fontSize(var(--p-xs-landscape)),
857
+ var(--p-xs-font-size-max-desktop, 180px)
858
+ );
859
+ }
860
+
861
+ @include core-mixins-v3.device(breakpoints.$desktop) {
862
+ @include p-xs-size();
863
+ }
864
+ }
865
+ @mixin p-xxs-size {
866
+ font-size: clamp(
867
+ var(--p-xxs-font-size-min-desktop, 10px),
868
+ core-functions-v3.fontSize(var(--p-xxs-desktop)),
869
+ var(--p-xxs-font-size-max-desktop, 180px)
870
+ );
871
+ }
872
+ @mixin p-xxs {
873
+ line-height: var(--paragraph-line-height);
874
+ letter-spacing: var(--paragraph-letter-spacing);
875
+ font-family: var(--paragraph-font-family);
876
+
877
+ strong,
878
+ b {
879
+ font-weight: var(--paragraph-bold-font-weight);
880
+ }
881
+
882
+ &:has(.font-tertiary) {
883
+ line-height: calc(
884
+ var(--paragraph-line-height) *
885
+ var(--global-line-height-multiplier-tertiary)
886
+ );
887
+ }
888
+
889
+ em {
890
+ font-style: italic;
891
+ }
892
+
893
+ font-size: clamp(
894
+ var(--p-xxs-font-size-min-mobile, 10px),
895
+ core-functions-v3.fontSize(var(--p-xxs-mobile)),
896
+ var(--p-xxs-font-size-max-mobile, 180px)
897
+ );
898
+
899
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
900
+ font-size: clamp(
901
+ var(--p-xxs-font-size-min-mobile, 10px),
902
+ core-functions-v3.fontSize(var(--p-xxs-portrait)),
903
+ var(--p-xxs-font-size-max-mobile, 180px)
904
+ );
905
+ }
906
+
907
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
908
+ font-size: clamp(
909
+ var(--p-xxs-font-size-min-desktop, 10px),
910
+ core-functions-v3.fontSize(var(--p-xxs-landscape)),
911
+ var(--p-xxs-font-size-max-desktop, 180px)
912
+ );
913
+ }
914
+
915
+ @include core-mixins-v3.device(breakpoints.$desktop) {
916
+ @include p-xxs-size();
917
+ }
918
+ }
919
+ @mixin p-xxxs-size {
920
+ font-size: clamp(
921
+ var(--p-xxxs-font-size-min-desktop, 10px),
922
+ core-functions-v3.fontSize(var(--p-xxxs-desktop)),
923
+ var(--p-xxxs-font-size-max-desktop, 180px)
924
+ );
925
+ }
926
+ @mixin p-xxxs {
927
+ line-height: var(--paragraph-line-height);
928
+ letter-spacing: var(--paragraph-letter-spacing);
929
+ font-family: var(--paragraph-font-family);
930
+
931
+ strong,
932
+ b {
933
+ font-weight: var(--paragraph-bold-font-weight);
934
+ }
935
+
936
+ &:has(.font-tertiary) {
937
+ line-height: calc(
938
+ var(--paragraph-line-height) *
939
+ var(--global-line-height-multiplier-tertiary)
940
+ );
941
+ }
942
+
943
+ em {
944
+ font-style: italic;
945
+ }
946
+
947
+ font-size: clamp(
948
+ var(--p-xxxs-font-size-min-mobile, 10px),
949
+ core-functions-v3.fontSize(var(--p-xxxs-mobile)),
950
+ var(--p-xxxs-font-size-max-mobile, 180px)
951
+ );
952
+
953
+ @include core-mixins-v3.device(breakpoints.$tabPortrait) {
954
+ font-size: clamp(
955
+ var(--p-xxxs-font-size-min-mobile, 10px),
956
+ core-functions-v3.fontSize(var(--p-xxxs-portrait)),
957
+ var(--p-xxxs-font-size-max-mobile, 180px)
958
+ );
959
+ }
960
+
961
+ @include core-mixins-v3.device(breakpoints.$tabLandscape) {
962
+ font-size: clamp(
963
+ var(--p-xxxs-font-size-min-desktop, 10px),
964
+ core-functions-v3.fontSize(var(--p-xxxs-landscape)),
965
+ var(--p-xxxs-font-size-max-desktop, 180px)
966
+ );
967
+ }
968
+
969
+ @include core-mixins-v3.device(breakpoints.$desktop) {
970
+ @include p-xxxs-size();
971
+ }
972
+ }
973
+ @mixin fontPrimary() {
974
+ font-family: var(--primary-font-family), sans-serif;
975
+ --font-size-multiplier: var(--global-font-multiplier-primary);
976
+ }
977
+ @mixin fontSecondary() {
978
+ font-family: var(--secondary-font-family), sans-serif;
979
+ --font-size-multiplier: var(--global-font-multiplier-secondary);
980
+ }
981
+ @mixin fontTertiary() {
982
+ font-family: var(--tertiary-font-family), sans-serif;
983
+ --font-size-multiplier: var(--global-font-multiplier-tertiary);
984
+ }
985
+ @mixin fontQuaternary() {
986
+ font-family: var(--quaternary-font-family), sans-serif;
987
+ --font-size-multiplier: var(--global-font-multiplier-quaternary);
988
+ }