@lottecode/lottecss 0.0.1 → 0.0.3

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