@dot-system/css-utility 0.1.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.
@@ -0,0 +1,2145 @@
1
+ /** Break After **/
2
+ .d-break-after-all {
3
+ break-after: all;
4
+ }
5
+ .d-break-after-auto {
6
+ break-after: auto;
7
+ }
8
+ .d-break-after-avoid {
9
+ break-after: avoid;
10
+ }
11
+ .d-break-after-avoid-page {
12
+ break-after: avoid-page;
13
+ }
14
+ .d-break-after-column {
15
+ break-after: column;
16
+ }
17
+ .d-break-after-left {
18
+ break-after: left;
19
+ }
20
+ .d-break-after-page {
21
+ break-after: page;
22
+ }
23
+ .d-break-after-right {
24
+ break-after: right;
25
+ }
26
+
27
+ /** Break Before **/
28
+ .d-break-before-all {
29
+ break-before: all;
30
+ }
31
+ .d-break-before-auto {
32
+ break-before: auto;
33
+ }
34
+ .d-break-before-avoid {
35
+ break-before: avoid;
36
+ }
37
+ .d-break-before-avoid-page {
38
+ break-before: avoid-page;
39
+ }
40
+ .d-break-before-column {
41
+ break-before: column;
42
+ }
43
+ .d-break-before-left {
44
+ break-before: left;
45
+ }
46
+ .d-break-before-page {
47
+ break-before: page;
48
+ }
49
+ .d-break-before-right {
50
+ break-before: right;
51
+ }
52
+
53
+ /** Break Inside **/
54
+ .d-break-inside-auto {
55
+ break-inside: auto;
56
+ }
57
+ .d-break-inside-avoid {
58
+ break-inside: avoid;
59
+ }
60
+ .d-break-inside-avoid-column {
61
+ break-inside: avoid-column;
62
+ }
63
+ .d-break-inside-avoid-page {
64
+ break-inside: avoid-page;
65
+ }
66
+
67
+ /** Box Decoration Break **/
68
+ .d-box-decoration-clone {
69
+ -webkit-box-decoration-break: clone;
70
+ box-decoration-break: clone;
71
+ }
72
+ .d-box-decoration-slice {
73
+ -webkit-box-decoration-break: slice;
74
+ box-decoration-break: slice;
75
+ }
76
+ .d-decoration-clone {
77
+ -webkit-box-decoration-break: clone;
78
+ box-decoration-break: clone;
79
+ }
80
+ .d-decoration-slice {
81
+ -webkit-box-decoration-break: slice;
82
+ box-decoration-break: slice;
83
+ }
84
+
85
+ /** Box Sizing **/
86
+ .d-box-border {
87
+ box-sizing: border-box;
88
+ }
89
+ .d-box-content {
90
+ box-sizing: content-box;
91
+ }
92
+
93
+ /** Float **/
94
+ .d-float-end {
95
+ float: inline-end;
96
+ }
97
+ [dir=ltr] .d-float-left {
98
+ float: left;
99
+ }
100
+ [dir=rtl] .d-float-left {
101
+ float: right;
102
+ }
103
+ .d-float-none {
104
+ float: none;
105
+ }
106
+ [dir=ltr] .d-float-right {
107
+ float: right;
108
+ }
109
+ [dir=rtl] .d-float-right {
110
+ float: left;
111
+ }
112
+ .d-float-start {
113
+ float: inline-start;
114
+ }
115
+
116
+ /** Display **/
117
+ .d-block {
118
+ display: block;
119
+ }
120
+ .d-contents {
121
+ display: contents;
122
+ }
123
+ .d-flex {
124
+ display: flex;
125
+ }
126
+ .d-flow-root {
127
+ display: flow-root;
128
+ }
129
+ .d-grid {
130
+ display: grid;
131
+ }
132
+ .d-hidden {
133
+ display: none;
134
+ }
135
+ .d-inline {
136
+ display: inline;
137
+ }
138
+ .d-inline-block {
139
+ display: inline-block;
140
+ }
141
+ .d-inline-flex {
142
+ display: inline-flex;
143
+ }
144
+ .d-inline-grid {
145
+ display: inline-grid;
146
+ }
147
+ .d-inline-table {
148
+ display: inline-table;
149
+ }
150
+ .d-list-item {
151
+ display: list-item;
152
+ }
153
+ .d-table {
154
+ display: table;
155
+ }
156
+ .d-table-caption {
157
+ display: table-caption;
158
+ }
159
+ .d-table-cell {
160
+ display: table-cell;
161
+ }
162
+ .d-table-column {
163
+ display: table-column;
164
+ }
165
+ .d-table-column-group {
166
+ display: table-column-group;
167
+ }
168
+ .d-table-footer-group {
169
+ display: table-footer-group;
170
+ }
171
+ .d-table-header-group {
172
+ display: table-header-group;
173
+ }
174
+ .d-table-row {
175
+ display: table-row;
176
+ }
177
+ .d-table-row-group {
178
+ display: table-row-group;
179
+ }
180
+
181
+ /** Position **/
182
+ .d-absolute {
183
+ position: absolute;
184
+ }
185
+ .d-fixed {
186
+ position: fixed;
187
+ }
188
+ .d-relative {
189
+ position: relative;
190
+ }
191
+ .d-static {
192
+ position: static;
193
+ }
194
+ .d-sticky {
195
+ position: sticky;
196
+ }
197
+
198
+ /** Overflow **/
199
+ .d-overflow-auto {
200
+ overflow: auto;
201
+ }
202
+ .d-overflow-clip {
203
+ overflow: clip;
204
+ }
205
+ .d-overflow-hidden {
206
+ overflow: hidden;
207
+ }
208
+ .d-overflow-scroll {
209
+ overflow: scroll;
210
+ }
211
+ .d-overflow-visible {
212
+ overflow: visible;
213
+ }
214
+ .d-overflow-x-auto {
215
+ overflow-x: auto;
216
+ }
217
+ .d-overflow-x-clip {
218
+ overflow-x: clip;
219
+ }
220
+ .d-overflow-x-hidden {
221
+ overflow-x: hidden;
222
+ }
223
+ .d-overflow-x-scroll {
224
+ overflow-x: scroll;
225
+ }
226
+ .d-overflow-x-visible {
227
+ overflow-x: visible;
228
+ }
229
+ .d-overflow-y-auto {
230
+ overflow-y: auto;
231
+ }
232
+ .d-overflow-y-clip {
233
+ overflow-y: clip;
234
+ }
235
+ .d-overflow-y-hidden {
236
+ overflow-y: hidden;
237
+ }
238
+ .d-overflow-y-scroll {
239
+ overflow-y: scroll;
240
+ }
241
+ .d-overflow-y-visible {
242
+ overflow-y: visible;
243
+ }
244
+
245
+ /** Overscroll Behavior **/
246
+ .d-overscroll-auto {
247
+ overscroll-behavior: auto;
248
+ }
249
+ .d-overscroll-contain {
250
+ overscroll-behavior: contain;
251
+ }
252
+ .d-overscroll-none {
253
+ overscroll-behavior: none;
254
+ }
255
+ .d-overscroll-x-auto {
256
+ overscroll-behavior-x: auto;
257
+ }
258
+ .d-overscroll-x-contain {
259
+ overscroll-behavior-x: contain;
260
+ }
261
+ .d-overscroll-x-none {
262
+ overscroll-behavior-x: none;
263
+ }
264
+ .d-overscroll-y-auto {
265
+ overscroll-behavior-y: auto;
266
+ }
267
+ .d-overscroll-y-contain {
268
+ overscroll-behavior-y: contain;
269
+ }
270
+ .d-overscroll-y-none {
271
+ overscroll-behavior-y: none;
272
+ }
273
+
274
+ /** Visibility **/
275
+ .d-collapse {
276
+ visibility: collapse;
277
+ }
278
+ .d-invisible {
279
+ visibility: hidden;
280
+ }
281
+ .d-visible {
282
+ visibility: visible;
283
+ }
284
+
285
+ /** Clear **/
286
+ .d-clear-both {
287
+ clear: both;
288
+ }
289
+ .d-clear-end {
290
+ clear: inline-end;
291
+ }
292
+ [dir=ltr] .d-clear-left {
293
+ clear: left;
294
+ }
295
+ [dir=rtl] .d-clear-left {
296
+ clear: right;
297
+ }
298
+ .d-clear-none {
299
+ clear: none;
300
+ }
301
+ [dir=ltr] .d-clear-right {
302
+ clear: right;
303
+ }
304
+ [dir=rtl] .d-clear-right {
305
+ clear: left;
306
+ }
307
+ .d-clear-start {
308
+ clear: inline-start;
309
+ }
310
+
311
+ /** Object Fit **/
312
+ .d-object-contain {
313
+ object-fit: contain;
314
+ }
315
+ .d-object-cover {
316
+ object-fit: cover;
317
+ }
318
+ .d-object-fill {
319
+ object-fit: fill;
320
+ }
321
+ .d-object-none {
322
+ object-fit: none;
323
+ }
324
+ .d-object-scale-down {
325
+ object-fit: scale-down;
326
+ }
327
+
328
+ /** Object Position **/
329
+ .d-object-bottom {
330
+ object-position: bottom;
331
+ }
332
+ [dir=ltr] .d-object-bottom-left {
333
+ object-position: left bottom;
334
+ }
335
+ [dir=rtl] .d-object-bottom-left {
336
+ object-position: right bottom;
337
+ }
338
+ [dir=ltr] .d-object-bottom-right {
339
+ object-position: right bottom;
340
+ }
341
+ [dir=rtl] .d-object-bottom-right {
342
+ object-position: left bottom;
343
+ }
344
+ .d-object-center {
345
+ object-position: center;
346
+ }
347
+ [dir=ltr] .d-object-left {
348
+ object-position: left;
349
+ }
350
+ [dir=rtl] .d-object-left {
351
+ object-position: right;
352
+ }
353
+ [dir=ltr] .d-object-right {
354
+ object-position: right;
355
+ }
356
+ [dir=rtl] .d-object-right {
357
+ object-position: left;
358
+ }
359
+ .d-object-top {
360
+ object-position: top;
361
+ }
362
+ [dir=ltr] .d-object-top-left {
363
+ object-position: left top;
364
+ }
365
+ [dir=rtl] .d-object-top-left {
366
+ object-position: right top;
367
+ }
368
+ [dir=ltr] .d-object-top-right {
369
+ object-position: right top;
370
+ }
371
+ [dir=rtl] .d-object-top-right {
372
+ object-position: left top;
373
+ }
374
+
375
+ /** Flex Direction **/
376
+ .d-flex-col {
377
+ flex-direction: column;
378
+ }
379
+ .d-flex-col-reverse {
380
+ flex-direction: column-reverse;
381
+ }
382
+ .d-flex-row {
383
+ flex-direction: row;
384
+ }
385
+ .d-flex-row-reverse {
386
+ flex-direction: row-reverse;
387
+ }
388
+
389
+ /** Flex Wrap **/
390
+ .d-flex-nowrap {
391
+ flex-wrap: nowrap;
392
+ }
393
+ .d-flex-wrap {
394
+ flex-wrap: wrap;
395
+ }
396
+ .d-flex-wrap-reverse {
397
+ flex-wrap: wrap-reverse;
398
+ }
399
+
400
+ /** Flex **/
401
+ .d-flex-1 {
402
+ flex: 1 ;
403
+ }
404
+ .d-flex-auto {
405
+ flex: auto ;
406
+ }
407
+ .d-flex-initial {
408
+ flex: 0 auto ;
409
+ }
410
+ .d-flex-none {
411
+ flex: none;
412
+ }
413
+
414
+ /** Flex Shrink **/
415
+ .d-flex-shrink {
416
+ flex-shrink: 1;
417
+ }
418
+ .d-flex-shrink-0 {
419
+ flex-shrink: 0;
420
+ }
421
+ .d-shrink {
422
+ flex-shrink: 1;
423
+ }
424
+ .d-shrink-0 {
425
+ flex-shrink: 0;
426
+ }
427
+
428
+ /** Flex Grow **/
429
+ .d-flex-grow {
430
+ flex-grow: 1;
431
+ }
432
+ .d-grow {
433
+ flex-grow: 1;
434
+ }
435
+
436
+ /** Flex Basis **/
437
+ .d-basis-auto {
438
+ flex-basis: auto ;
439
+ }
440
+ .d-basis-full {
441
+ flex-basis: 100% ;
442
+ }
443
+
444
+ /** Isolation **/
445
+ .d-isolate {
446
+ isolation: isolate;
447
+ }
448
+ .d-isolation-auto {
449
+ isolation: auto;
450
+ }
451
+
452
+ /** Z-Index **/
453
+ .d-z-auto {
454
+ z-index: auto;
455
+ }
456
+
457
+ /** Order **/
458
+ .d-order-first {
459
+ order: -9999;
460
+ }
461
+ .d-order-last {
462
+ order: 9999;
463
+ }
464
+ .d-order-none {
465
+ order: 0;
466
+ }
467
+
468
+ /** Grid Template Columns **/
469
+ .d-grid-cols-none {
470
+ grid-template-columns: none;
471
+ }
472
+ .d-grid-cols-subgrid {
473
+ grid-template-columns: subgrid;
474
+ }
475
+
476
+ /** Grid Column **/
477
+ .d-col-span-full {
478
+ grid-column: 1/-1;
479
+ }
480
+ .d-col-auto {
481
+ grid-column: auto;
482
+ }
483
+
484
+ /** Grid Column Start **/
485
+ .d-col-start-auto {
486
+ grid-column-start: auto;
487
+ }
488
+
489
+ /** Grid Column End **/
490
+ .d-col-end-auto {
491
+ grid-column-end: auto;
492
+ }
493
+
494
+ /** Grid Template Rows **/
495
+ .d-grid-rows-none {
496
+ grid-template-rows: none;
497
+ }
498
+ .d-grid-rows-subgrid {
499
+ grid-template-rows: subgrid;
500
+ }
501
+
502
+ /** Grid Row **/
503
+ .d-row-span-full {
504
+ grid-row: 1/-1;
505
+ }
506
+ .d-row-auto {
507
+ grid-row: auto;
508
+ }
509
+
510
+ /** Grid Row Start **/
511
+ .d-row-start-auto {
512
+ grid-row-start: auto;
513
+ }
514
+
515
+ /** Grid Row End **/
516
+ .d-row-end-auto {
517
+ grid-row-end: auto;
518
+ }
519
+
520
+ /** Grid Auto Flow **/
521
+ .d-grid-flow-col-dense {
522
+ grid-auto-flow: column dense;
523
+ }
524
+ .d-grid-flow-dense {
525
+ grid-auto-flow: dense;
526
+ }
527
+ .d-grid-flow-row {
528
+ grid-auto-flow: row;
529
+ }
530
+ .d-grid-flow-row-dense {
531
+ grid-auto-flow: row dense;
532
+ }
533
+ .d-grid-flow-col {
534
+ grid-auto-flow: column;
535
+ }
536
+
537
+ /** Grid Auto Columns **/
538
+ .d-auto-cols-auto {
539
+ grid-auto-columns: auto;
540
+ }
541
+ .d-auto-cols-max {
542
+ grid-auto-columns: max-content;
543
+ }
544
+ .d-auto-cols-min {
545
+ grid-auto-columns: min-content;
546
+ }
547
+ .d-auto-cols-fr {
548
+ grid-auto-columns: minmax(0, 1fr);
549
+ }
550
+
551
+ /** Grid Auto Rows **/
552
+ .d-auto-rows-auto {
553
+ grid-auto-rows: auto;
554
+ }
555
+ .d-auto-rows-fr {
556
+ grid-auto-rows: minmax(0, 1fr);
557
+ }
558
+ .d-auto-rows-max {
559
+ grid-auto-rows: max-content;
560
+ }
561
+ .d-auto-rows-min {
562
+ grid-auto-rows: min-content;
563
+ }
564
+
565
+ /** Justify Content **/
566
+ .d-justify-around {
567
+ justify-content: space-around;
568
+ }
569
+ .d-justify-baseline {
570
+ justify-content: baseline;
571
+ }
572
+ .d-justify-between {
573
+ justify-content: space-between;
574
+ }
575
+ .d-justify-center {
576
+ justify-content: center;
577
+ }
578
+ .d-justify-center-safe {
579
+ justify-content: safe center;
580
+ }
581
+ .d-justify-end {
582
+ justify-content: flex-end;
583
+ }
584
+ .d-justify-end-safe {
585
+ justify-content: safe flex-end;
586
+ }
587
+ .d-justify-evenly {
588
+ justify-content: space-evenly;
589
+ }
590
+ .d-justify-normal {
591
+ justify-content: normal;
592
+ }
593
+ .d-justify-start {
594
+ justify-content: flex-start;
595
+ }
596
+ .d-justify-stretch {
597
+ justify-content: stretch;
598
+ }
599
+
600
+ /** Justify Items **/
601
+ .d-justify-items-center {
602
+ justify-items: center;
603
+ }
604
+ .d-justify-items-center-safe {
605
+ justify-items: safe center;
606
+ }
607
+ .d-justify-items-end {
608
+ justify-items: end;
609
+ }
610
+ .d-justify-items-end-safe {
611
+ justify-items: safe end;
612
+ }
613
+ .d-justify-items-normal {
614
+ justify-items: normal;
615
+ }
616
+ .d-justify-items-start {
617
+ justify-items: start;
618
+ }
619
+ .d-justify-items-stretch {
620
+ justify-items: stretch;
621
+ }
622
+
623
+ /** Justify Self **/
624
+ .d-justify-self-auto {
625
+ justify-self: auto;
626
+ }
627
+ .d-justify-self-center {
628
+ justify-self: center;
629
+ }
630
+ .d-justify-self-center-safe {
631
+ justify-self: safe center;
632
+ }
633
+ .d-justify-self-end {
634
+ justify-self: flex-end;
635
+ }
636
+ .d-justify-self-end-safe {
637
+ justify-self: safe flex-end;
638
+ }
639
+ .d-justify-self-start {
640
+ justify-self: flex-start;
641
+ }
642
+ .d-justify-self-stretch {
643
+ justify-self: stretch;
644
+ }
645
+
646
+ /** Align Content **/
647
+ .d-content-around {
648
+ align-content: space-around;
649
+ }
650
+ .d-content-baseline {
651
+ align-content: baseline;
652
+ }
653
+ .d-content-between {
654
+ align-content: space-between;
655
+ }
656
+ .d-content-center {
657
+ align-content: center;
658
+ }
659
+ .d-content-end {
660
+ align-content: flex-end;
661
+ }
662
+ .d-content-evenly {
663
+ align-content: space-evenly;
664
+ }
665
+ .d-content-normal {
666
+ align-content: normal;
667
+ }
668
+ .d-content-start {
669
+ align-content: flex-start;
670
+ }
671
+ .d-content-stretch {
672
+ align-content: stretch;
673
+ }
674
+
675
+ /** Align Items **/
676
+ .d-items-baseline {
677
+ align-items: baseline;
678
+ }
679
+ .d-items-baseline-last {
680
+ align-items: last baseline;
681
+ }
682
+ .d-items-center {
683
+ align-items: center;
684
+ }
685
+ .d-items-center-safe {
686
+ align-items: safe center;
687
+ }
688
+ .d-items-end {
689
+ align-items: flex-end;
690
+ }
691
+ .d-items-end-safe {
692
+ align-items: safe flex-end;
693
+ }
694
+ .d-items-start {
695
+ align-items: flex-start;
696
+ }
697
+ .d-items-stretch {
698
+ align-items: stretch;
699
+ }
700
+
701
+ /** Place Items **/
702
+ .d-place-items-baseline {
703
+ place-items: baseline;
704
+ }
705
+ .d-place-items-center {
706
+ place-items: center;
707
+ }
708
+ .d-place-items-center-safe {
709
+ place-items: safe center;
710
+ }
711
+ .d-place-items-end {
712
+ place-items: end;
713
+ }
714
+ .d-place-items-end-safe {
715
+ place-items: safe end;
716
+ }
717
+ .d-place-items-start {
718
+ place-items: start;
719
+ }
720
+ .d-place-items-stretch {
721
+ place-items: stretch;
722
+ }
723
+
724
+ /** Place Content **/
725
+ .d-place-content-around {
726
+ place-content: space-around;
727
+ }
728
+ .d-place-content-baseline {
729
+ place-content: baseline;
730
+ }
731
+ .d-place-content-between {
732
+ place-content: space-between;
733
+ }
734
+ .d-place-content-center {
735
+ place-content: center;
736
+ }
737
+ .d-place-content-center-safe {
738
+ place-content: safe center;
739
+ }
740
+ .d-place-content-end {
741
+ place-content: end;
742
+ }
743
+ .d-place-content-end-safe {
744
+ place-content: safe end;
745
+ }
746
+ .d-place-content-evenly {
747
+ place-content: space-evenly;
748
+ }
749
+ .d-place-content-start {
750
+ place-content: start;
751
+ }
752
+ .d-place-content-stretch {
753
+ place-content: stretch;
754
+ }
755
+
756
+ /** Place Self **/
757
+ .d-place-self-auto {
758
+ place-self: auto;
759
+ }
760
+ .d-place-self-center {
761
+ place-self: center;
762
+ }
763
+ .d-place-self-center-safe {
764
+ place-self: safe center;
765
+ }
766
+ .d-place-self-end {
767
+ place-self: end;
768
+ }
769
+ .d-place-self-end-safe {
770
+ place-self: safe end;
771
+ }
772
+ .d-place-self-start {
773
+ place-self: start;
774
+ }
775
+ .d-place-self-stretch {
776
+ place-self: stretch;
777
+ }
778
+
779
+ /** Align Self **/
780
+ .d-self-auto {
781
+ align-self: auto;
782
+ }
783
+ .d-self-baseline {
784
+ align-self: baseline;
785
+ }
786
+ .d-self-baseline-last {
787
+ align-self: last baseline;
788
+ }
789
+ .d-self-center {
790
+ align-self: center;
791
+ }
792
+ .d-self-center-safe {
793
+ align-self: safe center;
794
+ }
795
+ .d-self-end {
796
+ align-self: flex-end;
797
+ }
798
+ .d-self-end-safe {
799
+ align-self: safe flex-end;
800
+ }
801
+ .d-self-start {
802
+ align-self: flex-start;
803
+ }
804
+ .d-self-stretch {
805
+ align-self: stretch;
806
+ }
807
+
808
+ /** Width **/
809
+ .d-w-auto {
810
+ width: auto ;
811
+ }
812
+ .d-w-dvh {
813
+ width: 100dvh;
814
+ }
815
+ .d-w-dvw {
816
+ width: 100dvw;
817
+ }
818
+ .d-w-fit {
819
+ width: fit-content ;
820
+ }
821
+ .d-w-full {
822
+ width: 100% ;
823
+ }
824
+ .d-w-lvh {
825
+ width: 100lvh;
826
+ }
827
+ .d-w-lvw {
828
+ width: 100lvw;
829
+ }
830
+ .d-w-max {
831
+ width: max-content;
832
+ }
833
+ .d-w-min {
834
+ width: min-content;
835
+ }
836
+ .d-w-screen {
837
+ width: 100vw ;
838
+ }
839
+ .d-w-svh {
840
+ width: 100svh;
841
+ }
842
+ .d-w-svw {
843
+ width: 100svw;
844
+ }
845
+
846
+ /** Min-Width **/
847
+ .d-min-w-auto {
848
+ min-width: auto ;
849
+ }
850
+ .d-min-w-dvh {
851
+ min-width: 100dvh;
852
+ }
853
+ .d-min-w-dvw {
854
+ min-width: 100dvw;
855
+ }
856
+ .d-min-w-fit {
857
+ min-width: fit-content ;
858
+ }
859
+ .d-min-w-full {
860
+ min-width: 100% ;
861
+ }
862
+ .d-min-w-lvh {
863
+ min-width: 100lvh;
864
+ }
865
+ .d-min-w-lvw {
866
+ min-width: 100lvw;
867
+ }
868
+ .d-min-w-max {
869
+ min-width: max-content;
870
+ }
871
+ .d-min-w-min {
872
+ min-width: min-content;
873
+ }
874
+ .d-min-w-px {
875
+ min-width: var(--zd_size1) ;
876
+ }
877
+ .d-min-w-screen {
878
+ min-width: 100vw ;
879
+ }
880
+ .d-min-w-svh {
881
+ min-width: 100svh;
882
+ }
883
+ .d-min-w-svw {
884
+ min-width: 100svw;
885
+ }
886
+
887
+ /** Max-Width **/
888
+ .d-max-w-dvh {
889
+ max-width: 100dvh;
890
+ }
891
+ .d-max-w-dvw {
892
+ max-width: 100dvw;
893
+ }
894
+ .d-max-w-fit {
895
+ max-width: fit-content ;
896
+ }
897
+ .d-max-w-full {
898
+ max-width: 100% ;
899
+ }
900
+ .d-max-w-lvh {
901
+ max-width: 100lvh;
902
+ }
903
+ .d-max-w-lvw {
904
+ max-width: 100lvw;
905
+ }
906
+ .d-max-w-max {
907
+ max-width: max-content;
908
+ }
909
+ .d-max-w-min {
910
+ max-width: min-content;
911
+ }
912
+ .d-max-w-none {
913
+ max-width: none;
914
+ }
915
+ .d-max-w-px {
916
+ max-width: var(--zd_size1) ;
917
+ }
918
+ .d-max-w-screen {
919
+ max-width: 100vw ;
920
+ }
921
+ .d-max-w-svh {
922
+ max-width: 100svh;
923
+ }
924
+ .d-max-w-svw {
925
+ max-width: 100svw;
926
+ }
927
+
928
+ /** Height **/
929
+ .d-h-auto {
930
+ height: auto ;
931
+ }
932
+ .d-h-dvh {
933
+ height: 100dvh;
934
+ }
935
+ .d-h-dvw {
936
+ height: 100dvw;
937
+ }
938
+ .d-h-fit {
939
+ height: fit-content ;
940
+ }
941
+ .d-h-full {
942
+ height: 100% ;
943
+ }
944
+ .d-h-lh {
945
+ height: 1lh;
946
+ }
947
+ .d-h-lvh {
948
+ height: 100lvh;
949
+ }
950
+ .d-h-lvw {
951
+ height: 100lvw;
952
+ }
953
+ .d-h-max {
954
+ height: max-content;
955
+ }
956
+ .d-h-min {
957
+ height: min-content;
958
+ }
959
+ .d-h-px {
960
+ height: var(--zd_size1) ;
961
+ }
962
+ .d-h-screen {
963
+ height: 100vh ;
964
+ }
965
+ .d-h-svh {
966
+ height: 100svh;
967
+ }
968
+ .d-h-svw {
969
+ height: 100svw;
970
+ }
971
+
972
+ /** Max-Height **/
973
+ .d-max-h-dvh {
974
+ max-height: 100dvh;
975
+ }
976
+ .d-max-h-dvw {
977
+ max-height: 100dvw;
978
+ }
979
+ .d-max-h-fit {
980
+ max-height: fit-content ;
981
+ }
982
+ .d-max-h-full {
983
+ max-height: 100% ;
984
+ }
985
+ .d-max-h-lh {
986
+ max-height: 1lh;
987
+ }
988
+ .d-max-h-lvh {
989
+ max-height: 100lvh;
990
+ }
991
+ .d-max-h-lvw {
992
+ max-height: 100lvw;
993
+ }
994
+ .d-max-h-max {
995
+ max-height: max-content;
996
+ }
997
+ .d-max-h-min {
998
+ max-height: min-content;
999
+ }
1000
+ .d-max-h-none {
1001
+ max-height: none;
1002
+ }
1003
+ .d-max-h-px {
1004
+ max-height: var(--zd_size1) ;
1005
+ }
1006
+ .d-max-h-screen {
1007
+ max-height: 100vh ;
1008
+ }
1009
+ .d-max-h-svh {
1010
+ max-height: 100svh;
1011
+ }
1012
+ .d-max-h-svw {
1013
+ max-height: 100svw;
1014
+ }
1015
+
1016
+ /** Min-Height **/
1017
+ .d-min-h-auto {
1018
+ min-height: auto ;
1019
+ }
1020
+ .d-min-h-dvh {
1021
+ min-height: 100dvh;
1022
+ }
1023
+ .d-min-h-dvw {
1024
+ min-height: 100dvw;
1025
+ }
1026
+ .d-min-h-fit {
1027
+ min-height: fit-content ;
1028
+ }
1029
+ .d-min-h-full {
1030
+ min-height: 100% ;
1031
+ }
1032
+ .d-min-h-lh {
1033
+ min-height: 1lh;
1034
+ }
1035
+ .d-min-h-lvh {
1036
+ min-height: 100lvh;
1037
+ }
1038
+ .d-min-h-lvw {
1039
+ min-height: 100lvw;
1040
+ }
1041
+ .d-min-h-max {
1042
+ min-height: max-content;
1043
+ }
1044
+ .d-min-h-min {
1045
+ min-height: min-content;
1046
+ }
1047
+ .d-min-h-px {
1048
+ min-height: var(--zd_size1) ;
1049
+ }
1050
+ .d-min-h-screen {
1051
+ min-height: 100vh ;
1052
+ }
1053
+ .d-min-h-svh {
1054
+ min-height: 100svh;
1055
+ }
1056
+ .d-min-h-svw {
1057
+ min-height: 100svw;
1058
+ }
1059
+
1060
+ /** Height & Width **/
1061
+ .d-size-auto {
1062
+ width: auto ;
1063
+ height: auto ;
1064
+ }
1065
+ .d-size-dvh {
1066
+ width: 100dvh;
1067
+ height: 100dvh;
1068
+ }
1069
+ .d-size-dvw {
1070
+ width: 100dvw;
1071
+ height: 100dvw;
1072
+ }
1073
+ .d-size-fit {
1074
+ width: fit-content ;
1075
+ height: fit-content ;
1076
+ }
1077
+ .d-size-full {
1078
+ width: 100% ;
1079
+ height: 100% ;
1080
+ }
1081
+ .d-size-lvh {
1082
+ width: 100lvh;
1083
+ height: 100lvh;
1084
+ }
1085
+ .d-size-lvw {
1086
+ width: 100lvw;
1087
+ height: 100lvw;
1088
+ }
1089
+ .d-size-max {
1090
+ width: max-content;
1091
+ height: max-content;
1092
+ }
1093
+ .d-size-min {
1094
+ width: min-content;
1095
+ height: min-content;
1096
+ }
1097
+ .d-size-px {
1098
+ width: var(--zd_size1) ;
1099
+ height: var(--zd_size1) ;
1100
+ }
1101
+ .d-size-svh {
1102
+ width: 100svh;
1103
+ height: 100svh;
1104
+ }
1105
+ .d-size-svw {
1106
+ width: 100svw;
1107
+ height: 100svw;
1108
+ }
1109
+
1110
+ /** Font Smoothing **/
1111
+ .d-antialiased {
1112
+ -webkit-font-smoothing: antialiased;
1113
+ -moz-osx-font-smoothing: grayscale;
1114
+ }
1115
+ .d-subpixel-antialiased {
1116
+ -webkit-font-smoothing: auto;
1117
+ -moz-osx-font-smoothing: auto;
1118
+ }
1119
+
1120
+ /** Text Transform **/
1121
+ .d-capitalize {
1122
+ text-transform: capitalize;
1123
+ }
1124
+ .d-lowercase {
1125
+ text-transform: lowercase;
1126
+ }
1127
+ .d-normal-case {
1128
+ text-transform: none;
1129
+ }
1130
+ .d-uppercase {
1131
+ text-transform: uppercase;
1132
+ }
1133
+
1134
+ /** Font Style **/
1135
+ .d-italic {
1136
+ font-style: italic;
1137
+ }
1138
+ .d-not-italic {
1139
+ font-style: normal;
1140
+ }
1141
+
1142
+ /** List Style Type **/
1143
+ .d-list-decimal {
1144
+ list-style-type: decimal;
1145
+ }
1146
+ .d-list-disc {
1147
+ list-style-type: disc;
1148
+ }
1149
+
1150
+ /** List Style Image **/
1151
+ .d-list-image-none {
1152
+ list-style-image: none;
1153
+ }
1154
+
1155
+ /** List Style Position **/
1156
+ .d-list-inside {
1157
+ list-style-position: inside;
1158
+ }
1159
+ .d-list-outside {
1160
+ list-style-position: outside;
1161
+ }
1162
+
1163
+ /** Text Align **/
1164
+ .d-text-center {
1165
+ text-align: center;
1166
+ }
1167
+ .d-text-end {
1168
+ text-align: end;
1169
+ }
1170
+ .d-text-justify {
1171
+ text-align: justify;
1172
+ }
1173
+ [dir=ltr] .d-text-left {
1174
+ text-align: left;
1175
+ }
1176
+ [dir=rtl] .d-text-left {
1177
+ text-align: right;
1178
+ }
1179
+ [dir=ltr] .d-text-right {
1180
+ text-align: right;
1181
+ }
1182
+ [dir=rtl] .d-text-right {
1183
+ text-align: left;
1184
+ }
1185
+ .d-text-start {
1186
+ text-align: start;
1187
+ }
1188
+
1189
+ /** Text Decoration **/
1190
+ .d-line-through {
1191
+ text-decoration-line: line-through;
1192
+ }
1193
+ .d-no-underline {
1194
+ text-decoration-line: none;
1195
+ }
1196
+ .d-overline {
1197
+ text-decoration-line: overline;
1198
+ }
1199
+ .d-underline {
1200
+ text-decoration-line: underline;
1201
+ }
1202
+
1203
+ /** Text Decoration Style **/
1204
+ .d-decoration-dashed {
1205
+ text-decoration-style: dashed;
1206
+ }
1207
+ .d-decoration-dotted {
1208
+ text-decoration-style: dotted;
1209
+ }
1210
+ .d-decoration-double {
1211
+ text-decoration-style: double;
1212
+ }
1213
+ .d-decoration-solid {
1214
+ text-decoration-style: solid;
1215
+ }
1216
+ .d-decoration-wavy {
1217
+ text-decoration-style: wavy;
1218
+ }
1219
+
1220
+ /** Text Decoration Thickness **/
1221
+ .d-decoration-auto {
1222
+ text-decoration-thickness: auto;
1223
+ }
1224
+ .d-decoration-from-font {
1225
+ text-decoration-thickness: from-font;
1226
+ }
1227
+
1228
+ /** Text Underline Offset **/
1229
+ .d-underline-offset-auto {
1230
+ text-underline-offset: auto;
1231
+ }
1232
+
1233
+ /** Text Overflow **/
1234
+ .d-text-clip {
1235
+ text-overflow: clip;
1236
+ }
1237
+ .d-text-ellipsis {
1238
+ text-overflow: ellipsis;
1239
+ }
1240
+
1241
+ /** Text Wrap **/
1242
+ .d-text-balance {
1243
+ text-wrap: balance;
1244
+ }
1245
+ .d-text-nowrap {
1246
+ text-wrap: nowrap;
1247
+ }
1248
+ .d-text-pretty {
1249
+ text-wrap: pretty;
1250
+ }
1251
+ .d-text-wrap {
1252
+ text-wrap: wrap;
1253
+ }
1254
+
1255
+ /** Vertical Align **/
1256
+ .d-align-baseline {
1257
+ vertical-align: baseline;
1258
+ }
1259
+ .d-align-bottom {
1260
+ vertical-align: bottom;
1261
+ }
1262
+ .d-align-middle {
1263
+ vertical-align: middle;
1264
+ }
1265
+ .d-align-sub {
1266
+ vertical-align: sub;
1267
+ }
1268
+ .d-align-super {
1269
+ vertical-align: super;
1270
+ }
1271
+ .d-align-text-bottom {
1272
+ vertical-align: text-bottom;
1273
+ }
1274
+ .d-align-text-top {
1275
+ vertical-align: text-top;
1276
+ }
1277
+ .d-align-top {
1278
+ vertical-align: top;
1279
+ }
1280
+
1281
+ /** White Space **/
1282
+ .d-whitespace-normal {
1283
+ white-space: normal;
1284
+ }
1285
+ .d-whitespace-nowrap {
1286
+ white-space: nowrap;
1287
+ }
1288
+ .d-whitespace-pre {
1289
+ white-space: pre;
1290
+ }
1291
+ .d-whitespace-pre-line {
1292
+ white-space: pre-line;
1293
+ }
1294
+ .d-whitespace-pre-wrap {
1295
+ white-space: pre-wrap;
1296
+ }
1297
+ .d-whitespace-break-spaces {
1298
+ white-space: break-spaces;
1299
+ }
1300
+
1301
+ /** Word Break **/
1302
+ .d-break-normal {
1303
+ overflow-wrap: normal;
1304
+ word-break: normal;
1305
+ }
1306
+ .d-break-all {
1307
+ word-break: break-all;
1308
+ }
1309
+ .d-break-keep {
1310
+ word-break: keep-all;
1311
+ }
1312
+
1313
+ /** Overflow Wrap **/
1314
+ .d-wrap-anywhere {
1315
+ overflow-wrap: anywhere;
1316
+ }
1317
+ .d-wrap-break-word {
1318
+ overflow-wrap: break-word;
1319
+ }
1320
+ .d-wrap-normal {
1321
+ overflow-wrap: normal;
1322
+ }
1323
+
1324
+ /** Hyphens **/
1325
+ .d-hyphens-auto {
1326
+ -webkit-hyphens: auto;
1327
+ hyphens: auto;
1328
+ }
1329
+ .d-hyphens-manual {
1330
+ -webkit-hyphens: manual;
1331
+ hyphens: manual;
1332
+ }
1333
+ .d-hyphens-none {
1334
+ -webkit-hyphens: none;
1335
+ hyphens: none;
1336
+ }
1337
+
1338
+ /** Content **/
1339
+ .d-content-none {
1340
+ content: none;
1341
+ }
1342
+
1343
+ /** Background Attachment **/
1344
+ .d-bg-fixed {
1345
+ background-attachment: fixed;
1346
+ }
1347
+ .d-bg-local {
1348
+ background-attachment: local;
1349
+ }
1350
+ .d-bg-scroll {
1351
+ background-attachment: scroll;
1352
+ }
1353
+
1354
+ /** Background Clip **/
1355
+ .d-bg-clip-border {
1356
+ background-clip: border-box;
1357
+ }
1358
+ .d-bg-clip-content {
1359
+ background-clip: content-box;
1360
+ }
1361
+ .d-bg-clip-padding {
1362
+ background-clip: padding-box;
1363
+ }
1364
+ .d-bg-clip-text {
1365
+ -webkit-background-clip: text;
1366
+ background-clip: text;
1367
+ }
1368
+
1369
+ /** Background Origin **/
1370
+ .d-bg-origin-border {
1371
+ background-origin: border-box;
1372
+ }
1373
+ .d-bg-origin-content {
1374
+ background-origin: content-box;
1375
+ }
1376
+ .d-bg-origin-padding {
1377
+ background-origin: padding-box;
1378
+ }
1379
+
1380
+ /** Background Color **/
1381
+ .d-bg-inherit {
1382
+ background-color: inherit;
1383
+ }
1384
+ .d-bg-transparent {
1385
+ background-color: transparent;
1386
+ }
1387
+ .d-bg-current {
1388
+ background-color: currentColor;
1389
+ }
1390
+
1391
+ /** Background Image **/
1392
+ .d-bg-none {
1393
+ background-image: none;
1394
+ }
1395
+
1396
+ /** Background Position **/
1397
+ .d-bg-bottom {
1398
+ background-position: bottom;
1399
+ }
1400
+ [dir=ltr] .d-bg-bottom-left {
1401
+ background-position: 0 100%;
1402
+ }
1403
+ [dir=rtl] .d-bg-bottom-left {
1404
+ background-position: 100% 100%;
1405
+ }
1406
+ [dir=ltr] .d-bg-bottom-right {
1407
+ background-position: 100% 100%;
1408
+ }
1409
+ [dir=rtl] .d-bg-bottom-right {
1410
+ background-position: 0% 100%;
1411
+ }
1412
+ .d-bg-center {
1413
+ background-position: 50%;
1414
+ }
1415
+ [dir=ltr] .d-bg-left {
1416
+ background-position: 0;
1417
+ }
1418
+ [dir=rtl] .d-bg-left {
1419
+ background-position: 100%;
1420
+ }
1421
+ [dir=ltr] .d-bg-right {
1422
+ background-position: 100%;
1423
+ }
1424
+ [dir=rtl] .d-bg-right {
1425
+ background-position: 0%;
1426
+ }
1427
+ .d-bg-top {
1428
+ background-position: top;
1429
+ }
1430
+ [dir=ltr] .d-bg-top-left {
1431
+ background-position: 0 0;
1432
+ }
1433
+ [dir=rtl] .d-bg-top-left {
1434
+ background-position: 100% 0;
1435
+ }
1436
+ [dir=ltr] .d-bg-top-right {
1437
+ background-position: 100% 0;
1438
+ }
1439
+ [dir=rtl] .d-bg-top-right {
1440
+ background-position: 0% 0;
1441
+ }
1442
+
1443
+ /** Background Repeat **/
1444
+ .d-bg-no-repeat {
1445
+ background-repeat: no-repeat;
1446
+ }
1447
+ .d-bg-repeat {
1448
+ background-repeat: repeat;
1449
+ }
1450
+ .d-bg-repeat-round {
1451
+ background-repeat: round;
1452
+ }
1453
+ .d-bg-repeat-space {
1454
+ background-repeat: space;
1455
+ }
1456
+ .d-bg-repeat-x {
1457
+ background-repeat: repeat-x;
1458
+ }
1459
+ .d-bg-repeat-y {
1460
+ background-repeat: repeat-y;
1461
+ }
1462
+
1463
+ /** Background Size **/
1464
+ .d-bg-auto {
1465
+ background-size: auto;
1466
+ }
1467
+ .d-bg-contain {
1468
+ background-size: contain;
1469
+ }
1470
+ .d-bg-cover {
1471
+ background-size: cover;
1472
+ }
1473
+
1474
+ /** Border Color **/
1475
+ .d-border-current {
1476
+ border-color: currentColor;
1477
+ }
1478
+ .d-border-transparent {
1479
+ border-color: transparent;
1480
+ }
1481
+
1482
+ /** Text Color **/
1483
+ .d-text-inherit {
1484
+ color: inherit;
1485
+ }
1486
+ .d-text-current {
1487
+ color: currentColor;
1488
+ }
1489
+ .d-text-transparent {
1490
+ color: transparent;
1491
+ }
1492
+
1493
+ /** Border Style **/
1494
+ .d-border-dashed {
1495
+ border-style: dashed;
1496
+ }
1497
+ .d-border-dotted {
1498
+ border-style: dotted;
1499
+ }
1500
+ .d-border-double {
1501
+ border-style: double;
1502
+ }
1503
+ .d-border-hidden {
1504
+ border-style: hidden;
1505
+ }
1506
+ .d-border-none {
1507
+ border-style: none;
1508
+ }
1509
+ .d-border-solid {
1510
+ border-style: solid;
1511
+ }
1512
+
1513
+ /** Cursor **/
1514
+ .d-cursor-alias {
1515
+ cursor: alias;
1516
+ }
1517
+ .d-cursor-all-scroll {
1518
+ cursor: all-scroll;
1519
+ }
1520
+ .d-cursor-auto {
1521
+ cursor: auto;
1522
+ }
1523
+ .d-cursor-cell {
1524
+ cursor: cell;
1525
+ }
1526
+ .d-cursor-col-resize {
1527
+ cursor: col-resize;
1528
+ }
1529
+ .d-cursor-context-menu {
1530
+ cursor: context-menu;
1531
+ }
1532
+ .d-cursor-copy {
1533
+ cursor: copy;
1534
+ }
1535
+ .d-cursor-crosshair {
1536
+ cursor: crosshair;
1537
+ }
1538
+ .d-cursor-default {
1539
+ cursor: default;
1540
+ }
1541
+ .d-cursor-e-resize {
1542
+ cursor: e-resize;
1543
+ }
1544
+ .d-cursor-ew-resize {
1545
+ cursor: ew-resize;
1546
+ }
1547
+ .d-cursor-grab {
1548
+ cursor: grab;
1549
+ }
1550
+ .d-cursor-grabbing {
1551
+ cursor: grabbing;
1552
+ }
1553
+ .d-cursor-help {
1554
+ cursor: help;
1555
+ }
1556
+ .d-cursor-move {
1557
+ cursor: move;
1558
+ }
1559
+ .d-cursor-n-resize {
1560
+ cursor: n-resize;
1561
+ }
1562
+ [dir=ltr] .d-cursor-ne-resize {
1563
+ cursor: ne-resize;
1564
+ }
1565
+ [dir=rtl] .d-cursor-ne-resize {
1566
+ cursor: nw-resize;
1567
+ }
1568
+ [dir=ltr] .d-cursor-nesw-resize {
1569
+ cursor: nesw-resize;
1570
+ }
1571
+ [dir=rtl] .d-cursor-nesw-resize {
1572
+ cursor: nwse-resize;
1573
+ }
1574
+ .d-cursor-no-drop {
1575
+ cursor: no-drop;
1576
+ }
1577
+ .d-cursor-none {
1578
+ cursor: none;
1579
+ }
1580
+ .d-cursor-not-allowed {
1581
+ cursor: not-allowed;
1582
+ }
1583
+ .d-cursor-ns-resize {
1584
+ cursor: ns-resize;
1585
+ }
1586
+ [dir=ltr] .d-cursor-nw-resize {
1587
+ cursor: nw-resize;
1588
+ }
1589
+ [dir=rtl] .d-cursor-nw-resize {
1590
+ cursor: ne-resize;
1591
+ }
1592
+ [dir=ltr] .d-cursor-nwse-resize {
1593
+ cursor: nwse-resize;
1594
+ }
1595
+ [dir=rtl] .d-cursor-nwse-resize {
1596
+ cursor: nesw-resize;
1597
+ }
1598
+ .d-cursor-pointer {
1599
+ cursor: pointer;
1600
+ }
1601
+ .d-cursor-progress {
1602
+ cursor: progress;
1603
+ }
1604
+ .d-cursor-row-resize {
1605
+ cursor: row-resize;
1606
+ }
1607
+ .d-cursor-s-resize {
1608
+ cursor: s-resize;
1609
+ }
1610
+ [dir=ltr] .d-cursor-se-resize {
1611
+ cursor: se-resize;
1612
+ }
1613
+ [dir=rtl] .d-cursor-se-resize {
1614
+ cursor: sw-resize;
1615
+ }
1616
+ [dir=ltr] .d-cursor-sw-resize {
1617
+ cursor: sw-resize;
1618
+ }
1619
+ [dir=rtl] .d-cursor-sw-resize {
1620
+ cursor: se-resize;
1621
+ }
1622
+ .d-cursor-text {
1623
+ cursor: text;
1624
+ }
1625
+ .d-cursor-vertical-text {
1626
+ cursor: vertical-text;
1627
+ }
1628
+ .d-cursor-w-resize {
1629
+ cursor: w-resize;
1630
+ }
1631
+ .d-cursor-wait {
1632
+ cursor: wait;
1633
+ }
1634
+ .d-cursor-zoom-in {
1635
+ cursor: zoom-in;
1636
+ }
1637
+ .d-cursor-zoom-out {
1638
+ cursor: zoom-out;
1639
+ }
1640
+
1641
+ /** Outline Color **/
1642
+ .d-outline-inherit {
1643
+ outline-color: inherit;
1644
+ }
1645
+ .d-outline-current {
1646
+ outline-color: currentColor;
1647
+ }
1648
+ .d-outline-transparent {
1649
+ outline-color: transparent;
1650
+ }
1651
+
1652
+ /** Outline Style **/
1653
+ .d-outline-dashed {
1654
+ outline-style: dashed;
1655
+ }
1656
+ .d-outline-dotted {
1657
+ outline-style: dotted;
1658
+ }
1659
+ .d-outline-double {
1660
+ outline-style: double;
1661
+ }
1662
+ .d-outline-none {
1663
+ outline-style: none;
1664
+ }
1665
+ .d-outline-solid {
1666
+ outline-style: solid;
1667
+ }
1668
+
1669
+ /** Text Shadow **/
1670
+ .d-text-shadow-none {
1671
+ text-shadow: none;
1672
+ }
1673
+
1674
+ /** Opacity **/
1675
+ .d-opacity-0 {
1676
+ opacity: 0;
1677
+ }
1678
+ .d-opacity-100 {
1679
+ opacity: 1;
1680
+ }
1681
+
1682
+ /** Mix Blend Mode **/
1683
+ .d-mix-blend-color {
1684
+ mix-blend-mode: color;
1685
+ }
1686
+ .d-mix-blend-color-burn {
1687
+ mix-blend-mode: color-burn;
1688
+ }
1689
+ .d-mix-blend-color-dodge {
1690
+ mix-blend-mode: color-dodge;
1691
+ }
1692
+ .d-mix-blend-darken {
1693
+ mix-blend-mode: darken;
1694
+ }
1695
+ .d-mix-blend-difference {
1696
+ mix-blend-mode: difference;
1697
+ }
1698
+ .d-mix-blend-exclusion {
1699
+ mix-blend-mode: exclusion;
1700
+ }
1701
+ .d-mix-blend-hard-light {
1702
+ mix-blend-mode: hard-light;
1703
+ }
1704
+ .d-mix-blend-hue {
1705
+ mix-blend-mode: hue;
1706
+ }
1707
+ .d-mix-blend-lighten {
1708
+ mix-blend-mode: lighten;
1709
+ }
1710
+ .d-mix-blend-luminosity {
1711
+ mix-blend-mode: luminosity;
1712
+ }
1713
+ .d-mix-blend-multiply {
1714
+ mix-blend-mode: multiply;
1715
+ }
1716
+ .d-mix-blend-normal {
1717
+ mix-blend-mode: normal;
1718
+ }
1719
+ .d-mix-blend-overlay {
1720
+ mix-blend-mode: overlay;
1721
+ }
1722
+ .d-mix-blend-plus-darker {
1723
+ mix-blend-mode: plus-darker;
1724
+ }
1725
+ .d-mix-blend-plus-lighter {
1726
+ mix-blend-mode: plus-lighter;
1727
+ }
1728
+ .d-mix-blend-saturation {
1729
+ mix-blend-mode: saturation;
1730
+ }
1731
+ .d-mix-blend-screen {
1732
+ mix-blend-mode: screen;
1733
+ }
1734
+ .d-mix-blend-soft-light {
1735
+ mix-blend-mode: soft-light;
1736
+ }
1737
+
1738
+ /** Background Blend Mode **/
1739
+ .d-bg-blend-color {
1740
+ background-blend-mode: color;
1741
+ }
1742
+ .d-bg-blend-color-burn {
1743
+ background-blend-mode: color-burn;
1744
+ }
1745
+ .d-bg-blend-color-dodge {
1746
+ background-blend-mode: color-dodge;
1747
+ }
1748
+ .d-bg-blend-darken {
1749
+ background-blend-mode: darken;
1750
+ }
1751
+ .d-bg-blend-difference {
1752
+ background-blend-mode: difference;
1753
+ }
1754
+ .d-bg-blend-exclusion {
1755
+ background-blend-mode: exclusion;
1756
+ }
1757
+ .d-bg-blend-hard-light {
1758
+ background-blend-mode: hard-light;
1759
+ }
1760
+ .d-bg-blend-hue {
1761
+ background-blend-mode: hue;
1762
+ }
1763
+ .d-bg-blend-lighten {
1764
+ background-blend-mode: lighten;
1765
+ }
1766
+ .d-bg-blend-luminosity {
1767
+ background-blend-mode: luminosity;
1768
+ }
1769
+ .d-bg-blend-multiply {
1770
+ background-blend-mode: multiply;
1771
+ }
1772
+ .d-bg-blend-normal {
1773
+ background-blend-mode: normal;
1774
+ }
1775
+ .d-bg-blend-overlay {
1776
+ background-blend-mode: overlay;
1777
+ }
1778
+ .d-bg-blend-saturation {
1779
+ background-blend-mode: saturation;
1780
+ }
1781
+ .d-bg-blend-screen {
1782
+ background-blend-mode: screen;
1783
+ }
1784
+ .d-bg-blend-soft-light {
1785
+ background-blend-mode: soft-light;
1786
+ }
1787
+
1788
+ /** Mask Clip **/
1789
+ .d-mask-clip-border {
1790
+ -webkit-mask-clip: border-box;
1791
+ mask-clip: border-box;
1792
+ }
1793
+ .d-mask-clip-content {
1794
+ -webkit-mask-clip: content-box;
1795
+ mask-clip: content-box;
1796
+ }
1797
+ .d-mask-clip-fill {
1798
+ -webkit-mask-clip: fill-box;
1799
+ mask-clip: fill-box;
1800
+ }
1801
+ .d-mask-clip-padding {
1802
+ -webkit-mask-clip: padding-box;
1803
+ mask-clip: padding-box;
1804
+ }
1805
+ .d-mask-clip-stroke {
1806
+ -webkit-mask-clip: stroke-box;
1807
+ mask-clip: stroke-box;
1808
+ }
1809
+ .d-mask-clip-view {
1810
+ -webkit-mask-clip: view-box;
1811
+ mask-clip: view-box;
1812
+ }
1813
+ .d-mask-no-clip {
1814
+ -webkit-mask-clip: no-clip;
1815
+ mask-clip: no-clip;
1816
+ }
1817
+
1818
+ /** Mask Origin **/
1819
+ .d-mask-origin-border {
1820
+ -webkit-mask-origin: border-box;
1821
+ mask-origin: border-box;
1822
+ }
1823
+ .d-mask-origin-content {
1824
+ -webkit-mask-origin: content-box;
1825
+ mask-origin: content-box;
1826
+ }
1827
+ .d-mask-origin-fill {
1828
+ -webkit-mask-origin: fill-box;
1829
+ mask-origin: fill-box;
1830
+ }
1831
+ .d-mask-origin-padding {
1832
+ -webkit-mask-origin: padding-box;
1833
+ mask-origin: padding-box;
1834
+ }
1835
+ .d-mask-origin-stroke {
1836
+ -webkit-mask-origin: stroke-box;
1837
+ mask-origin: stroke-box;
1838
+ }
1839
+ .d-mask-origin-view {
1840
+ -webkit-mask-origin: view-box;
1841
+ mask-origin: view-box;
1842
+ }
1843
+
1844
+ /** Mask Position **/
1845
+ .d-mask-bottom {
1846
+ -webkit-mask-position: bottom;
1847
+ mask-position: bottom;
1848
+ }
1849
+ .d-mask-bottom-left {
1850
+ -webkit-mask-position: 0 100%;
1851
+ mask-position: 0 100%;
1852
+ }
1853
+ .d-mask-bottom-right {
1854
+ -webkit-mask-position: 100% 100%;
1855
+ mask-position: 100% 100%;
1856
+ }
1857
+ .d-mask-center {
1858
+ -webkit-mask-position: 50%;
1859
+ mask-position: 50%;
1860
+ }
1861
+ .d-mask-left {
1862
+ -webkit-mask-position: 0;
1863
+ mask-position: 0;
1864
+ }
1865
+ .d-mask-right {
1866
+ -webkit-mask-position: 100%;
1867
+ mask-position: 100%;
1868
+ }
1869
+ .d-mask-top {
1870
+ -webkit-mask-position: top;
1871
+ mask-position: top;
1872
+ }
1873
+ .d-mask-top-left {
1874
+ -webkit-mask-position: 0 0;
1875
+ mask-position: 0 0;
1876
+ }
1877
+ .d-mask-top-right {
1878
+ -webkit-mask-position: 100% 0;
1879
+ mask-position: 100% 0;
1880
+ }
1881
+
1882
+ /** Mask Repeat **/
1883
+ .d-mask-no-repeat {
1884
+ -webkit-mask-repeat: no-repeat;
1885
+ mask-repeat: no-repeat;
1886
+ }
1887
+ .d-mask-repeat {
1888
+ -webkit-mask-repeat: repeat;
1889
+ mask-repeat: repeat;
1890
+ }
1891
+ .d-mask-repeat-round {
1892
+ -webkit-mask-repeat: round;
1893
+ mask-repeat: round;
1894
+ }
1895
+ .d-mask-repeat-space {
1896
+ -webkit-mask-repeat: space;
1897
+ mask-repeat: space;
1898
+ }
1899
+ .d-mask-repeat-x {
1900
+ -webkit-mask-repeat: repeat-x;
1901
+ mask-repeat: repeat-x;
1902
+ }
1903
+ .d-mask-repeat-y {
1904
+ -webkit-mask-repeat: repeat-y;
1905
+ mask-repeat: repeat-y;
1906
+ }
1907
+
1908
+ /** Mask Size **/
1909
+ .d-mask-auto {
1910
+ -webkit-mask-size: auto;
1911
+ mask-size: auto;
1912
+ }
1913
+ .d-mask-contain {
1914
+ -webkit-mask-size: contain;
1915
+ mask-size: contain;
1916
+ }
1917
+ .d-mask-cover {
1918
+ -webkit-mask-size: cover;
1919
+ mask-size: cover;
1920
+ }
1921
+
1922
+ /** Mask Type **/
1923
+ .d-mask-type-alpha {
1924
+ mask-type: alpha;
1925
+ }
1926
+ .d-mask-type-luminance {
1927
+ mask-type: luminance;
1928
+ }
1929
+
1930
+ /** Filter **/
1931
+ .d-filter-none {
1932
+ filter: none;
1933
+ }
1934
+
1935
+ /** Table Layout **/
1936
+ .d-table-auto {
1937
+ table-layout: auto;
1938
+ }
1939
+ .d-table-fixed {
1940
+ table-layout: fixed;
1941
+ }
1942
+
1943
+ /** Caption Side **/
1944
+ .d-caption-bottom {
1945
+ caption-side: bottom;
1946
+ }
1947
+ .d-caption-top {
1948
+ caption-side: top;
1949
+ }
1950
+
1951
+ /** Border Collapse **/
1952
+ .d-border-collapse {
1953
+ border-collapse: collapse;
1954
+ }
1955
+ .d-border-separate {
1956
+ border-collapse: separate;
1957
+ }
1958
+
1959
+ /** Transition Property **/
1960
+ .d-transition-none {
1961
+ transition-property: none;
1962
+ }
1963
+
1964
+ /** Animation **/
1965
+ [dir=ltr] .d-animate-none {
1966
+ animation: none;
1967
+ }
1968
+ [dir=rtl] .d-animate-none {
1969
+ animation: none;
1970
+ }
1971
+
1972
+ /** Transform Origin **/
1973
+ .d-origin-bottom {
1974
+ transform-origin: bottom;
1975
+ }
1976
+ [dir=ltr] .d-origin-bottom-left {
1977
+ transform-origin: 0 100%;
1978
+ }
1979
+ [dir=rtl] .d-origin-bottom-left {
1980
+ transform-origin: 100% 100%;
1981
+ }
1982
+ [dir=ltr] .d-origin-bottom-right {
1983
+ transform-origin: 100% 100%;
1984
+ }
1985
+ [dir=rtl] .d-origin-bottom-right {
1986
+ transform-origin: 0% 100%;
1987
+ }
1988
+ .d-origin-center {
1989
+ transform-origin: 50%;
1990
+ }
1991
+ [dir=ltr] .d-origin-left {
1992
+ transform-origin: 0;
1993
+ }
1994
+ [dir=rtl] .d-origin-left {
1995
+ transform-origin: 100%;
1996
+ }
1997
+ [dir=ltr] .d-origin-right {
1998
+ transform-origin: 100%;
1999
+ }
2000
+ [dir=rtl] .d-origin-right {
2001
+ transform-origin: 0%;
2002
+ }
2003
+ .d-origin-top {
2004
+ transform-origin: top;
2005
+ }
2006
+ [dir=ltr] .d-origin-top-left {
2007
+ transform-origin: 0 0;
2008
+ }
2009
+ [dir=rtl] .d-origin-top-left {
2010
+ transform-origin: 100% 0;
2011
+ }
2012
+ [dir=ltr] .d-origin-top-right {
2013
+ transform-origin: 100% 0;
2014
+ }
2015
+ [dir=rtl] .d-origin-top-right {
2016
+ transform-origin: 0% 0;
2017
+ }
2018
+
2019
+ /** Pointer Events **/
2020
+ .d-pointer-events-auto {
2021
+ pointer-events: auto;
2022
+ }
2023
+ .d-pointer-events-none {
2024
+ pointer-events: none;
2025
+ }
2026
+
2027
+ /** Touch Action **/
2028
+ .d-touch-auto {
2029
+ touch-action: auto;
2030
+ }
2031
+ .d-touch-manipulation {
2032
+ touch-action: manipulation;
2033
+ }
2034
+ .d-touch-none {
2035
+ touch-action: none;
2036
+ }
2037
+
2038
+ /** Resize **/
2039
+ .d-resize {
2040
+ resize: both;
2041
+ }
2042
+ .d-resize-none {
2043
+ resize: none;
2044
+ }
2045
+ .d-resize-x {
2046
+ resize: horizontal;
2047
+ }
2048
+ .d-resize-y {
2049
+ resize: vertical;
2050
+ }
2051
+
2052
+ /** Scroll Behavior **/
2053
+ .d-scroll-auto {
2054
+ scroll-behavior: auto;
2055
+ }
2056
+ .d-scroll-smooth {
2057
+ scroll-behavior: smooth;
2058
+ }
2059
+
2060
+ /** Scroll Snap Type **/
2061
+ .d-snap-none {
2062
+ scroll-snap-type: none;
2063
+ }
2064
+
2065
+ /** Scroll Snap Align **/
2066
+ .d-snap-align-none {
2067
+ scroll-snap-align: none;
2068
+ }
2069
+ .d-snap-center {
2070
+ scroll-snap-align: center;
2071
+ }
2072
+ .d-snap-end {
2073
+ scroll-snap-align: end;
2074
+ }
2075
+ .d-snap-start {
2076
+ scroll-snap-align: start;
2077
+ }
2078
+ .d-snap-always {
2079
+ scroll-snap-stop: always;
2080
+ }
2081
+ .d-snap-normal {
2082
+ scroll-snap-stop: normal;
2083
+ }
2084
+
2085
+ /** User Select **/
2086
+ .d-select-all {
2087
+ -webkit-user-select: all;
2088
+ user-select: all;
2089
+ }
2090
+ .d-select-auto {
2091
+ -webkit-user-select: auto;
2092
+ user-select: auto;
2093
+ }
2094
+ .d-select-none {
2095
+ -webkit-user-select: none;
2096
+ user-select: none;
2097
+ }
2098
+ .d-select-text {
2099
+ -webkit-user-select: text;
2100
+ user-select: text;
2101
+ }
2102
+
2103
+ /** Will Change **/
2104
+ .d-will-change-auto {
2105
+ will-change: auto;
2106
+ }
2107
+ .d-will-change-contents {
2108
+ will-change: contents;
2109
+ }
2110
+ .d-will-change-scroll {
2111
+ will-change: scroll-position;
2112
+ }
2113
+ .d-will-change-transform {
2114
+ will-change: transform;
2115
+ }
2116
+
2117
+ /** Fill **/
2118
+ .d-fill-none {
2119
+ fill: none;
2120
+ }
2121
+ .d-fill-inherit {
2122
+ fill: inherit;
2123
+ }
2124
+ .d-fill-current {
2125
+ fill: currentColor;
2126
+ }
2127
+
2128
+ /** Stroke **/
2129
+ .d-stroke-none {
2130
+ stroke: none;
2131
+ }
2132
+ .d-stroke-inherit {
2133
+ stroke: inherit;
2134
+ }
2135
+ .d-stroke-current {
2136
+ stroke: currentColor;
2137
+ }
2138
+
2139
+ /** Group Utilities **/
2140
+ .d-truncate {
2141
+ text-overflow: ellipsis;
2142
+ white-space: nowrap;
2143
+ overflow: hidden;
2144
+ }
2145
+