@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,35 @@
1
+ /**
2
+ * Semanticus CSS Semantics Modules
3
+ * Just the semantic component styles (no variables, no normalize)
4
+ * Used by the full version which imports variables/normalize separately
5
+ */
6
+
7
+ @import "./_aria-busy.css";
8
+ @import "./_article.css";
9
+ @import "./_body.css";
10
+ @import "./_button.css";
11
+ @import "./_code.css";
12
+ @import "./_details.css";
13
+ @import "./_dialog.css";
14
+ @import "./_document.css";
15
+ @import "./_embedded.css";
16
+ @import "./_figure.css";
17
+ @import "./_hidden.css";
18
+ @import "./_hr.css";
19
+ @import "./_input.css";
20
+ @import "./_links.css";
21
+ @import "./_main.css";
22
+ @import "./_nav.css";
23
+ @import "./_progress.css";
24
+ @import "./_role-group-search.css";
25
+ @import "./_role-toolbar.css";
26
+ @import "./_role-tooltip.css";
27
+ @import "./_section.css";
28
+ @import "./_table.css";
29
+ @import "./_type-checkbox-radio.css";
30
+ @import "./_type-color.css";
31
+ @import "./_type-date.css";
32
+ @import "./_type-file.css";
33
+ @import "./_type-range.css";
34
+ @import "./_type-search.css";
35
+ @import "./_typography.css";
@@ -0,0 +1,12 @@
1
+ /*
2
+ Semanticus CSS Size: Slim
3
+ */
4
+ :root,
5
+ :host {
6
+ --font-size: 1rem;
7
+ --spacing: 0.75rem;
8
+ --block-spacing-vertical: 1.2rem;
9
+ --block-spacing-horizontal: 1.2rem;
10
+ --form-element-spacing-vertical: 0.4rem;
11
+ --form-element-spacing-horizontal: 0.6rem;
12
+ }
@@ -0,0 +1,244 @@
1
+ /*!
2
+ * Adapted from Bootstrap v5.3.8 utilities (https://getbootstrap.com/)
3
+ * Copyright (c) 2011-2026 The Bootstrap Authors
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
5
+ */
6
+
7
+ /* ==========================================================================
8
+ Theme-independent variables
9
+ ========================================================================== */
10
+
11
+ :root,
12
+ :host {
13
+ /* Gradient */
14
+ --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
15
+
16
+ /* Borders & radii */
17
+ --border-style: solid;
18
+ --border-radius-sm: var(--border-radius);
19
+ --border-radius-lg: calc(var(--border-radius) * 2);
20
+ --border-radius-xl: calc(var(--border-radius) * 4);
21
+ --border-radius-xxl: calc(var(--border-radius) * 8);
22
+ --border-radius-pill: 50rem;
23
+
24
+ /* Border-width scale */
25
+ --border-width-1: var(--border-width);
26
+ --border-width-2: calc(var(--border-width) * 2);
27
+ --border-width-3: calc(var(--border-width) * 3);
28
+ --border-width-4: calc(var(--border-width) * 4);
29
+ --border-width-5: calc(var(--border-width) * 5);
30
+
31
+ /* Spacing scale */
32
+ --spacer-0: 0;
33
+ --spacer-1: calc(var(--spacing) * 0.25);
34
+ --spacer-2: calc(var(--spacing) * 0.5);
35
+ --spacer-3: var(--spacing);
36
+ --spacer-4: calc(var(--spacing) * 1.5);
37
+ --spacer-5: calc(var(--spacing) * 3);
38
+
39
+ /* Font-size scale */
40
+ --fs-1: calc(1.375rem + 1.5vw);
41
+ --fs-2: calc(1.325rem + 0.9vw);
42
+ --fs-3: calc(1.3rem + 0.6vw);
43
+ --fs-4: calc(1.275rem + 0.3vw);
44
+ --fs-5: 1.25rem;
45
+ --fs-6: 1rem;
46
+
47
+ /* Focus ring */
48
+ --focus-ring-width: var(--outline-width);
49
+ --focus-ring-opacity: 0.25;
50
+
51
+ /* Auto-switching mappings (resolved at computed-value time via Semanticus CSS) */
52
+ --emphasis-color: var(--color-contrast);
53
+ --secondary-color: var(--color-text-muted);
54
+ --border-color: var(--color-border-muted);
55
+ --box-shadow: var(--shadow-md);
56
+ --box-shadow-sm: var(--shadow-sm);
57
+ --box-shadow-lg: var(--shadow-lg);
58
+ --focus-ring-color: var(--color-primary-focus);
59
+
60
+ /* Status inverse colors (readable text on status-colored backgrounds) */
61
+ --color-success-inverse: #fff;
62
+ --color-info-inverse: #fff;
63
+ --color-warning-inverse: #000;
64
+ --color-danger-inverse: #fff;
65
+ }
66
+
67
+ /* ==========================================================================
68
+ Light theme (default)
69
+ ========================================================================== */
70
+
71
+ [data-theme="light"],
72
+ :root:not([data-theme="dark"]),
73
+ :host(:not([data-theme="dark"])) {
74
+ /* RGB channels */
75
+ --primary-rgb: 1, 114, 173;
76
+ --secondary-rgb: 93, 107, 137;
77
+ --contrast-rgb: 24, 28, 37;
78
+
79
+ /* Text emphasis (darker/hover shades in light) */
80
+ --primary-text-emphasis: #015887;
81
+ --secondary-text-emphasis: #48536b;
82
+ --success-text-emphasis: #20603b;
83
+ --info-text-emphasis: #025d5d;
84
+ --warning-text-emphasis: #694d00;
85
+ --danger-text-emphasis: #9b2318;
86
+ --contrast-text-emphasis: #495057;
87
+
88
+ /* Subtle backgrounds (low opacity) */
89
+ --primary-bg-subtle: rgba(1, 114, 173, 0.1);
90
+ --secondary-bg-subtle: rgba(93, 107, 137, 0.1);
91
+ --success-bg-subtle: rgba(43, 122, 76, 0.1);
92
+ --info-bg-subtle: rgba(4, 120, 120, 0.1);
93
+ --warning-bg-subtle: rgba(255, 191, 0, 0.1);
94
+ --danger-bg-subtle: rgba(197, 47, 33, 0.1);
95
+ --contrast-bg-subtle: #ced4da;
96
+
97
+ /* Subtle borders (medium opacity) */
98
+ --primary-border-subtle: rgba(1, 114, 173, 0.35);
99
+ --secondary-border-subtle: rgba(93, 107, 137, 0.35);
100
+ --success-border-subtle: rgba(43, 122, 76, 0.35);
101
+ --info-border-subtle: rgba(4, 120, 120, 0.35);
102
+ --warning-border-subtle: rgba(255, 191, 0, 0.35);
103
+ --danger-border-subtle: rgba(197, 47, 33, 0.35);
104
+ --contrast-border-subtle: #adb5bd;
105
+
106
+ /* Body & emphasis RGB */
107
+ --body-color-rgb: 55, 60, 68;
108
+ --body-bg-rgb: 255, 255, 255;
109
+ --emphasis-color-rgb: 24, 28, 37;
110
+
111
+ /* Secondary surfaces */
112
+ --secondary-bg-rgb: 233, 236, 239;
113
+
114
+ /* Link RGB */
115
+ --link-color-rgb: 1, 114, 173;
116
+ --link-hover-color-rgb: 1, 88, 135;
117
+
118
+ /* Link hover RGB (per-variant) */
119
+ --secondary-hover-color-rgb: 72, 83, 107;
120
+ --success-hover-color-rgb: 32, 96, 59;
121
+ --info-hover-color-rgb: 2, 93, 93;
122
+ --warning-hover-color-rgb: 232, 174, 1;
123
+ --danger-hover-color-rgb: 155, 35, 24;
124
+ --contrast-hover-color-rgb: 249, 250, 251;
125
+ }
126
+
127
+ /* ==========================================================================
128
+ Dark theme (system preference)
129
+ ========================================================================== */
130
+
131
+ @media (prefers-color-scheme: dark) {
132
+ :root:not([data-theme]),
133
+ :host(:not([data-theme])) {
134
+ /* RGB channels */
135
+ --primary-rgb: 1, 170, 255;
136
+ --secondary-rgb: 150, 158, 175;
137
+ --contrast-rgb: 248, 249, 250;
138
+
139
+ /* Text emphasis (lighter/hover shades in dark) */
140
+ --primary-text-emphasis: #79c0ff;
141
+ --secondary-text-emphasis: #b3b9c5;
142
+ --success-text-emphasis: #93deb5;
143
+ --info-text-emphasis: #25dddd;
144
+ --warning-text-emphasis: #e8ae01;
145
+ --danger-text-emphasis: #f5b7a8;
146
+ --contrast-text-emphasis: #f8f9fa;
147
+
148
+ /* Subtle backgrounds */
149
+ --primary-bg-subtle: rgba(1, 170, 255, 0.15);
150
+ --secondary-bg-subtle: rgba(150, 158, 175, 0.15);
151
+ --success-bg-subtle: rgba(110, 213, 157, 0.15);
152
+ --info-bg-subtle: rgba(10, 194, 194, 0.15);
153
+ --warning-bg-subtle: rgba(255, 191, 0, 0.15);
154
+ --danger-bg-subtle: rgba(243, 143, 121, 0.15);
155
+ --contrast-bg-subtle: #2a3140;
156
+
157
+ /* Subtle borders */
158
+ --primary-border-subtle: rgba(1, 170, 255, 0.35);
159
+ --secondary-border-subtle: rgba(150, 158, 175, 0.35);
160
+ --success-border-subtle: rgba(110, 213, 157, 0.35);
161
+ --info-border-subtle: rgba(10, 194, 194, 0.35);
162
+ --warning-border-subtle: rgba(255, 191, 0, 0.35);
163
+ --danger-border-subtle: rgba(243, 143, 121, 0.35);
164
+ --contrast-border-subtle: #2a3140;
165
+
166
+ /* Body & emphasis RGB */
167
+ --body-color-rgb: 194, 199, 208;
168
+ --body-bg-rgb: 19, 23, 31;
169
+ --emphasis-color-rgb: 223, 227, 235;
170
+
171
+ /* Secondary surfaces */
172
+ --secondary-bg-rgb: 42, 49, 64;
173
+
174
+ /* Link RGB */
175
+ --link-color-rgb: 1, 170, 255;
176
+ --link-hover-color-rgb: 121, 192, 255;
177
+
178
+ /* Link hover RGB (per-variant) */
179
+ --secondary-hover-color-rgb: 179, 185, 197;
180
+ --success-hover-color-rgb: 147, 222, 181;
181
+ --info-hover-color-rgb: 37, 221, 221;
182
+ --warning-hover-color-rgb: 232, 174, 1;
183
+ --danger-hover-color-rgb: 245, 183, 168;
184
+ --contrast-hover-color-rgb: 255, 255, 255;
185
+ }
186
+ }
187
+
188
+ /* ==========================================================================
189
+ Dark theme (explicit)
190
+ ========================================================================== */
191
+
192
+ [data-theme="dark"] {
193
+ /* RGB channels */
194
+ --primary-rgb: 1, 170, 255;
195
+ --secondary-rgb: 150, 158, 175;
196
+ --contrast-rgb: 248, 249, 250;
197
+
198
+ /* Text emphasis (lighter/hover shades in dark) */
199
+ --primary-text-emphasis: #79c0ff;
200
+ --secondary-text-emphasis: #b3b9c5;
201
+ --success-text-emphasis: #93deb5;
202
+ --info-text-emphasis: #25dddd;
203
+ --warning-text-emphasis: #e8ae01;
204
+ --danger-text-emphasis: #f5b7a8;
205
+ --contrast-text-emphasis: #f8f9fa;
206
+
207
+ /* Subtle backgrounds */
208
+ --primary-bg-subtle: rgba(1, 170, 255, 0.15);
209
+ --secondary-bg-subtle: rgba(150, 158, 175, 0.15);
210
+ --success-bg-subtle: rgba(110, 213, 157, 0.15);
211
+ --info-bg-subtle: rgba(10, 194, 194, 0.15);
212
+ --warning-bg-subtle: rgba(255, 191, 0, 0.15);
213
+ --danger-bg-subtle: rgba(243, 143, 121, 0.15);
214
+ --contrast-bg-subtle: #2a3140;
215
+
216
+ /* Subtle borders */
217
+ --primary-border-subtle: rgba(1, 170, 255, 0.35);
218
+ --secondary-border-subtle: rgba(150, 158, 175, 0.35);
219
+ --success-border-subtle: rgba(110, 213, 157, 0.35);
220
+ --info-border-subtle: rgba(10, 194, 194, 0.35);
221
+ --warning-border-subtle: rgba(255, 191, 0, 0.35);
222
+ --danger-border-subtle: rgba(243, 143, 121, 0.35);
223
+ --contrast-border-subtle: #2a3140;
224
+
225
+ /* Body & emphasis RGB */
226
+ --body-color-rgb: 194, 199, 208;
227
+ --body-bg-rgb: 19, 23, 31;
228
+ --emphasis-color-rgb: 223, 227, 235;
229
+
230
+ /* Secondary surfaces */
231
+ --secondary-bg-rgb: 42, 49, 64;
232
+
233
+ /* Link RGB */
234
+ --link-color-rgb: 1, 170, 255;
235
+ --link-hover-color-rgb: 121, 192, 255;
236
+
237
+ /* Link hover RGB (per-variant) */
238
+ --secondary-hover-color-rgb: 179, 185, 197;
239
+ --success-hover-color-rgb: 147, 222, 181;
240
+ --info-hover-color-rgb: 37, 221, 221;
241
+ --warning-hover-color-rgb: 232, 174, 1;
242
+ --danger-hover-color-rgb: 245, 183, 168;
243
+ --contrast-hover-color-rgb: 255, 255, 255;
244
+ }
@@ -0,0 +1,216 @@
1
+ .rounded {
2
+ border-radius: var(--border-radius) !important;
3
+ }
4
+
5
+ .rounded-0 {
6
+ border-radius: 0 !important;
7
+ }
8
+
9
+ .rounded-1 {
10
+ border-radius: var(--border-radius-sm) !important;
11
+ }
12
+
13
+ .rounded-2 {
14
+ border-radius: var(--border-radius) !important;
15
+ }
16
+
17
+ .rounded-3 {
18
+ border-radius: var(--border-radius-lg) !important;
19
+ }
20
+
21
+ .rounded-4 {
22
+ border-radius: var(--border-radius-xl) !important;
23
+ }
24
+
25
+ .rounded-5 {
26
+ border-radius: var(--border-radius-xxl) !important;
27
+ }
28
+
29
+ .rounded-circle {
30
+ border-radius: 50% !important;
31
+ }
32
+
33
+ .rounded-pill {
34
+ border-radius: var(--border-radius-pill) !important;
35
+ }
36
+
37
+ .rounded-top {
38
+ border-top-left-radius: var(--border-radius) !important;
39
+ border-top-right-radius: var(--border-radius) !important;
40
+ }
41
+
42
+ .rounded-top-0 {
43
+ border-top-left-radius: 0 !important;
44
+ border-top-right-radius: 0 !important;
45
+ }
46
+
47
+ .rounded-top-1 {
48
+ border-top-left-radius: var(--border-radius-sm) !important;
49
+ border-top-right-radius: var(--border-radius-sm) !important;
50
+ }
51
+
52
+ .rounded-top-2 {
53
+ border-top-left-radius: var(--border-radius) !important;
54
+ border-top-right-radius: var(--border-radius) !important;
55
+ }
56
+
57
+ .rounded-top-3 {
58
+ border-top-left-radius: var(--border-radius-lg) !important;
59
+ border-top-right-radius: var(--border-radius-lg) !important;
60
+ }
61
+
62
+ .rounded-top-4 {
63
+ border-top-left-radius: var(--border-radius-xl) !important;
64
+ border-top-right-radius: var(--border-radius-xl) !important;
65
+ }
66
+
67
+ .rounded-top-5 {
68
+ border-top-left-radius: var(--border-radius-xxl) !important;
69
+ border-top-right-radius: var(--border-radius-xxl) !important;
70
+ }
71
+
72
+ .rounded-top-circle {
73
+ border-top-left-radius: 50% !important;
74
+ border-top-right-radius: 50% !important;
75
+ }
76
+
77
+ .rounded-top-pill {
78
+ border-top-left-radius: var(--border-radius-pill) !important;
79
+ border-top-right-radius: var(--border-radius-pill) !important;
80
+ }
81
+
82
+ .rounded-end {
83
+ border-top-right-radius: var(--border-radius) !important;
84
+ border-bottom-right-radius: var(--border-radius) !important;
85
+ }
86
+
87
+ .rounded-end-0 {
88
+ border-top-right-radius: 0 !important;
89
+ border-bottom-right-radius: 0 !important;
90
+ }
91
+
92
+ .rounded-end-1 {
93
+ border-top-right-radius: var(--border-radius-sm) !important;
94
+ border-bottom-right-radius: var(--border-radius-sm) !important;
95
+ }
96
+
97
+ .rounded-end-2 {
98
+ border-top-right-radius: var(--border-radius) !important;
99
+ border-bottom-right-radius: var(--border-radius) !important;
100
+ }
101
+
102
+ .rounded-end-3 {
103
+ border-top-right-radius: var(--border-radius-lg) !important;
104
+ border-bottom-right-radius: var(--border-radius-lg) !important;
105
+ }
106
+
107
+ .rounded-end-4 {
108
+ border-top-right-radius: var(--border-radius-xl) !important;
109
+ border-bottom-right-radius: var(--border-radius-xl) !important;
110
+ }
111
+
112
+ .rounded-end-5 {
113
+ border-top-right-radius: var(--border-radius-xxl) !important;
114
+ border-bottom-right-radius: var(--border-radius-xxl) !important;
115
+ }
116
+
117
+ .rounded-end-circle {
118
+ border-top-right-radius: 50% !important;
119
+ border-bottom-right-radius: 50% !important;
120
+ }
121
+
122
+ .rounded-end-pill {
123
+ border-top-right-radius: var(--border-radius-pill) !important;
124
+ border-bottom-right-radius: var(--border-radius-pill) !important;
125
+ }
126
+
127
+ .rounded-bottom {
128
+ border-bottom-right-radius: var(--border-radius) !important;
129
+ border-bottom-left-radius: var(--border-radius) !important;
130
+ }
131
+
132
+ .rounded-bottom-0 {
133
+ border-bottom-right-radius: 0 !important;
134
+ border-bottom-left-radius: 0 !important;
135
+ }
136
+
137
+ .rounded-bottom-1 {
138
+ border-bottom-right-radius: var(--border-radius-sm) !important;
139
+ border-bottom-left-radius: var(--border-radius-sm) !important;
140
+ }
141
+
142
+ .rounded-bottom-2 {
143
+ border-bottom-right-radius: var(--border-radius) !important;
144
+ border-bottom-left-radius: var(--border-radius) !important;
145
+ }
146
+
147
+ .rounded-bottom-3 {
148
+ border-bottom-right-radius: var(--border-radius-lg) !important;
149
+ border-bottom-left-radius: var(--border-radius-lg) !important;
150
+ }
151
+
152
+ .rounded-bottom-4 {
153
+ border-bottom-right-radius: var(--border-radius-xl) !important;
154
+ border-bottom-left-radius: var(--border-radius-xl) !important;
155
+ }
156
+
157
+ .rounded-bottom-5 {
158
+ border-bottom-right-radius: var(--border-radius-xxl) !important;
159
+ border-bottom-left-radius: var(--border-radius-xxl) !important;
160
+ }
161
+
162
+ .rounded-bottom-circle {
163
+ border-bottom-right-radius: 50% !important;
164
+ border-bottom-left-radius: 50% !important;
165
+ }
166
+
167
+ .rounded-bottom-pill {
168
+ border-bottom-right-radius: var(--border-radius-pill) !important;
169
+ border-bottom-left-radius: var(--border-radius-pill) !important;
170
+ }
171
+
172
+ .rounded-start {
173
+ border-bottom-left-radius: var(--border-radius) !important;
174
+ border-top-left-radius: var(--border-radius) !important;
175
+ }
176
+
177
+ .rounded-start-0 {
178
+ border-bottom-left-radius: 0 !important;
179
+ border-top-left-radius: 0 !important;
180
+ }
181
+
182
+ .rounded-start-1 {
183
+ border-bottom-left-radius: var(--border-radius-sm) !important;
184
+ border-top-left-radius: var(--border-radius-sm) !important;
185
+ }
186
+
187
+ .rounded-start-2 {
188
+ border-bottom-left-radius: var(--border-radius) !important;
189
+ border-top-left-radius: var(--border-radius) !important;
190
+ }
191
+
192
+ .rounded-start-3 {
193
+ border-bottom-left-radius: var(--border-radius-lg) !important;
194
+ border-top-left-radius: var(--border-radius-lg) !important;
195
+ }
196
+
197
+ .rounded-start-4 {
198
+ border-bottom-left-radius: var(--border-radius-xl) !important;
199
+ border-top-left-radius: var(--border-radius-xl) !important;
200
+ }
201
+
202
+ .rounded-start-5 {
203
+ border-bottom-left-radius: var(--border-radius-xxl) !important;
204
+ border-top-left-radius: var(--border-radius-xxl) !important;
205
+ }
206
+
207
+ .rounded-start-circle {
208
+ border-bottom-left-radius: 50% !important;
209
+ border-top-left-radius: 50% !important;
210
+ }
211
+
212
+ .rounded-start-pill {
213
+ border-bottom-left-radius: var(--border-radius-pill) !important;
214
+ border-top-left-radius: var(--border-radius-pill) !important;
215
+ }
216
+
@@ -0,0 +1,39 @@
1
+ .border {
2
+ border: var(--border-width) var(--border-style) var(--border-color) !important;
3
+ }
4
+
5
+ .border-0 {
6
+ border: 0 !important;
7
+ }
8
+
9
+ .border-top {
10
+ border-top: var(--border-width) var(--border-style) var(--border-color) !important;
11
+ }
12
+
13
+ .border-top-0 {
14
+ border-top: 0 !important;
15
+ }
16
+
17
+ .border-end {
18
+ border-right: var(--border-width) var(--border-style) var(--border-color) !important;
19
+ }
20
+
21
+ .border-end-0 {
22
+ border-right: 0 !important;
23
+ }
24
+
25
+ .border-bottom {
26
+ border-bottom: var(--border-width) var(--border-style) var(--border-color) !important;
27
+ }
28
+
29
+ .border-bottom-0 {
30
+ border-bottom: 0 !important;
31
+ }
32
+
33
+ .border-start {
34
+ border-left: var(--border-width) var(--border-style) var(--border-color) !important;
35
+ }
36
+
37
+ .border-start-0 {
38
+ border-left: 0 !important;
39
+ }
@@ -0,0 +1,39 @@
1
+ .border-1 {
2
+ border-width: var(--border-width-1) !important;
3
+ }
4
+
5
+ .border-2 {
6
+ border-width: var(--border-width-2) !important;
7
+ }
8
+
9
+ .border-3 {
10
+ border-width: var(--border-width-3) !important;
11
+ }
12
+
13
+ .border-4 {
14
+ border-width: var(--border-width-4) !important;
15
+ }
16
+
17
+ .border-5 {
18
+ border-width: var(--border-width-5) !important;
19
+ }
20
+
21
+ .border-opacity-10 {
22
+ --border-opacity: 0.1;
23
+ }
24
+
25
+ .border-opacity-25 {
26
+ --border-opacity: 0.25;
27
+ }
28
+
29
+ .border-opacity-50 {
30
+ --border-opacity: 0.5;
31
+ }
32
+
33
+ .border-opacity-75 {
34
+ --border-opacity: 0.75;
35
+ }
36
+
37
+ .border-opacity-100 {
38
+ --border-opacity: 1;
39
+ }