@baloise/ds-styles 0.0.5-nightly.e56f740

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 (117) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +45 -0
  3. package/bin/index.mjs +1333 -0
  4. package/css/all.css +18468 -0
  5. package/css/all.css.map +1 -0
  6. package/css/all.min.css +1 -0
  7. package/css/baloise-design-system.css +18468 -0
  8. package/css/baloise-design-system.css.map +1 -0
  9. package/css/baloise-design-system.min.css +1 -0
  10. package/css/core.css +4423 -0
  11. package/css/core.css.map +1 -0
  12. package/css/core.min.css +1 -0
  13. package/css/font.css +29 -0
  14. package/css/font.css.map +1 -0
  15. package/css/font.min.css +1 -0
  16. package/css/mixins.css +2 -0
  17. package/css/mixins.css.map +1 -0
  18. package/css/mixins.min.css +0 -0
  19. package/css/normalize.css +351 -0
  20. package/css/normalize.css.map +1 -0
  21. package/css/normalize.min.css +1 -0
  22. package/css/structure.css +147 -0
  23. package/css/structure.css.map +1 -0
  24. package/css/structure.min.css +1 -0
  25. package/css/themes/compact.css +30 -0
  26. package/css/themes/compact.css.map +1 -0
  27. package/css/themes/compact.min.css +1 -0
  28. package/css/utilities/all.css +13112 -0
  29. package/css/utilities/all.css.map +1 -0
  30. package/css/utilities/all.min.css +1 -0
  31. package/css/utilities/background.css +1460 -0
  32. package/css/utilities/background.css.map +1 -0
  33. package/css/utilities/background.min.css +1 -0
  34. package/css/utilities/border.css +4697 -0
  35. package/css/utilities/border.css.map +1 -0
  36. package/css/utilities/border.min.css +1 -0
  37. package/css/utilities/elevation.css +317 -0
  38. package/css/utilities/elevation.css.map +1 -0
  39. package/css/utilities/elevation.min.css +1 -0
  40. package/css/utilities/flex.css +969 -0
  41. package/css/utilities/flex.css.map +1 -0
  42. package/css/utilities/flex.min.css +1 -0
  43. package/css/utilities/grid.css +1209 -0
  44. package/css/utilities/grid.css.map +1 -0
  45. package/css/utilities/grid.min.css +1 -0
  46. package/css/utilities/interaction.css +44 -0
  47. package/css/utilities/interaction.css.map +1 -0
  48. package/css/utilities/interaction.min.css +1 -0
  49. package/css/utilities/layout.css +1055 -0
  50. package/css/utilities/layout.css.map +1 -0
  51. package/css/utilities/layout.min.css +1 -0
  52. package/css/utilities/sizing.css +1931 -0
  53. package/css/utilities/sizing.css.map +1 -0
  54. package/css/utilities/sizing.min.css +1 -0
  55. package/css/utilities/spacing.css +1881 -0
  56. package/css/utilities/spacing.css.map +1 -0
  57. package/css/utilities/spacing.min.css +1 -0
  58. package/css/utilities/typography.css +763 -0
  59. package/css/utilities/typography.css.map +1 -0
  60. package/css/utilities/typography.min.css +1 -0
  61. package/package.json +36 -0
  62. package/sass/all.sass +6 -0
  63. package/sass/baloise-design-system.sass +1 -0
  64. package/sass/core.sass +37 -0
  65. package/sass/font.sass +1 -0
  66. package/sass/mixins.sass +3 -0
  67. package/sass/normalize.sass +359 -0
  68. package/sass/structure.sass +113 -0
  69. package/sass/themes/compact.sass +28 -0
  70. package/sass/utilities/all.sass +9 -0
  71. package/sass/utilities/background.sass +5 -0
  72. package/sass/utilities/border.sass +2 -0
  73. package/sass/utilities/elevation.sass +2 -0
  74. package/sass/utilities/flex.sass +2 -0
  75. package/sass/utilities/grid.sass +2 -0
  76. package/sass/utilities/interaction.sass +2 -0
  77. package/sass/utilities/layout.sass +12 -0
  78. package/sass/utilities/sizing.sass +2 -0
  79. package/sass/utilities/spacing.sass +2 -0
  80. package/sass/utilities/typography.sass +127 -0
  81. package/src/core/_all.sass +18 -0
  82. package/src/core/container.sass +23 -0
  83. package/src/core/form/_all.sass +6 -0
  84. package/src/core/form/button.sass +532 -0
  85. package/src/core/form/file.sass +139 -0
  86. package/src/core/form/input-textarea.sass +80 -0
  87. package/src/core/form/select.sass +111 -0
  88. package/src/core/form/shared.sass +69 -0
  89. package/src/core/form/tools.sass +209 -0
  90. package/src/core/grid.sass +477 -0
  91. package/src/core/link.sass +64 -0
  92. package/src/core/list.sass +85 -0
  93. package/src/core/table.sass +134 -0
  94. package/src/core/typography.sass +33 -0
  95. package/src/core/vars/_all.sass +7 -0
  96. package/src/core/vars/button.vars.sass +282 -0
  97. package/src/core/vars/form.vars.sass +137 -0
  98. package/src/core/vars/link.vars.sass +36 -0
  99. package/src/core/vars/list.vars.sass +20 -0
  100. package/src/core/vars/structure.vars.sass +47 -0
  101. package/src/core/vars/table.vars.sass +55 -0
  102. package/src/core/vars/typography.vars.sass +12 -0
  103. package/src/generated/background.sass +1091 -0
  104. package/src/generated/border.sass +3943 -0
  105. package/src/generated/elevation.sass +283 -0
  106. package/src/generated/flex.sass +831 -0
  107. package/src/generated/interaction.sass +26 -0
  108. package/src/generated/layout.sass +948 -0
  109. package/src/generated/sizing.sass +1703 -0
  110. package/src/generated/spacing.sass +1683 -0
  111. package/src/generated/typography.sass +453 -0
  112. package/src/mixins/_all.sass +7 -0
  113. package/src/mixins/bem.mixin.sass +39 -0
  114. package/src/mixins/breakpoint.mixin.sass +67 -0
  115. package/src/mixins/extends.sass +32 -0
  116. package/src/mixins/general.mixin.sass +95 -0
  117. package/src/mixins/svg.mixin.sass +6 -0
