doom-design-system 0.1.7 → 0.1.8

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