@semanticus/semanticus-css 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/LICENSE +21 -0
  2. package/NOTICE +53 -0
  3. package/README.md +151 -0
  4. package/dist/semanticus-semantics.css +2 -0
  5. package/dist/semanticus-utilities.css +7 -0
  6. package/dist/semanticus-variants.css +1 -0
  7. package/dist/semanticus.css +7 -0
  8. package/dist/semanticus.palette.amber.css +1 -0
  9. package/dist/semanticus.palette.blue.css +1 -0
  10. package/dist/semanticus.palette.cyan.css +1 -0
  11. package/dist/semanticus.palette.fuchsia.css +1 -0
  12. package/dist/semanticus.palette.green.css +1 -0
  13. package/dist/semanticus.palette.grey.css +1 -0
  14. package/dist/semanticus.palette.indigo.css +1 -0
  15. package/dist/semanticus.palette.jade.css +1 -0
  16. package/dist/semanticus.palette.lime.css +1 -0
  17. package/dist/semanticus.palette.orange.css +1 -0
  18. package/dist/semanticus.palette.pink.css +1 -0
  19. package/dist/semanticus.palette.pumpkin.css +1 -0
  20. package/dist/semanticus.palette.purple.css +1 -0
  21. package/dist/semanticus.palette.red.css +1 -0
  22. package/dist/semanticus.palette.sand.css +1 -0
  23. package/dist/semanticus.palette.slate.css +1 -0
  24. package/dist/semanticus.palette.violet.css +1 -0
  25. package/dist/semanticus.palette.yellow.css +1 -0
  26. package/dist/semanticus.palette.zinc.css +1 -0
  27. package/dist/semanticus.size.slim.css +1 -0
  28. package/package.json +102 -0
  29. package/src/_normalize.css +214 -0
  30. package/src/_variables.css +863 -0
  31. package/src/index.css +20 -0
  32. package/src/palettes/amber.css +56 -0
  33. package/src/palettes/blue.css +56 -0
  34. package/src/palettes/cyan.css +56 -0
  35. package/src/palettes/fuchsia.css +56 -0
  36. package/src/palettes/green.css +56 -0
  37. package/src/palettes/grey.css +56 -0
  38. package/src/palettes/indigo.css +56 -0
  39. package/src/palettes/jade.css +56 -0
  40. package/src/palettes/lime.css +56 -0
  41. package/src/palettes/orange.css +56 -0
  42. package/src/palettes/pink.css +56 -0
  43. package/src/palettes/pumpkin.css +56 -0
  44. package/src/palettes/purple.css +56 -0
  45. package/src/palettes/red.css +56 -0
  46. package/src/palettes/sand.css +56 -0
  47. package/src/palettes/slate.css +56 -0
  48. package/src/palettes/violet.css +56 -0
  49. package/src/palettes/yellow.css +56 -0
  50. package/src/palettes/zinc.css +56 -0
  51. package/src/semantics/_aria-busy.css +34 -0
  52. package/src/semantics/_article.css +6 -0
  53. package/src/semantics/_body.css +10 -0
  54. package/src/semantics/_button.css +106 -0
  55. package/src/semantics/_code.css +50 -0
  56. package/src/semantics/_details.css +292 -0
  57. package/src/semantics/_dialog.css +163 -0
  58. package/src/semantics/_document.css +18 -0
  59. package/src/semantics/_embedded.css +41 -0
  60. package/src/semantics/_figure.css +13 -0
  61. package/src/semantics/_hidden.css +7 -0
  62. package/src/semantics/_hr.css +10 -0
  63. package/src/semantics/_input.css +306 -0
  64. package/src/semantics/_links.css +33 -0
  65. package/src/semantics/_main.css +3 -0
  66. package/src/semantics/_nav.css +116 -0
  67. package/src/semantics/_progress.css +62 -0
  68. package/src/semantics/_role-group-search.css +129 -0
  69. package/src/semantics/_role-toolbar.css +17 -0
  70. package/src/semantics/_role-tooltip.css +138 -0
  71. package/src/semantics/_section.css +6 -0
  72. package/src/semantics/_table.css +28 -0
  73. package/src/semantics/_type-checkbox-radio.css +142 -0
  74. package/src/semantics/_type-color.css +22 -0
  75. package/src/semantics/_type-date.css +40 -0
  76. package/src/semantics/_type-file.css +26 -0
  77. package/src/semantics/_type-range.css +90 -0
  78. package/src/semantics/_type-search.css +34 -0
  79. package/src/semantics/_typography.css +137 -0
  80. package/src/semantics/index.css +14 -0
  81. package/src/semantics/modules.css +35 -0
  82. package/src/sizes/slim.css +12 -0
  83. package/src/utilities/_variables.css +244 -0
  84. package/src/utilities/borders/_border-radius.css +216 -0
  85. package/src/utilities/borders/_border-style.css +39 -0
  86. package/src/utilities/borders/_border-width.css +39 -0
  87. package/src/utilities/colors/_background-colors.css +209 -0
  88. package/src/utilities/colors/_border-colors.css +69 -0
  89. package/src/utilities/colors/_text-colors.css +371 -0
  90. package/src/utilities/display/_display.css +259 -0
  91. package/src/utilities/display/_overflow.css +47 -0
  92. package/src/utilities/display/_visibility.css +27 -0
  93. package/src/utilities/effects/_opacity.css +19 -0
  94. package/src/utilities/effects/_shadows.css +48 -0
  95. package/src/utilities/effects/_transforms.css +11 -0
  96. package/src/utilities/index.css +14 -0
  97. package/src/utilities/layout/_flexbox.css +846 -0
  98. package/src/utilities/layout/_grid.css +51 -0
  99. package/src/utilities/layout/_misc.css +77 -0
  100. package/src/utilities/media/_object-fit.css +139 -0
  101. package/src/utilities/modules.css +56 -0
  102. package/src/utilities/positioning/_floats.css +72 -0
  103. package/src/utilities/positioning/_inset.css +47 -0
  104. package/src/utilities/positioning/_position.css +108 -0
  105. package/src/utilities/positioning/_z-index.css +19 -0
  106. package/src/utilities/sizing/_height.css +31 -0
  107. package/src/utilities/sizing/_width.css +31 -0
  108. package/src/utilities/spacing/_gap.css +393 -0
  109. package/src/utilities/spacing/_margin.css +1030 -0
  110. package/src/utilities/spacing/_padding.css +885 -0
  111. package/src/utilities/typography/_font-family.css +7 -0
  112. package/src/utilities/typography/_font-sizes.css +38 -0
  113. package/src/utilities/typography/_font-weight.css +51 -0
  114. package/src/utilities/typography/_text-alignment.css +141 -0
  115. package/src/variants/_card.css +41 -0
  116. package/src/variants/_container.css +36 -0
  117. package/src/variants/_contrast.css +50 -0
  118. package/src/variants/_ghost.css +58 -0
  119. package/src/variants/_secondary.css +38 -0
  120. package/src/variants/_striped.css +10 -0
  121. package/src/variants/index.css +6 -0
  122. package/src/variants/modules.css +12 -0
