@baloise/ds-styles 0.0.5-nightly.20240301

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