@@ -0,0 +1,763 @@
1
+ .text-primary {
2
+ color: var(--bal-color-text-primary) !important;
3
+ }
4
+
5
+ .text-primary-light {
6
+ color: var(--bal-color-text-primary-light) !important;
7
+ }
8
+
9
+ .text-white {
10
+ color: var(--bal-color-text-white) !important;
11
+ }
12
+
13
+ .text-grey-light {
14
+ color: var(--bal-color-text-grey-light) !important;
15
+ }
16
+
17
+ .text-grey {
18
+ color: var(--bal-color-text-grey) !important;
19
+ }
20
+
21
+ .text-grey-dark {
22
+ color: var(--bal-color-text-grey-dark) !important;
23
+ }
24
+
25
+ .text-info {
26
+ color: var(--bal-color-text-info) !important;
27
+ }
28
+
29
+ .text-warning {
30
+ color: var(--bal-color-text-warning) !important;
31
+ }
32
+
33
+ .text-success {
34
+ color: var(--bal-color-text-success) !important;
35
+ }
36
+
37
+ .text-danger {
38
+ color: var(--bal-color-text-danger) !important;
39
+ }
40
+
41
+ .text-black {
42
+ color: var(--bal-color-text-black) !important;
43
+ }
44
+
45
+ .text-primary-hovered {
46
+ color: var(--bal-color-text-primary-hovered) !important;
47
+ }
48
+
49
+ .text-primary-pressed {
50
+ color: var(--bal-color-text-primary-pressed) !important;
51
+ }
52
+
53
+ .text-danger-hovered {
54
+ color: var(--bal-color-text-danger-hovered) !important;
55
+ }
56
+
57
+ .text-danger-pressed {
58
+ color: var(--bal-color-text-danger-pressed) !important;
59
+ }
60
+
61
+ .text-inverted {
62
+ color: var(--bal-color-text-inverted) !important;
63
+ }
64
+
65
+ .text-inverted-disabled {
66
+ color: var(--bal-color-text-inverted-disabled) !important;
67
+ }
68
+
69
+ .text-inverted-hovered {
70
+ color: var(--bal-color-text-inverted-hovered) !important;
71
+ }
72
+
73
+ .text-inverted-pressed {
74
+ color: var(--bal-color-text-inverted-pressed) !important;
75
+ }
76
+
77
+ .focus\:text-primary:focus {
78
+ color: var(--bal-color-text-primary) !important;
79
+ }
80
+
81
+ .hover\:text-primary:hover {
82
+ color: var(--bal-color-text-primary) !important;
83
+ }
84
+
85
+ .active\:text-primary:active {
86
+ color: var(--bal-color-text-primary) !important;
87
+ }
88
+
89
+ .focus\:text-primary-light:focus {
90
+ color: var(--bal-color-text-primary-light) !important;
91
+ }
92
+
93
+ .hover\:text-primary-light:hover {
94
+ color: var(--bal-color-text-primary-light) !important;
95
+ }
96
+
97
+ .active\:text-primary-light:active {
98
+ color: var(--bal-color-text-primary-light) !important;
99
+ }
100
+
101
+ .focus\:text-white:focus {
102
+ color: var(--bal-color-text-white) !important;
103
+ }
104
+
105
+ .hover\:text-white:hover {
106
+ color: var(--bal-color-text-white) !important;
107
+ }
108
+
109
+ .active\:text-white:active {
110
+ color: var(--bal-color-text-white) !important;
111
+ }
112
+
113
+ .focus\:text-grey-light:focus {
114
+ color: var(--bal-color-text-grey-light) !important;
115
+ }
116
+
117
+ .hover\:text-grey-light:hover {
118
+ color: var(--bal-color-text-grey-light) !important;
119
+ }
120
+
121
+ .active\:text-grey-light:active {
122
+ color: var(--bal-color-text-grey-light) !important;
123
+ }
124
+
125
+ .focus\:text-grey:focus {
126
+ color: var(--bal-color-text-grey) !important;
127
+ }
128
+
129
+ .hover\:text-grey:hover {
130
+ color: var(--bal-color-text-grey) !important;
131
+ }
132
+
133
+ .active\:text-grey:active {
134
+ color: var(--bal-color-text-grey) !important;
135
+ }
136
+
137
+ .focus\:text-grey-dark:focus {
138
+ color: var(--bal-color-text-grey-dark) !important;
139
+ }
140
+
141
+ .hover\:text-grey-dark:hover {
142
+ color: var(--bal-color-text-grey-dark) !important;
143
+ }
144
+
145
+ .active\:text-grey-dark:active {
146
+ color: var(--bal-color-text-grey-dark) !important;
147
+ }
148
+
149
+ .focus\:text-info:focus {
150
+ color: var(--bal-color-text-info) !important;
151
+ }
152
+
153
+ .hover\:text-info:hover {
154
+ color: var(--bal-color-text-info) !important;
155
+ }
156
+
157
+ .active\:text-info:active {
158
+ color: var(--bal-color-text-info) !important;
159
+ }
160
+
161
+ .focus\:text-warning:focus {
162
+ color: var(--bal-color-text-warning) !important;
163
+ }
164
+
165
+ .hover\:text-warning:hover {
166
+ color: var(--bal-color-text-warning) !important;
167
+ }
168
+
169
+ .active\:text-warning:active {
170
+ color: var(--bal-color-text-warning) !important;
171
+ }
172
+
173
+ .focus\:text-success:focus {
174
+ color: var(--bal-color-text-success) !important;
175
+ }
176
+
177
+ .hover\:text-success:hover {
178
+ color: var(--bal-color-text-success) !important;
179
+ }
180
+
181
+ .active\:text-success:active {
182
+ color: var(--bal-color-text-success) !important;
183
+ }
184
+
185
+ .focus\:text-danger:focus {
186
+ color: var(--bal-color-text-danger) !important;
187
+ }
188
+
189
+ .hover\:text-danger:hover {
190
+ color: var(--bal-color-text-danger) !important;
191
+ }
192
+
193
+ .active\:text-danger:active {
194
+ color: var(--bal-color-text-danger) !important;
195
+ }
196
+
197
+ .focus\:text-black:focus {
198
+ color: var(--bal-color-text-black) !important;
199
+ }
200
+
201
+ .hover\:text-black:hover {
202
+ color: var(--bal-color-text-black) !important;
203
+ }
204
+
205
+ .active\:text-black:active {
206
+ color: var(--bal-color-text-black) !important;
207
+ }
208
+
209
+ .focus\:text-primary-hovered:focus {
210
+ color: var(--bal-color-text-primary-hovered) !important;
211
+ }
212
+
213
+ .hover\:text-primary-hovered:hover {
214
+ color: var(--bal-color-text-primary-hovered) !important;
215
+ }
216
+
217
+ .active\:text-primary-hovered:active {
218
+ color: var(--bal-color-text-primary-hovered) !important;
219
+ }
220
+
221
+ .focus\:text-primary-pressed:focus {
222
+ color: var(--bal-color-text-primary-pressed) !important;
223
+ }
224
+
225
+ .hover\:text-primary-pressed:hover {
226
+ color: var(--bal-color-text-primary-pressed) !important;
227
+ }
228
+
229
+ .active\:text-primary-pressed:active {
230
+ color: var(--bal-color-text-primary-pressed) !important;
231
+ }
232
+
233
+ .focus\:text-danger-hovered:focus {
234
+ color: var(--bal-color-text-danger-hovered) !important;
235
+ }
236
+
237
+ .hover\:text-danger-hovered:hover {
238
+ color: var(--bal-color-text-danger-hovered) !important;
239
+ }
240
+
241
+ .active\:text-danger-hovered:active {
242
+ color: var(--bal-color-text-danger-hovered) !important;
243
+ }
244
+
245
+ .focus\:text-danger-pressed:focus {
246
+ color: var(--bal-color-text-danger-pressed) !important;
247
+ }
248
+
249
+ .hover\:text-danger-pressed:hover {
250
+ color: var(--bal-color-text-danger-pressed) !important;
251
+ }
252
+
253
+ .active\:text-danger-pressed:active {
254
+ color: var(--bal-color-text-danger-pressed) !important;
255
+ }
256
+
257
+ .focus\:text-inverted:focus {
258
+ color: var(--bal-color-text-inverted) !important;
259
+ }
260
+
261
+ .hover\:text-inverted:hover {
262
+ color: var(--bal-color-text-inverted) !important;
263
+ }
264
+
265
+ .active\:text-inverted:active {
266
+ color: var(--bal-color-text-inverted) !important;
267
+ }
268
+
269
+ .focus\:text-inverted-disabled:focus {
270
+ color: var(--bal-color-text-inverted-disabled) !important;
271
+ }
272
+
273
+ .hover\:text-inverted-disabled:hover {
274
+ color: var(--bal-color-text-inverted-disabled) !important;
275
+ }
276
+
277
+ .active\:text-inverted-disabled:active {
278
+ color: var(--bal-color-text-inverted-disabled) !important;
279
+ }
280
+
281
+ .focus\:text-inverted-hovered:focus {
282
+ color: var(--bal-color-text-inverted-hovered) !important;
283
+ }
284
+
285
+ .hover\:text-inverted-hovered:hover {
286
+ color: var(--bal-color-text-inverted-hovered) !important;
287
+ }
288
+
289
+ .active\:text-inverted-hovered:active {
290
+ color: var(--bal-color-text-inverted-hovered) !important;
291
+ }
292
+
293
+ .focus\:text-inverted-pressed:focus {
294
+ color: var(--bal-color-text-inverted-pressed) !important;
295
+ }
296
+
297
+ .hover\:text-inverted-pressed:hover {
298
+ color: var(--bal-color-text-inverted-pressed) !important;
299
+ }
300
+
301
+ .active\:text-inverted-pressed:active {
302
+ color: var(--bal-color-text-inverted-pressed) !important;
303
+ }
304
+
305
+ .font-family-title {
306
+ font-family: var(--bal-font-family-title) !important;
307
+ }
308
+
309
+ .font-family-text {
310
+ font-family: var(--bal-font-family-text) !important;
311
+ }
312
+
313
+ .text-x-small {
314
+ font-size: var(--bal-text-size-x-small) !important;
315
+ }
316
+
317
+ .text-small {
318
+ font-size: var(--bal-text-size-small) !important;
319
+ }
320
+
321
+ .text-normal {
322
+ font-size: var(--bal-text-size-normal) !important;
323
+ }
324
+
325
+ .text-medium {
326
+ font-size: var(--bal-text-size-medium) !important;
327
+ }
328
+
329
+ .text-large {
330
+ font-size: var(--bal-text-size-large) !important;
331
+ }
332
+
333
+ .text-x-large {
334
+ font-size: var(--bal-text-size-x-large) !important;
335
+ }
336
+
337
+ .text-xx-large {
338
+ font-size: var(--bal-text-size-xx-large) !important;
339
+ }
340
+
341
+ .text-xxx-large {
342
+ font-size: var(--bal-text-size-xxx-large) !important;
343
+ }
344
+
345
+ .text-xxxx-large {
346
+ font-size: var(--bal-text-size-xxxx-large) !important;
347
+ }
348
+
349
+ .text-xxxxx-large {
350
+ font-size: var(--bal-text-size-xxxxx-large) !important;
351
+ }
352
+
353
+ @media screen and (min-width: 769px), print {
354
+ .text-x-small {
355
+ font-size: var(--bal-text-size-x-small-tablet) !important;
356
+ }
357
+ .text-small {
358
+ font-size: var(--bal-text-size-small-tablet) !important;
359
+ }
360
+ .text-normal {
361
+ font-size: var(--bal-text-size-normal-tablet) !important;
362
+ }
363
+ .text-medium {
364
+ font-size: var(--bal-text-size-medium-tablet) !important;
365
+ }
366
+ .text-large {
367
+ font-size: var(--bal-text-size-large-tablet) !important;
368
+ }
369
+ .text-x-large {
370
+ font-size: var(--bal-text-size-x-large-tablet) !important;
371
+ }
372
+ .text-xx-large {
373
+ font-size: var(--bal-text-size-xx-large-tablet) !important;
374
+ }
375
+ .text-xxx-large {
376
+ font-size: var(--bal-text-size-xxx-large-tablet) !important;
377
+ }
378
+ .text-xxxx-large {
379
+ font-size: var(--bal-text-size-xxxx-large-tablet) !important;
380
+ }
381
+ .text-xxxxx-large {
382
+ font-size: var(--bal-text-size-xxxxx-large-tablet) !important;
383
+ }
384
+ }
385
+ @media screen and (min-width: 1024px) {
386
+ .text-x-small {
387
+ font-size: var(--bal-text-size-x-small-desktop) !important;
388
+ }
389
+ .text-small {
390
+ font-size: var(--bal-text-size-small-desktop) !important;
391
+ }
392
+ .text-normal {
393
+ font-size: var(--bal-text-size-normal-desktop) !important;
394
+ }
395
+ .text-medium {
396
+ font-size: var(--bal-text-size-medium-desktop) !important;
397
+ }
398
+ .text-large {
399
+ font-size: var(--bal-text-size-large-desktop) !important;
400
+ }
401
+ .text-x-large {
402
+ font-size: var(--bal-text-size-x-large-desktop) !important;
403
+ }
404
+ .text-xx-large {
405
+ font-size: var(--bal-text-size-xx-large-desktop) !important;
406
+ }
407
+ .text-xxx-large {
408
+ font-size: var(--bal-text-size-xxx-large-desktop) !important;
409
+ }
410
+ .text-xxxx-large {
411
+ font-size: var(--bal-text-size-xxxx-large-desktop) !important;
412
+ }
413
+ .text-xxxxx-large {
414
+ font-size: var(--bal-text-size-xxxxx-large-desktop) !important;
415
+ }
416
+ }
417
+ .text-align-center {
418
+ text-align: center !important;
419
+ }
420
+
421
+ .text-align-left {
422
+ text-align: left !important;
423
+ }
424
+
425
+ .text-align-right {
426
+ text-align: right !important;
427
+ }
428
+
429
+ .text-align-justify {
430
+ text-align: justify !important;
431
+ }
432
+
433
+ @media screen and (max-width: 768px) {
434
+ .mobile\:text-align-center {
435
+ text-align: center !important;
436
+ }
437
+ .mobile\:text-align-left {
438
+ text-align: left !important;
439
+ }
440
+ .mobile\:text-align-right {
441
+ text-align: right !important;
442
+ }
443
+ .mobile\:text-align-justify {
444
+ text-align: justify !important;
445
+ }
446
+ }
447
+ @media screen and (min-width: 769px), print {
448
+ .tablet\:text-align-center {
449
+ text-align: center !important;
450
+ }
451
+ .tablet\:text-align-left {
452
+ text-align: left !important;
453
+ }
454
+ .tablet\:text-align-right {
455
+ text-align: right !important;
456
+ }
457
+ .tablet\:text-align-justify {
458
+ text-align: justify !important;
459
+ }
460
+ }
461
+ @media screen and (min-width: 1024px) {
462
+ .desktop\:text-align-center {
463
+ text-align: center !important;
464
+ }
465
+ .desktop\:text-align-left {
466
+ text-align: left !important;
467
+ }
468
+ .desktop\:text-align-right {
469
+ text-align: right !important;
470
+ }
471
+ .desktop\:text-align-justify {
472
+ text-align: justify !important;
473
+ }
474
+ }
475
+ @media screen and (min-width: 1440px) {
476
+ .widescreen\:text-align-center {
477
+ text-align: center !important;
478
+ }
479
+ .widescreen\:text-align-left {
480
+ text-align: left !important;
481
+ }
482
+ .widescreen\:text-align-right {
483
+ text-align: right !important;
484
+ }
485
+ .widescreen\:text-align-justify {
486
+ text-align: justify !important;
487
+ }
488
+ }
489
+ .lowercase {
490
+ text-transform: lowercase !important;
491
+ }
492
+
493
+ .uppercase {
494
+ text-transform: uppercase !important;
495
+ }
496
+
497
+ .capitalize {
498
+ text-transform: capitalize !important;
499
+ }
500
+
501
+ .font-weight-bold {
502
+ font-weight: var(--bal-font-weight-bold) !important;
503
+ }
504
+
505
+ .font-weight-regular {
506
+ font-weight: var(--bal-font-weight-regular) !important;
507
+ }
508
+
509
+ .font-weight-light {
510
+ font-weight: var(--bal-font-weight-light) !important;
511
+ }
512
+
513
+ .white-space-normal {
514
+ white-space: normal !important;
515
+ }
516
+
517
+ .white-space-nowrap {
518
+ white-space: nowrap !important;
519
+ }
520
+
521
+ .line-height-title {
522
+ line-height: var(--bal-text-line-height-title) !important;
523
+ }
524
+
525
+ .line-height-text {
526
+ line-height: var(--bal-text-line-height-text) !important;
527
+ }
528
+
529
+ .text-overflow-clip {
530
+ text-overflow: clip !important;
531
+ }
532
+
533
+ .text-overflow-ellipsis {
534
+ text-overflow: ellipsis !important;
535
+ }
536
+
537
+ @media screen and (max-width: 768px) {
538
+ .mobile\:text-overflow-clip {
539
+ text-overflow: clip !important;
540
+ }
541
+ .mobile\:text-overflow-ellipsis {
542
+ text-overflow: ellipsis !important;
543
+ }
544
+ }
545
+ @media screen and (min-width: 769px), print {
546
+ .tablet\:text-overflow-clip {
547
+ text-overflow: clip !important;
548
+ }
549
+ .tablet\:text-overflow-ellipsis {
550
+ text-overflow: ellipsis !important;
551
+ }
552
+ }
553
+ @media screen and (min-width: 1024px) {
554
+ .desktop\:text-overflow-clip {
555
+ text-overflow: clip !important;
556
+ }
557
+ .desktop\:text-overflow-ellipsis {
558
+ text-overflow: ellipsis !important;
559
+ }
560
+ }
561
+ @media screen and (min-width: 1440px) {
562
+ .widescreen\:text-overflow-clip {
563
+ text-overflow: clip !important;
564
+ }
565
+ .widescreen\:text-overflow-ellipsis {
566
+ text-overflow: ellipsis !important;
567
+ }
568
+ }
569
+ .text-xxxxx-large {
570
+ line-height: var(--bal-line-height-xxxxx-large);
571
+ }
572
+ .text-xxxxx-large:not(:last-child) {
573
+ margin-bottom: var(--bal-space-normal);
574
+ }
575
+
576
+ .text-xxxx-large {
577
+ line-height: var(--bal-line-height-xxxx-large);
578
+ }
579
+ .text-xxxx-large:not(:last-child) {
580
+ margin-bottom: var(--bal-space-x-small);
581
+ }
582
+
583
+ .text-xxx-large {
584
+ line-height: var(--bal-line-height-xxx-large);
585
+ }
586
+ .text-xxx-large:not(:last-child) {
587
+ margin-bottom: var(--bal-space-x-small);
588
+ }
589
+
590
+ .text-xx-large {
591
+ line-height: var(--bal-line-height-xx-large);
592
+ }
593
+ .text-xx-large:not(:last-child) {
594
+ margin-bottom: var(--bal-space-x-small);
595
+ }
596
+
597
+ .text-x-large {
598
+ line-height: var(--bal-line-height-x-large);
599
+ }
600
+ .text-x-large:not(:last-child) {
601
+ margin-bottom: var(--bal-space-x-small);
602
+ }
603
+
604
+ .text-large {
605
+ line-height: var(--bal-line-height-large);
606
+ }
607
+ .text-large:not(:last-child) {
608
+ margin-bottom: var(--bal-space-x-small);
609
+ }
610
+
611
+ .text-medium {
612
+ line-height: var(--bal-line-height-medium);
613
+ }
614
+ .text-medium:not(:last-child) {
615
+ margin-bottom: var(--bal-space-x-small);
616
+ }
617
+
618
+ .text-normal {
619
+ line-height: var(--bal-line-height-normal);
620
+ }
621
+ .text-normal:not(:last-child) {
622
+ margin-bottom: var(--bal-space-xx-small);
623
+ }
624
+
625
+ .text-small {
626
+ line-height: var(--bal-line-height-small);
627
+ }
628
+ .text-small:not(:last-child) {
629
+ margin-bottom: var(--bal-space-xx-small);
630
+ }
631
+
632
+ .text-x-small {
633
+ line-height: var(--bal-line-height-x-small);
634
+ }
635
+ .text-x-small:not(:last-child) {
636
+ margin-bottom: var(--bal-space-xx-small);
637
+ }
638
+
639
+ @media screen and (min-width: 769px), print {
640
+ .text-xxxxx-large {
641
+ line-height: var(--bal-line-height-tablet-xxxxx-large);
642
+ }
643
+ .text-xxxxx-large:not(:last-child) {
644
+ margin-bottom: var(--bal-space-normal);
645
+ }
646
+ .text-xxxx-large {
647
+ line-height: var(--bal-line-height-tablet-xxxx-large);
648
+ }
649
+ .text-xxxx-large:not(:last-child) {
650
+ margin-bottom: var(--bal-space-x-small);
651
+ }
652
+ .text-xxx-large {
653
+ line-height: var(--bal-line-height-tablet-xxx-large);
654
+ }
655
+ .text-xxx-large:not(:last-child) {
656
+ margin-bottom: var(--bal-space-x-small);
657
+ }
658
+ .text-xx-large {
659
+ line-height: var(--bal-line-height-tablet-xx-large);
660
+ }
661
+ .text-xx-large:not(:last-child) {
662
+ margin-bottom: var(--bal-space-x-small);
663
+ }
664
+ .text-x-large {
665
+ line-height: var(--bal-line-height-tablet-x-large);
666
+ }
667
+ .text-x-large:not(:last-child) {
668
+ margin-bottom: var(--bal-space-x-small);
669
+ }
670
+ .text-large {
671
+ line-height: var(--bal-line-height-tablet-large);
672
+ }
673
+ .text-large:not(:last-child) {
674
+ margin-bottom: var(--bal-space-x-small);
675
+ }
676
+ .text-medium {
677
+ line-height: var(--bal-line-height-tablet-medium);
678
+ }
679
+ .text-medium:not(:last-child) {
680
+ margin-bottom: var(--bal-space-x-small);
681
+ }
682
+ .text-normal {
683
+ line-height: var(--bal-line-height-tablet-normal);
684
+ }
685
+ .text-normal:not(:last-child) {
686
+ margin-bottom: var(--bal-space-xx-small);
687
+ }
688
+ .text-small {
689
+ line-height: var(--bal-line-height-tablet-small);
690
+ }
691
+ .text-small:not(:last-child) {
692
+ margin-bottom: var(--bal-space-xx-small);
693
+ }
694
+ .text-x-small {
695
+ line-height: var(--bal-line-height-tablet-x-small);
696
+ }
697
+ .text-x-small:not(:last-child) {
698
+ margin-bottom: var(--bal-space-xx-small);
699
+ }
700
+ }
701
+ @media screen and (min-width: 1024px) {
702
+ .text-xxxxx-large {
703
+ line-height: var(--bal-line-height-desktop-xxxxx-large);
704
+ }
705
+ .text-xxxxx-large:not(:last-child) {
706
+ margin-bottom: var(--bal-space-normal);
707
+ }
708
+ .text-xxxx-large {
709
+ line-height: var(--bal-line-height-desktop-xxxx-large);
710
+ }
711
+ .text-xxxx-large:not(:last-child) {
712
+ margin-bottom: var(--bal-space-x-small);
713
+ }
714
+ .text-xxx-large {
715
+ line-height: var(--bal-line-height-desktop-xxx-large);
716
+ }
717
+ .text-xxx-large:not(:last-child) {
718
+ margin-bottom: var(--bal-space-x-small);
719
+ }
720
+ .text-xx-large {
721
+ line-height: var(--bal-line-height-desktop-xx-large);
722
+ }
723
+ .text-xx-large:not(:last-child) {
724
+ margin-bottom: var(--bal-space-x-small);
725
+ }
726
+ .text-x-large {
727
+ line-height: var(--bal-line-height-desktop-x-large);
728
+ }
729
+ .text-x-large:not(:last-child) {
730
+ margin-bottom: var(--bal-space-x-small);
731
+ }
732
+ .text-large {
733
+ line-height: var(--bal-line-height-desktop-large);
734
+ }
735
+ .text-large:not(:last-child) {
736
+ margin-bottom: var(--bal-space-x-small);
737
+ }
738
+ .text-medium {
739
+ line-height: var(--bal-line-height-desktop-medium);
740
+ }
741
+ .text-medium:not(:last-child) {
742
+ margin-bottom: var(--bal-space-x-small);
743
+ }
744
+ .text-normal {
745
+ line-height: var(--bal-line-height-desktop-normal);
746
+ }
747
+ .text-normal:not(:last-child) {
748
+ margin-bottom: var(--bal-space-xx-small);
749
+ }
750
+ .text-small {
751
+ line-height: var(--bal-line-height-desktop-small);
752
+ }
753
+ .text-small:not(:last-child) {
754
+ margin-bottom: var(--bal-space-xx-small);
755
+ }
756
+ .text-x-small {
757
+ line-height: var(--bal-line-height-desktop-x-small);
758
+ }
759
+ .text-x-small:not(:last-child) {
760
+ margin-bottom: var(--bal-space-xx-small);
761
+ }
762
+ }
763
+ /*# sourceMappingURL=/utilities/typography.css.map */