@@ -0,0 +1,846 @@
1
+ .hstack {
2
+ display: flex;
3
+ flex-direction: row;
4
+ align-items: center;
5
+ align-self: stretch;
6
+ }
7
+
8
+ .vstack {
9
+ display: flex;
10
+ flex: 1 1 auto;
11
+ flex-direction: column;
12
+ align-self: stretch;
13
+ }
14
+
15
+ .flex-fill {
16
+ flex: 1 1 auto !important;
17
+ }
18
+
19
+ .flex-row {
20
+ flex-direction: row !important;
21
+ }
22
+
23
+ .flex-column {
24
+ flex-direction: column !important;
25
+ }
26
+
27
+ .flex-row-reverse {
28
+ flex-direction: row-reverse !important;
29
+ }
30
+
31
+ .flex-column-reverse {
32
+ flex-direction: column-reverse !important;
33
+ }
34
+
35
+ .flex-grow-0 {
36
+ flex-grow: 0 !important;
37
+ }
38
+
39
+ .flex-grow-1 {
40
+ flex-grow: 1 !important;
41
+ }
42
+
43
+ .flex-shrink-0 {
44
+ flex-shrink: 0 !important;
45
+ }
46
+
47
+ .flex-shrink-1 {
48
+ flex-shrink: 1 !important;
49
+ }
50
+
51
+ .flex-wrap {
52
+ flex-wrap: wrap !important;
53
+ }
54
+
55
+ .flex-nowrap {
56
+ flex-wrap: nowrap !important;
57
+ }
58
+
59
+ .flex-wrap-reverse {
60
+ flex-wrap: wrap-reverse !important;
61
+ }
62
+
63
+ .justify-content-start {
64
+ justify-content: flex-start !important;
65
+ }
66
+
67
+ .justify-content-end {
68
+ justify-content: flex-end !important;
69
+ }
70
+
71
+ .justify-content-center {
72
+ justify-content: center !important;
73
+ }
74
+
75
+ .justify-content-between {
76
+ justify-content: space-between !important;
77
+ }
78
+
79
+ .justify-content-around {
80
+ justify-content: space-around !important;
81
+ }
82
+
83
+ .justify-content-evenly {
84
+ justify-content: space-evenly !important;
85
+ }
86
+
87
+ .align-items-start {
88
+ align-items: flex-start !important;
89
+ }
90
+
91
+ .align-items-end {
92
+ align-items: flex-end !important;
93
+ }
94
+
95
+ .align-items-center {
96
+ align-items: center !important;
97
+ }
98
+
99
+ .align-items-baseline {
100
+ align-items: baseline !important;
101
+ }
102
+
103
+ .align-items-stretch {
104
+ align-items: stretch !important;
105
+ }
106
+
107
+ .align-content-start {
108
+ align-content: flex-start !important;
109
+ }
110
+
111
+ .align-content-end {
112
+ align-content: flex-end !important;
113
+ }
114
+
115
+ .align-content-center {
116
+ align-content: center !important;
117
+ }
118
+
119
+ .align-content-between {
120
+ align-content: space-between !important;
121
+ }
122
+
123
+ .align-content-around {
124
+ align-content: space-around !important;
125
+ }
126
+
127
+ .align-content-stretch {
128
+ align-content: stretch !important;
129
+ }
130
+
131
+ .align-self-auto {
132
+ align-self: auto !important;
133
+ }
134
+
135
+ .align-self-start {
136
+ align-self: flex-start !important;
137
+ }
138
+
139
+ .align-self-end {
140
+ align-self: flex-end !important;
141
+ }
142
+
143
+ .align-self-center {
144
+ align-self: center !important;
145
+ }
146
+
147
+ .align-self-baseline {
148
+ align-self: baseline !important;
149
+ }
150
+
151
+ .align-self-stretch {
152
+ align-self: stretch !important;
153
+ }
154
+
155
+ .order-first {
156
+ order: -1 !important;
157
+ }
158
+
159
+ .order-0 {
160
+ order: 0 !important;
161
+ }
162
+
163
+ .order-1 {
164
+ order: 1 !important;
165
+ }
166
+
167
+ .order-2 {
168
+ order: 2 !important;
169
+ }
170
+
171
+ .order-3 {
172
+ order: 3 !important;
173
+ }
174
+
175
+ .order-4 {
176
+ order: 4 !important;
177
+ }
178
+
179
+ .order-5 {
180
+ order: 5 !important;
181
+ }
182
+
183
+ .order-last {
184
+ order: 6 !important;
185
+ }
186
+
187
+ @media (min-width: 576px) {
188
+ .flex-sm-fill {
189
+ flex: 1 1 auto !important;
190
+ }
191
+ .flex-sm-row {
192
+ flex-direction: row !important;
193
+ }
194
+ .flex-sm-column {
195
+ flex-direction: column !important;
196
+ }
197
+ .flex-sm-row-reverse {
198
+ flex-direction: row-reverse !important;
199
+ }
200
+ .flex-sm-column-reverse {
201
+ flex-direction: column-reverse !important;
202
+ }
203
+ .flex-sm-grow-0 {
204
+ flex-grow: 0 !important;
205
+ }
206
+ .flex-sm-grow-1 {
207
+ flex-grow: 1 !important;
208
+ }
209
+ .flex-sm-shrink-0 {
210
+ flex-shrink: 0 !important;
211
+ }
212
+ .flex-sm-shrink-1 {
213
+ flex-shrink: 1 !important;
214
+ }
215
+ .flex-sm-wrap {
216
+ flex-wrap: wrap !important;
217
+ }
218
+ .flex-sm-nowrap {
219
+ flex-wrap: nowrap !important;
220
+ }
221
+ .flex-sm-wrap-reverse {
222
+ flex-wrap: wrap-reverse !important;
223
+ }
224
+ .justify-content-sm-start {
225
+ justify-content: flex-start !important;
226
+ }
227
+ .justify-content-sm-end {
228
+ justify-content: flex-end !important;
229
+ }
230
+ .justify-content-sm-center {
231
+ justify-content: center !important;
232
+ }
233
+ .justify-content-sm-between {
234
+ justify-content: space-between !important;
235
+ }
236
+ .justify-content-sm-around {
237
+ justify-content: space-around !important;
238
+ }
239
+ .justify-content-sm-evenly {
240
+ justify-content: space-evenly !important;
241
+ }
242
+ .align-items-sm-start {
243
+ align-items: flex-start !important;
244
+ }
245
+ .align-items-sm-end {
246
+ align-items: flex-end !important;
247
+ }
248
+ .align-items-sm-center {
249
+ align-items: center !important;
250
+ }
251
+ .align-items-sm-baseline {
252
+ align-items: baseline !important;
253
+ }
254
+ .align-items-sm-stretch {
255
+ align-items: stretch !important;
256
+ }
257
+ .align-content-sm-start {
258
+ align-content: flex-start !important;
259
+ }
260
+ .align-content-sm-end {
261
+ align-content: flex-end !important;
262
+ }
263
+ .align-content-sm-center {
264
+ align-content: center !important;
265
+ }
266
+ .align-content-sm-between {
267
+ align-content: space-between !important;
268
+ }
269
+ .align-content-sm-around {
270
+ align-content: space-around !important;
271
+ }
272
+ .align-content-sm-stretch {
273
+ align-content: stretch !important;
274
+ }
275
+ .align-self-sm-auto {
276
+ align-self: auto !important;
277
+ }
278
+ .align-self-sm-start {
279
+ align-self: flex-start !important;
280
+ }
281
+ .align-self-sm-end {
282
+ align-self: flex-end !important;
283
+ }
284
+ .align-self-sm-center {
285
+ align-self: center !important;
286
+ }
287
+ .align-self-sm-baseline {
288
+ align-self: baseline !important;
289
+ }
290
+ .align-self-sm-stretch {
291
+ align-self: stretch !important;
292
+ }
293
+ .order-sm-first {
294
+ order: -1 !important;
295
+ }
296
+ .order-sm-0 {
297
+ order: 0 !important;
298
+ }
299
+ .order-sm-1 {
300
+ order: 1 !important;
301
+ }
302
+ .order-sm-2 {
303
+ order: 2 !important;
304
+ }
305
+ .order-sm-3 {
306
+ order: 3 !important;
307
+ }
308
+ .order-sm-4 {
309
+ order: 4 !important;
310
+ }
311
+ .order-sm-5 {
312
+ order: 5 !important;
313
+ }
314
+ .order-sm-last {
315
+ order: 6 !important;
316
+ }
317
+ }
318
+
319
+ @media (min-width: 768px) {
320
+ .flex-md-fill {
321
+ flex: 1 1 auto !important;
322
+ }
323
+ .flex-md-row {
324
+ flex-direction: row !important;
325
+ }
326
+ .flex-md-column {
327
+ flex-direction: column !important;
328
+ }
329
+ .flex-md-row-reverse {
330
+ flex-direction: row-reverse !important;
331
+ }
332
+ .flex-md-column-reverse {
333
+ flex-direction: column-reverse !important;
334
+ }
335
+ .flex-md-grow-0 {
336
+ flex-grow: 0 !important;
337
+ }
338
+ .flex-md-grow-1 {
339
+ flex-grow: 1 !important;
340
+ }
341
+ .flex-md-shrink-0 {
342
+ flex-shrink: 0 !important;
343
+ }
344
+ .flex-md-shrink-1 {
345
+ flex-shrink: 1 !important;
346
+ }
347
+ .flex-md-wrap {
348
+ flex-wrap: wrap !important;
349
+ }
350
+ .flex-md-nowrap {
351
+ flex-wrap: nowrap !important;
352
+ }
353
+ .flex-md-wrap-reverse {
354
+ flex-wrap: wrap-reverse !important;
355
+ }
356
+ .justify-content-md-start {
357
+ justify-content: flex-start !important;
358
+ }
359
+ .justify-content-md-end {
360
+ justify-content: flex-end !important;
361
+ }
362
+ .justify-content-md-center {
363
+ justify-content: center !important;
364
+ }
365
+ .justify-content-md-between {
366
+ justify-content: space-between !important;
367
+ }
368
+ .justify-content-md-around {
369
+ justify-content: space-around !important;
370
+ }
371
+ .justify-content-md-evenly {
372
+ justify-content: space-evenly !important;
373
+ }
374
+ .align-items-md-start {
375
+ align-items: flex-start !important;
376
+ }
377
+ .align-items-md-end {
378
+ align-items: flex-end !important;
379
+ }
380
+ .align-items-md-center {
381
+ align-items: center !important;
382
+ }
383
+ .align-items-md-baseline {
384
+ align-items: baseline !important;
385
+ }
386
+ .align-items-md-stretch {
387
+ align-items: stretch !important;
388
+ }
389
+ .align-content-md-start {
390
+ align-content: flex-start !important;
391
+ }
392
+ .align-content-md-end {
393
+ align-content: flex-end !important;
394
+ }
395
+ .align-content-md-center {
396
+ align-content: center !important;
397
+ }
398
+ .align-content-md-between {
399
+ align-content: space-between !important;
400
+ }
401
+ .align-content-md-around {
402
+ align-content: space-around !important;
403
+ }
404
+ .align-content-md-stretch {
405
+ align-content: stretch !important;
406
+ }
407
+ .align-self-md-auto {
408
+ align-self: auto !important;
409
+ }
410
+ .align-self-md-start {
411
+ align-self: flex-start !important;
412
+ }
413
+ .align-self-md-end {
414
+ align-self: flex-end !important;
415
+ }
416
+ .align-self-md-center {
417
+ align-self: center !important;
418
+ }
419
+ .align-self-md-baseline {
420
+ align-self: baseline !important;
421
+ }
422
+ .align-self-md-stretch {
423
+ align-self: stretch !important;
424
+ }
425
+ .order-md-first {
426
+ order: -1 !important;
427
+ }
428
+ .order-md-0 {
429
+ order: 0 !important;
430
+ }
431
+ .order-md-1 {
432
+ order: 1 !important;
433
+ }
434
+ .order-md-2 {
435
+ order: 2 !important;
436
+ }
437
+ .order-md-3 {
438
+ order: 3 !important;
439
+ }
440
+ .order-md-4 {
441
+ order: 4 !important;
442
+ }
443
+ .order-md-5 {
444
+ order: 5 !important;
445
+ }
446
+ .order-md-last {
447
+ order: 6 !important;
448
+ }
449
+ }
450
+
451
+ @media (min-width: 992px) {
452
+ .flex-lg-fill {
453
+ flex: 1 1 auto !important;
454
+ }
455
+ .flex-lg-row {
456
+ flex-direction: row !important;
457
+ }
458
+ .flex-lg-column {
459
+ flex-direction: column !important;
460
+ }
461
+ .flex-lg-row-reverse {
462
+ flex-direction: row-reverse !important;
463
+ }
464
+ .flex-lg-column-reverse {
465
+ flex-direction: column-reverse !important;
466
+ }
467
+ .flex-lg-grow-0 {
468
+ flex-grow: 0 !important;
469
+ }
470
+ .flex-lg-grow-1 {
471
+ flex-grow: 1 !important;
472
+ }
473
+ .flex-lg-shrink-0 {
474
+ flex-shrink: 0 !important;
475
+ }
476
+ .flex-lg-shrink-1 {
477
+ flex-shrink: 1 !important;
478
+ }
479
+ .flex-lg-wrap {
480
+ flex-wrap: wrap !important;
481
+ }
482
+ .flex-lg-nowrap {
483
+ flex-wrap: nowrap !important;
484
+ }
485
+ .flex-lg-wrap-reverse {
486
+ flex-wrap: wrap-reverse !important;
487
+ }
488
+ .justify-content-lg-start {
489
+ justify-content: flex-start !important;
490
+ }
491
+ .justify-content-lg-end {
492
+ justify-content: flex-end !important;
493
+ }
494
+ .justify-content-lg-center {
495
+ justify-content: center !important;
496
+ }
497
+ .justify-content-lg-between {
498
+ justify-content: space-between !important;
499
+ }
500
+ .justify-content-lg-around {
501
+ justify-content: space-around !important;
502
+ }
503
+ .justify-content-lg-evenly {
504
+ justify-content: space-evenly !important;
505
+ }
506
+ .align-items-lg-start {
507
+ align-items: flex-start !important;
508
+ }
509
+ .align-items-lg-end {
510
+ align-items: flex-end !important;
511
+ }
512
+ .align-items-lg-center {
513
+ align-items: center !important;
514
+ }
515
+ .align-items-lg-baseline {
516
+ align-items: baseline !important;
517
+ }
518
+ .align-items-lg-stretch {
519
+ align-items: stretch !important;
520
+ }
521
+ .align-content-lg-start {
522
+ align-content: flex-start !important;
523
+ }
524
+ .align-content-lg-end {
525
+ align-content: flex-end !important;
526
+ }
527
+ .align-content-lg-center {
528
+ align-content: center !important;
529
+ }
530
+ .align-content-lg-between {
531
+ align-content: space-between !important;
532
+ }
533
+ .align-content-lg-around {
534
+ align-content: space-around !important;
535
+ }
536
+ .align-content-lg-stretch {
537
+ align-content: stretch !important;
538
+ }
539
+ .align-self-lg-auto {
540
+ align-self: auto !important;
541
+ }
542
+ .align-self-lg-start {
543
+ align-self: flex-start !important;
544
+ }
545
+ .align-self-lg-end {
546
+ align-self: flex-end !important;
547
+ }
548
+ .align-self-lg-center {
549
+ align-self: center !important;
550
+ }
551
+ .align-self-lg-baseline {
552
+ align-self: baseline !important;
553
+ }
554
+ .align-self-lg-stretch {
555
+ align-self: stretch !important;
556
+ }
557
+ .order-lg-first {
558
+ order: -1 !important;
559
+ }
560
+ .order-lg-0 {
561
+ order: 0 !important;
562
+ }
563
+ .order-lg-1 {
564
+ order: 1 !important;
565
+ }
566
+ .order-lg-2 {
567
+ order: 2 !important;
568
+ }
569
+ .order-lg-3 {
570
+ order: 3 !important;
571
+ }
572
+ .order-lg-4 {
573
+ order: 4 !important;
574
+ }
575
+ .order-lg-5 {
576
+ order: 5 !important;
577
+ }
578
+ .order-lg-last {
579
+ order: 6 !important;
580
+ }
581
+ }
582
+
583
+ @media (min-width: 1200px) {
584
+ .flex-xl-fill {
585
+ flex: 1 1 auto !important;
586
+ }
587
+ .flex-xl-row {
588
+ flex-direction: row !important;
589
+ }
590
+ .flex-xl-column {
591
+ flex-direction: column !important;
592
+ }
593
+ .flex-xl-row-reverse {
594
+ flex-direction: row-reverse !important;
595
+ }
596
+ .flex-xl-column-reverse {
597
+ flex-direction: column-reverse !important;
598
+ }
599
+ .flex-xl-grow-0 {
600
+ flex-grow: 0 !important;
601
+ }
602
+ .flex-xl-grow-1 {
603
+ flex-grow: 1 !important;
604
+ }
605
+ .flex-xl-shrink-0 {
606
+ flex-shrink: 0 !important;
607
+ }
608
+ .flex-xl-shrink-1 {
609
+ flex-shrink: 1 !important;
610
+ }
611
+ .flex-xl-wrap {
612
+ flex-wrap: wrap !important;
613
+ }
614
+ .flex-xl-nowrap {
615
+ flex-wrap: nowrap !important;
616
+ }
617
+ .flex-xl-wrap-reverse {
618
+ flex-wrap: wrap-reverse !important;
619
+ }
620
+ .justify-content-xl-start {
621
+ justify-content: flex-start !important;
622
+ }
623
+ .justify-content-xl-end {
624
+ justify-content: flex-end !important;
625
+ }
626
+ .justify-content-xl-center {
627
+ justify-content: center !important;
628
+ }
629
+ .justify-content-xl-between {
630
+ justify-content: space-between !important;
631
+ }
632
+ .justify-content-xl-around {
633
+ justify-content: space-around !important;
634
+ }
635
+ .justify-content-xl-evenly {
636
+ justify-content: space-evenly !important;
637
+ }
638
+ .align-items-xl-start {
639
+ align-items: flex-start !important;
640
+ }
641
+ .align-items-xl-end {
642
+ align-items: flex-end !important;
643
+ }
644
+ .align-items-xl-center {
645
+ align-items: center !important;
646
+ }
647
+ .align-items-xl-baseline {
648
+ align-items: baseline !important;
649
+ }
650
+ .align-items-xl-stretch {
651
+ align-items: stretch !important;
652
+ }
653
+ .align-content-xl-start {
654
+ align-content: flex-start !important;
655
+ }
656
+ .align-content-xl-end {
657
+ align-content: flex-end !important;
658
+ }
659
+ .align-content-xl-center {
660
+ align-content: center !important;
661
+ }
662
+ .align-content-xl-between {
663
+ align-content: space-between !important;
664
+ }
665
+ .align-content-xl-around {
666
+ align-content: space-around !important;
667
+ }
668
+ .align-content-xl-stretch {
669
+ align-content: stretch !important;
670
+ }
671
+ .align-self-xl-auto {
672
+ align-self: auto !important;
673
+ }
674
+ .align-self-xl-start {
675
+ align-self: flex-start !important;
676
+ }
677
+ .align-self-xl-end {
678
+ align-self: flex-end !important;
679
+ }
680
+ .align-self-xl-center {
681
+ align-self: center !important;
682
+ }
683
+ .align-self-xl-baseline {
684
+ align-self: baseline !important;
685
+ }
686
+ .align-self-xl-stretch {
687
+ align-self: stretch !important;
688
+ }
689
+ .order-xl-first {
690
+ order: -1 !important;
691
+ }
692
+ .order-xl-0 {
693
+ order: 0 !important;
694
+ }
695
+ .order-xl-1 {
696
+ order: 1 !important;
697
+ }
698
+ .order-xl-2 {
699
+ order: 2 !important;
700
+ }
701
+ .order-xl-3 {
702
+ order: 3 !important;
703
+ }
704
+ .order-xl-4 {
705
+ order: 4 !important;
706
+ }
707
+ .order-xl-5 {
708
+ order: 5 !important;
709
+ }
710
+ .order-xl-last {
711
+ order: 6 !important;
712
+ }
713
+ }
714
+
715
+ @media (min-width: 1400px) {
716
+ .flex-xxl-fill {
717
+ flex: 1 1 auto !important;
718
+ }
719
+ .flex-xxl-row {
720
+ flex-direction: row !important;
721
+ }
722
+ .flex-xxl-column {
723
+ flex-direction: column !important;
724
+ }
725
+ .flex-xxl-row-reverse {
726
+ flex-direction: row-reverse !important;
727
+ }
728
+ .flex-xxl-column-reverse {
729
+ flex-direction: column-reverse !important;
730
+ }
731
+ .flex-xxl-grow-0 {
732
+ flex-grow: 0 !important;
733
+ }
734
+ .flex-xxl-grow-1 {
735
+ flex-grow: 1 !important;
736
+ }
737
+ .flex-xxl-shrink-0 {
738
+ flex-shrink: 0 !important;
739
+ }
740
+ .flex-xxl-shrink-1 {
741
+ flex-shrink: 1 !important;
742
+ }
743
+ .flex-xxl-wrap {
744
+ flex-wrap: wrap !important;
745
+ }
746
+ .flex-xxl-nowrap {
747
+ flex-wrap: nowrap !important;
748
+ }
749
+ .flex-xxl-wrap-reverse {
750
+ flex-wrap: wrap-reverse !important;
751
+ }
752
+ .justify-content-xxl-start {
753
+ justify-content: flex-start !important;
754
+ }
755
+ .justify-content-xxl-end {
756
+ justify-content: flex-end !important;
757
+ }
758
+ .justify-content-xxl-center {
759
+ justify-content: center !important;
760
+ }
761
+ .justify-content-xxl-between {
762
+ justify-content: space-between !important;
763
+ }
764
+ .justify-content-xxl-around {
765
+ justify-content: space-around !important;
766
+ }
767
+ .justify-content-xxl-evenly {
768
+ justify-content: space-evenly !important;
769
+ }
770
+ .align-items-xxl-start {
771
+ align-items: flex-start !important;
772
+ }
773
+ .align-items-xxl-end {
774
+ align-items: flex-end !important;
775
+ }
776
+ .align-items-xxl-center {
777
+ align-items: center !important;
778
+ }
779
+ .align-items-xxl-baseline {
780
+ align-items: baseline !important;
781
+ }
782
+ .align-items-xxl-stretch {
783
+ align-items: stretch !important;
784
+ }
785
+ .align-content-xxl-start {
786
+ align-content: flex-start !important;
787
+ }
788
+ .align-content-xxl-end {
789
+ align-content: flex-end !important;
790
+ }
791
+ .align-content-xxl-center {
792
+ align-content: center !important;
793
+ }
794
+ .align-content-xxl-between {
795
+ align-content: space-between !important;
796
+ }
797
+ .align-content-xxl-around {
798
+ align-content: space-around !important;
799
+ }
800
+ .align-content-xxl-stretch {
801
+ align-content: stretch !important;
802
+ }
803
+ .align-self-xxl-auto {
804
+ align-self: auto !important;
805
+ }
806
+ .align-self-xxl-start {
807
+ align-self: flex-start !important;
808
+ }
809
+ .align-self-xxl-end {
810
+ align-self: flex-end !important;
811
+ }
812
+ .align-self-xxl-center {
813
+ align-self: center !important;
814
+ }
815
+ .align-self-xxl-baseline {
816
+ align-self: baseline !important;
817
+ }
818
+ .align-self-xxl-stretch {
819
+ align-self: stretch !important;
820
+ }
821
+ .order-xxl-first {
822
+ order: -1 !important;
823
+ }
824
+ .order-xxl-0 {
825
+ order: 0 !important;
826
+ }
827
+ .order-xxl-1 {
828
+ order: 1 !important;
829
+ }
830
+ .order-xxl-2 {
831
+ order: 2 !important;
832
+ }
833
+ .order-xxl-3 {
834
+ order: 3 !important;
835
+ }
836
+ .order-xxl-4 {
837
+ order: 4 !important;
838
+ }
839
+ .order-xxl-5 {
840
+ order: 5 !important;
841
+ }
842
+ .order-xxl-last {
843
+ order: 6 !important;
844
+ }
845
+ }
846
+