@abstraks-dev/ui-library 1.1.7 → 1.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 (72) hide show
  1. package/dist/components/Error.js +1 -1
  2. package/dist/components/Form.js +1 -1
  3. package/dist/components/Prompt.js +1 -1
  4. package/dist/styles/anchor.css +147 -0
  5. package/dist/styles/anchor.css.map +1 -0
  6. package/dist/styles/animation-accessibility.css +90 -0
  7. package/dist/styles/animation-accessibility.css.map +1 -0
  8. package/dist/styles/animation-toggle.css +223 -0
  9. package/dist/styles/animation-toggle.css.map +1 -0
  10. package/dist/styles/animation.css +3772 -0
  11. package/dist/styles/animation.css.map +1 -0
  12. package/dist/styles/avatar.css +349 -0
  13. package/dist/styles/avatar.css.map +1 -0
  14. package/dist/styles/button.css +491 -0
  15. package/dist/styles/button.css.map +1 -0
  16. package/dist/styles/card.css +306 -0
  17. package/dist/styles/card.css.map +1 -0
  18. package/dist/styles/checkbox.css +233 -0
  19. package/dist/styles/checkbox.css.map +1 -0
  20. package/dist/styles/crud.css +525 -0
  21. package/dist/styles/crud.css.map +1 -0
  22. package/dist/styles/dragAndDrop.css +400 -0
  23. package/dist/styles/dragAndDrop.css.map +1 -0
  24. package/dist/styles/error.css +311 -0
  25. package/dist/styles/error.css.map +1 -0
  26. package/dist/styles/footer.css +165 -0
  27. package/dist/styles/footer.css.map +1 -0
  28. package/dist/styles/form.css +492 -0
  29. package/dist/styles/form.css.map +1 -0
  30. package/dist/styles/grid.css +28 -0
  31. package/dist/styles/grid.css.map +1 -0
  32. package/dist/styles/header.css +345 -0
  33. package/dist/styles/header.css.map +1 -0
  34. package/dist/styles/heading.css +242 -0
  35. package/dist/styles/heading.css.map +1 -0
  36. package/dist/styles/hero.css +293 -0
  37. package/dist/styles/hero.css.map +1 -0
  38. package/dist/styles/htmlElements.css +129 -0
  39. package/dist/styles/htmlElements.css.map +1 -0
  40. package/dist/styles/image.css +10 -0
  41. package/dist/styles/image.css.map +1 -0
  42. package/dist/styles/label.css +407 -0
  43. package/dist/styles/label.css.map +1 -0
  44. package/dist/styles/list-item.css +6 -0
  45. package/dist/styles/list-item.css.map +1 -0
  46. package/dist/styles/loader.css +419 -0
  47. package/dist/styles/loader.css.map +1 -0
  48. package/dist/styles/logo.css +19 -0
  49. package/dist/styles/logo.css.map +1 -0
  50. package/dist/styles/menu-hover.css +142 -0
  51. package/dist/styles/menu-hover.css.map +1 -0
  52. package/dist/styles/paragraph.css +200 -0
  53. package/dist/styles/paragraph.css.map +1 -0
  54. package/dist/styles/prompt.css +168 -0
  55. package/dist/styles/prompt.css.map +1 -0
  56. package/dist/styles/radio.css +259 -0
  57. package/dist/styles/radio.css.map +1 -0
  58. package/dist/styles/select.css +403 -0
  59. package/dist/styles/select.css.map +1 -0
  60. package/dist/styles/side-menu.css +413 -0
  61. package/dist/styles/side-menu.css.map +1 -0
  62. package/dist/styles/tabs.css +562 -0
  63. package/dist/styles/tabs.css.map +1 -0
  64. package/dist/styles/text-area.css +451 -0
  65. package/dist/styles/text-area.css.map +1 -0
  66. package/dist/styles/text-input.css +243 -0
  67. package/dist/styles/text-input.css.map +1 -0
  68. package/dist/styles/toggle.css +3 -0
  69. package/dist/styles/toggle.css.map +1 -0
  70. package/dist/styles/unordered-list.css +9 -0
  71. package/dist/styles/unordered-list.css.map +1 -0
  72. package/package.json +3 -2
@@ -0,0 +1,345 @@
1
+ :root {
2
+ --small: (min-width: 607px);
3
+ --medium: (min-width: 768px);
4
+ --large: (min-width: 992px);
5
+ --xlarge: (min-width: 1200px);
6
+ --color-primary: #009900;
7
+ --color-primary-hover: rgba(1, 116, 1, 0.9);
8
+ --color-secondary: #7086f1;
9
+ --color-secondary-hover: rgba(83, 100, 185, 0.9);
10
+ --color-warning: #ff9800;
11
+ --color-warning-hover: rgba(214, 130, 4, 0.9);
12
+ --color-success: #57f500;
13
+ --color-success-hover: rgba(74, 207, 2, 0.9);
14
+ --color-error: #f44336;
15
+ --color-error-hover: rgba(216, 58, 47, 0.9);
16
+ --color-shade: rgba(0, 0, 0, 0.5);
17
+ --color-tint: rgba(250, 250, 250, 0.5);
18
+ --color-white: #fff;
19
+ --color-black: #000;
20
+ --color-font-body: #333;
21
+ --color-black-alpha: rgba(0, 0, 0, 0.6);
22
+ --focus-color: #4d90fe;
23
+ --shadow-primary: rgba(0, 153, 0, 0.2);
24
+ --shadow-primary-hover: rgba(0, 153, 0, 0.3);
25
+ --shadow-primary-strong: rgba(0, 153, 0, 0.4);
26
+ --shadow-primary-strongest: rgba(0, 153, 0, 0.5);
27
+ --shadow-secondary: rgba(112, 134, 241, 0.2);
28
+ --shadow-secondary-hover: rgba(112, 134, 241, 0.3);
29
+ --shadow-secondary-strong: rgba(112, 134, 241, 0.4);
30
+ --shadow-secondary-strongest: rgba(112, 134, 241, 0.5);
31
+ --shadow-success: rgba(87, 245, 0, 0.2);
32
+ --shadow-success-hover: rgba(87, 245, 0, 0.3);
33
+ --shadow-success-strong: rgba(87, 245, 0, 0.4);
34
+ --shadow-success-strongest: rgba(87, 245, 0, 0.5);
35
+ --shadow-error: rgba(244, 67, 54, 0.2);
36
+ --shadow-error-hover: rgba(244, 67, 54, 0.3);
37
+ --shadow-error-strong: rgba(244, 67, 54, 0.4);
38
+ --shadow-error-strongest: rgba(244, 67, 54, 0.5);
39
+ --shadow-warning: rgba(255, 152, 0, 0.2);
40
+ --shadow-warning-hover: rgba(255, 152, 0, 0.3);
41
+ --shadow-warning-strong: rgba(255, 152, 0, 0.4);
42
+ --shadow-warning-strongest: rgba(255, 152, 0, 0.5);
43
+ --border-radius-xs: 4px;
44
+ --border-radius-sm: 4px;
45
+ --border-radius-md: 6px;
46
+ --border-radius-lg: 8px;
47
+ --border-radius-xl: 10px;
48
+ --z-index-base: 1;
49
+ --z-index-low: 10;
50
+ --z-index-dropdown: 100;
51
+ --z-index-sticky: 200;
52
+ --z-index-popover: 300;
53
+ --z-index-tooltip: 400;
54
+ --z-index-overlay: 1000;
55
+ --z-index-modal: 1010;
56
+ --z-index-notification: 1020;
57
+ --gray-100: #f8f9fa;
58
+ --gray-200: #e9ecef;
59
+ --gray-300: #dee2e6;
60
+ --gray-400: #ced4da;
61
+ --gray-500: #adb5bd;
62
+ --gray-600: #6c757d;
63
+ --gray-700: #495057;
64
+ --gray-800: #343a40;
65
+ --gray-900: #212529;
66
+ --black: #000;
67
+ --color-muted-blue: #8793ab;
68
+ --heading-one: 2.5rem;
69
+ --heading-two: 2rem;
70
+ --heading-three: 1.75rem;
71
+ --heading-four: 1.5rem;
72
+ --heading-five: 1.25rem;
73
+ --heading-six: 1rem;
74
+ --font-family-body: Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
75
+ --font-size-xs: 0.75rem;
76
+ --font-size-sm: 0.875rem;
77
+ --font-size-base: 1rem;
78
+ --font-size-lg: 1.125rem;
79
+ --font-size-xl: 1.25rem;
80
+ --line-height-tight: 1.25;
81
+ --line-height-base: 1.5;
82
+ --line-height-relaxed: 1.625;
83
+ --font-weight-light: 300;
84
+ --font-weight-normal: 400;
85
+ --font-weight-medium: 500;
86
+ --font-weight-semibold: 600;
87
+ --font-weight-bold: 700;
88
+ --spacing-xs: 0.25rem;
89
+ --spacing-sm: 0.5rem;
90
+ --spacing-md: 1rem;
91
+ --spacing-lg: 1.5rem;
92
+ --spacing-xl: 2rem;
93
+ --spacing-2xl: 3rem;
94
+ --text-color: #1f2937;
95
+ --text-muted: #6b7280;
96
+ --background-color: #ffffff;
97
+ --border-color: #d1d5db;
98
+ --border-color-hover: #9ca3af;
99
+ --error-text: #dc2626;
100
+ --error-background: #fef2f2;
101
+ --error-border: #fecaca;
102
+ --success-text: #059669;
103
+ --success-background: #f0fdf4;
104
+ --success-border: #bbf7d0;
105
+ --warning-text: #d97706;
106
+ --warning-background: #fffbeb;
107
+ --warning-border: #fed7aa;
108
+ --primary-color: #3b82f6;
109
+ --focus-ring-color: #3b82f6;
110
+ --border-radius: 0.375rem;
111
+ }
112
+
113
+ .header {
114
+ width: 100%;
115
+ display: flex;
116
+ align-items: center;
117
+ flex-direction: row;
118
+ padding: 15px;
119
+ background-color: #fff;
120
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
121
+ }
122
+ .header *:focus {
123
+ outline: 2px solid #4d90fe;
124
+ outline-offset: 2px;
125
+ }
126
+ @media (prefers-contrast: high) {
127
+ .header {
128
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
129
+ border-bottom: 1px solid #000;
130
+ }
131
+ }
132
+ .header .container-large {
133
+ width: 100%;
134
+ display: flex;
135
+ flex-direction: row;
136
+ align-items: center;
137
+ }
138
+ .header .container-large .navigation {
139
+ margin-left: auto;
140
+ }
141
+ .header .container-mobile {
142
+ width: 100%;
143
+ display: flex;
144
+ align-items: center;
145
+ }
146
+ .header .container-mobile .side-menu {
147
+ width: 50%;
148
+ display: inline-flex;
149
+ justify-content: flex-end;
150
+ }
151
+ .header .container-mobile .side-menu .overlay {
152
+ background-color: #fff;
153
+ }
154
+ .header .container-mobile .side-menu .menu .wrapper-content {
155
+ display: flex;
156
+ flex-direction: column;
157
+ width: 100%;
158
+ background-color: #fff;
159
+ }
160
+ .header .container-mobile .side-menu .menu .wrapper-content .menu-item {
161
+ margin: 15px 0;
162
+ }
163
+ .header .container-mobile .side-menu .menu .wrapper-header {
164
+ background-color: #fff;
165
+ }
166
+ .header .mobile-menu-trigger,
167
+ .header .mobile-menu-close {
168
+ background: none;
169
+ border: none;
170
+ padding: 8px;
171
+ cursor: pointer;
172
+ border-radius: 4px;
173
+ transition: background-color 0.2s ease;
174
+ }
175
+ .header .mobile-menu-trigger:hover,
176
+ .header .mobile-menu-close:hover {
177
+ background-color: rgba(0, 0, 0, 0.05);
178
+ }
179
+ .header .mobile-menu-trigger:focus,
180
+ .header .mobile-menu-close:focus {
181
+ outline: 2px solid #4d90fe;
182
+ outline-offset: 2px;
183
+ }
184
+ @media (min-width: 768px) {
185
+ .header .navigation {
186
+ display: inline-flex;
187
+ justify-content: flex-end;
188
+ }
189
+ }
190
+ .header .navigation .unordered-list {
191
+ display: flex;
192
+ flex-direction: column;
193
+ }
194
+ @media (min-width: 768px) {
195
+ .header .navigation .unordered-list {
196
+ display: inline-flex;
197
+ flex-direction: row;
198
+ align-items: center;
199
+ justify-content: flex-end;
200
+ padding: 0;
201
+ margin: 0;
202
+ }
203
+ }
204
+ .header .navigation .unordered-list.auth-menu {
205
+ border-top: 1px solid #e9ecef;
206
+ }
207
+ @media (min-width: 768px) {
208
+ .header .navigation .unordered-list.auth-menu {
209
+ border-left: 1px solid #e9ecef;
210
+ border-top: none;
211
+ }
212
+ }
213
+ .header .navigation .unordered-list.auth-menu .head .ellipses {
214
+ background: none;
215
+ border: none;
216
+ padding: 4px;
217
+ cursor: pointer;
218
+ border-radius: 50%;
219
+ position: relative;
220
+ transition: background-color 0.2s ease;
221
+ }
222
+ .header .navigation .unordered-list.auth-menu .head .ellipses:hover {
223
+ background-color: rgba(0, 0, 0, 0.05);
224
+ }
225
+ .header .navigation .unordered-list.auth-menu .head .ellipses:focus {
226
+ outline: 2px solid #4d90fe;
227
+ outline-offset: 2px;
228
+ }
229
+ .header .navigation .unordered-list.auth-menu .head .ellipses[aria-expanded=true] {
230
+ background-color: rgba(0, 0, 0, 0.1);
231
+ }
232
+ .header .navigation .unordered-list.auth-menu .head .ellipses .ellipses-content {
233
+ display: flex;
234
+ z-index: 100;
235
+ position: absolute;
236
+ width: 200px;
237
+ right: 0;
238
+ top: 100%;
239
+ margin-top: 8px;
240
+ border-radius: 8px;
241
+ box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
242
+ background-color: #fff;
243
+ border: 1px solid rgba(0, 0, 0, 0.1);
244
+ padding: 8px 0;
245
+ opacity: 1;
246
+ transform: none;
247
+ transition: opacity 226ms cubic-bezier(0.4, 0, 0.2, 1), transform 151ms cubic-bezier(0.4, 0, 0.2, 1);
248
+ }
249
+ @media (prefers-contrast: high) {
250
+ .header .navigation .unordered-list.auth-menu .head .ellipses .ellipses-content {
251
+ border: 2px solid #000;
252
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
253
+ }
254
+ }
255
+ .header .navigation .unordered-list.auth-menu .head .ellipses .ellipses-content .unordered-list {
256
+ align-items: flex-start;
257
+ flex-direction: column;
258
+ width: 100%;
259
+ }
260
+ .header .navigation .unordered-list.auth-menu .head .ellipses .ellipses-content .unordered-list .list-item {
261
+ width: 100%;
262
+ padding: 0;
263
+ }
264
+ .header .navigation .unordered-list.auth-menu .head .ellipses .ellipses-content .unordered-list .list-item [role=menuitem] {
265
+ display: block;
266
+ padding: 12px 16px;
267
+ width: 100%;
268
+ color: #333;
269
+ text-decoration: none;
270
+ transition: background-color 0.2s ease;
271
+ }
272
+ .header .navigation .unordered-list.auth-menu .head .ellipses .ellipses-content .unordered-list .list-item [role=menuitem]:hover, .header .navigation .unordered-list.auth-menu .head .ellipses .ellipses-content .unordered-list .list-item [role=menuitem]:focus {
273
+ background-color: rgba(0, 0, 0, 0.05);
274
+ color: #009900;
275
+ }
276
+ .header .navigation .unordered-list.auth-menu .head .ellipses .ellipses-content .unordered-list .list-item [role=menuitem]:focus {
277
+ outline: 2px solid #4d90fe;
278
+ outline-offset: -2px;
279
+ }
280
+ .header .navigation .unordered-list .list-item {
281
+ display: flex;
282
+ }
283
+ @media (min-width: 768px) {
284
+ .header .navigation .unordered-list .list-item {
285
+ display: inline-flex;
286
+ padding: 0 15px;
287
+ }
288
+ }
289
+ .header .navigation .unordered-list .list-item [role=menuitem] {
290
+ display: inline-block;
291
+ padding: 8px 12px;
292
+ border-radius: 4px;
293
+ transition: background-color 0.2s ease, color 0.2s ease;
294
+ }
295
+ .header .navigation .unordered-list .list-item [role=menuitem]:focus {
296
+ outline: 2px solid #4d90fe;
297
+ outline-offset: 2px;
298
+ }
299
+ .header .navigation .anchor {
300
+ color: #6c757d;
301
+ text-decoration: none;
302
+ transition: color 0.2s ease;
303
+ }
304
+ .header .navigation .anchor:hover {
305
+ color: #333;
306
+ }
307
+ .header .navigation .anchor:focus {
308
+ color: #009900;
309
+ outline: 2px solid #4d90fe;
310
+ outline-offset: 2px;
311
+ }
312
+ @media (prefers-contrast: high) {
313
+ .header .navigation .anchor:hover, .header .navigation .anchor:focus {
314
+ color: #000;
315
+ text-decoration: underline;
316
+ }
317
+ }
318
+ @media (min-width: 992px) {
319
+ .header {
320
+ padding: 20px;
321
+ }
322
+ .header .container-large {
323
+ max-width: 1200px;
324
+ margin: 0 auto;
325
+ }
326
+ }
327
+ @media (min-width: 1200px) {
328
+ .header {
329
+ padding: 24px;
330
+ }
331
+ .header .container-large {
332
+ max-width: 1400px;
333
+ }
334
+ }
335
+ @media (prefers-reduced-motion: reduce) {
336
+ .header *,
337
+ .header *::before,
338
+ .header *::after {
339
+ animation-duration: 0.01ms !important;
340
+ animation-iteration-count: 1 !important;
341
+ transition-duration: 0.01ms !important;
342
+ }
343
+ }
344
+
345
+ /*# sourceMappingURL=header.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../src/styles/_variables.scss","../../src/styles/header.scss"],"names":[],"mappings":"AA2RA;EAJE;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;;ACrRF;EACC;EACA;EACA;EACA;EACA;EACA,kBDiBa;EChBb;;AAGA;EACC;EACA;;AAID;EAhBD;IAiBE;IACA;;;AAGD;EACC;EACA;EACA;EACA;;AAEA;EACC;;AAIF;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;;AAEA;EACC,kBDpBU;;ACwBV;EACC;EACA;EACA;EACA,kBD5BS;;AC8BT;EACC;;AAIF;EACC,kBDpCS;;AC2Cb;AAAA;EAEC;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACC;;AAGD;AAAA;EACC;EACA;;AAKD;EADD;IAEE;IACA;;;AAGD;EACC;EACA;;AAEA;EAJD;IAKE;IACA;IACA;IACA;IACA;IACA;;;AAGD;EACC;;AAEA;EAHD;IAIE;IACA;;;AAIA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;;AAGD;EACC;EACA;;AAGD;EACC;;AAGD;EACC;EACA,SDlEY;ECmEZ;EACA;EACA;EACA;EACA;EACA;EACA;EAGA,kBD5HO;EC6HP;EACA;EACA;EACA;EACA;;AAIA;EArBD;IAsBE;IACA;;;AAGD;EACC;EACA;EACA;;AAEA;EACC;EACA;;AAEA;EACC;EACA;EACA;EACA,ODrJQ;ECsJR;EACA;;AAEA;EAEC;EACA,ODhLK;;ACmLN;EACC;EACA;;AAUR;EACC;;AAEA;EAHD;IAIE;IACA;;;AAID;EACC;EACA;EACA;EACA;;AAEA;EACC;EACA;;AAMJ;EACC,ODrIQ;ECsIR;EACA;;AAEA;EACC,ODxMc;;AC2Mf;EACC,ODhOY;ECiOZ;EACA;;AAID;EACC;IAEC,ODtNS;ICuNT;;;AAOJ;EAtPD;IAuPE;;EAEA;IACC;IACA;;;AAIF;EA/PD;IAgQE;;EAEA;IACC;;;AAKF;EACC;AAAA;AAAA;IAGC;IACA;IACA","file":"header.css"}
@@ -0,0 +1,242 @@
1
+ :root {
2
+ --small: (min-width: 607px);
3
+ --medium: (min-width: 768px);
4
+ --large: (min-width: 992px);
5
+ --xlarge: (min-width: 1200px);
6
+ --color-primary: #009900;
7
+ --color-primary-hover: rgba(1, 116, 1, 0.9);
8
+ --color-secondary: #7086f1;
9
+ --color-secondary-hover: rgba(83, 100, 185, 0.9);
10
+ --color-warning: #ff9800;
11
+ --color-warning-hover: rgba(214, 130, 4, 0.9);
12
+ --color-success: #57f500;
13
+ --color-success-hover: rgba(74, 207, 2, 0.9);
14
+ --color-error: #f44336;
15
+ --color-error-hover: rgba(216, 58, 47, 0.9);
16
+ --color-shade: rgba(0, 0, 0, 0.5);
17
+ --color-tint: rgba(250, 250, 250, 0.5);
18
+ --color-white: #fff;
19
+ --color-black: #000;
20
+ --color-font-body: #333;
21
+ --color-black-alpha: rgba(0, 0, 0, 0.6);
22
+ --focus-color: #4d90fe;
23
+ --shadow-primary: rgba(0, 153, 0, 0.2);
24
+ --shadow-primary-hover: rgba(0, 153, 0, 0.3);
25
+ --shadow-primary-strong: rgba(0, 153, 0, 0.4);
26
+ --shadow-primary-strongest: rgba(0, 153, 0, 0.5);
27
+ --shadow-secondary: rgba(112, 134, 241, 0.2);
28
+ --shadow-secondary-hover: rgba(112, 134, 241, 0.3);
29
+ --shadow-secondary-strong: rgba(112, 134, 241, 0.4);
30
+ --shadow-secondary-strongest: rgba(112, 134, 241, 0.5);
31
+ --shadow-success: rgba(87, 245, 0, 0.2);
32
+ --shadow-success-hover: rgba(87, 245, 0, 0.3);
33
+ --shadow-success-strong: rgba(87, 245, 0, 0.4);
34
+ --shadow-success-strongest: rgba(87, 245, 0, 0.5);
35
+ --shadow-error: rgba(244, 67, 54, 0.2);
36
+ --shadow-error-hover: rgba(244, 67, 54, 0.3);
37
+ --shadow-error-strong: rgba(244, 67, 54, 0.4);
38
+ --shadow-error-strongest: rgba(244, 67, 54, 0.5);
39
+ --shadow-warning: rgba(255, 152, 0, 0.2);
40
+ --shadow-warning-hover: rgba(255, 152, 0, 0.3);
41
+ --shadow-warning-strong: rgba(255, 152, 0, 0.4);
42
+ --shadow-warning-strongest: rgba(255, 152, 0, 0.5);
43
+ --border-radius-xs: 4px;
44
+ --border-radius-sm: 4px;
45
+ --border-radius-md: 6px;
46
+ --border-radius-lg: 8px;
47
+ --border-radius-xl: 10px;
48
+ --z-index-base: 1;
49
+ --z-index-low: 10;
50
+ --z-index-dropdown: 100;
51
+ --z-index-sticky: 200;
52
+ --z-index-popover: 300;
53
+ --z-index-tooltip: 400;
54
+ --z-index-overlay: 1000;
55
+ --z-index-modal: 1010;
56
+ --z-index-notification: 1020;
57
+ --gray-100: #f8f9fa;
58
+ --gray-200: #e9ecef;
59
+ --gray-300: #dee2e6;
60
+ --gray-400: #ced4da;
61
+ --gray-500: #adb5bd;
62
+ --gray-600: #6c757d;
63
+ --gray-700: #495057;
64
+ --gray-800: #343a40;
65
+ --gray-900: #212529;
66
+ --black: #000;
67
+ --color-muted-blue: #8793ab;
68
+ --heading-one: 2.5rem;
69
+ --heading-two: 2rem;
70
+ --heading-three: 1.75rem;
71
+ --heading-four: 1.5rem;
72
+ --heading-five: 1.25rem;
73
+ --heading-six: 1rem;
74
+ --font-family-body: Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
75
+ --font-size-xs: 0.75rem;
76
+ --font-size-sm: 0.875rem;
77
+ --font-size-base: 1rem;
78
+ --font-size-lg: 1.125rem;
79
+ --font-size-xl: 1.25rem;
80
+ --line-height-tight: 1.25;
81
+ --line-height-base: 1.5;
82
+ --line-height-relaxed: 1.625;
83
+ --font-weight-light: 300;
84
+ --font-weight-normal: 400;
85
+ --font-weight-medium: 500;
86
+ --font-weight-semibold: 600;
87
+ --font-weight-bold: 700;
88
+ --spacing-xs: 0.25rem;
89
+ --spacing-sm: 0.5rem;
90
+ --spacing-md: 1rem;
91
+ --spacing-lg: 1.5rem;
92
+ --spacing-xl: 2rem;
93
+ --spacing-2xl: 3rem;
94
+ --text-color: #1f2937;
95
+ --text-muted: #6b7280;
96
+ --background-color: #ffffff;
97
+ --border-color: #d1d5db;
98
+ --border-color-hover: #9ca3af;
99
+ --error-text: #dc2626;
100
+ --error-background: #fef2f2;
101
+ --error-border: #fecaca;
102
+ --success-text: #059669;
103
+ --success-background: #f0fdf4;
104
+ --success-border: #bbf7d0;
105
+ --warning-text: #d97706;
106
+ --warning-background: #fffbeb;
107
+ --warning-border: #fed7aa;
108
+ --primary-color: #3b82f6;
109
+ --focus-ring-color: #3b82f6;
110
+ --border-radius: 0.375rem;
111
+ }
112
+
113
+ /* Base heading styles */
114
+ h1,
115
+ h2,
116
+ h3,
117
+ h4,
118
+ h5,
119
+ h6,
120
+ .h1,
121
+ .h2,
122
+ .h3,
123
+ .h4,
124
+ .h5,
125
+ .h6 {
126
+ font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
127
+ font-weight: 600;
128
+ line-height: 1.25;
129
+ color: #333;
130
+ margin: 0 0 1rem 0;
131
+ /* Ensure headings are accessible in high contrast mode */
132
+ /* Respect user's motion preferences */
133
+ }
134
+ @media (prefers-contrast: high) {
135
+ h1,
136
+ h2,
137
+ h3,
138
+ h4,
139
+ h5,
140
+ h6,
141
+ .h1,
142
+ .h2,
143
+ .h3,
144
+ .h4,
145
+ .h5,
146
+ .h6 {
147
+ color: currentColor;
148
+ font-weight: 700;
149
+ }
150
+ }
151
+ @media (prefers-reduced-motion: reduce) {
152
+ h1,
153
+ h2,
154
+ h3,
155
+ h4,
156
+ h5,
157
+ h6,
158
+ .h1,
159
+ .h2,
160
+ .h3,
161
+ .h4,
162
+ .h5,
163
+ .h6 {
164
+ transition: none;
165
+ }
166
+ }
167
+
168
+ /* Base font sizes */
169
+ .h1 {
170
+ font-size: 1.25rem; /* Mobile first approach */
171
+ }
172
+
173
+ .h2 {
174
+ font-size: 1.125rem;
175
+ }
176
+
177
+ .h3 {
178
+ font-size: 1rem;
179
+ }
180
+
181
+ .h4 {
182
+ font-size: 0.875rem;
183
+ }
184
+
185
+ .h5 {
186
+ font-size: 0.875rem;
187
+ }
188
+
189
+ .h6 {
190
+ font-size: 0.75rem;
191
+ }
192
+
193
+ /* Responsive typography scaling */
194
+ @media (min-width: 768px) {
195
+ .h1 {
196
+ font-size: 2rem; /* Scale up on tablets */
197
+ }
198
+ .h2 {
199
+ font-size: 1.75rem;
200
+ }
201
+ .h3 {
202
+ font-size: 1.5rem;
203
+ }
204
+ .h4 {
205
+ font-size: 1rem;
206
+ }
207
+ .h5 {
208
+ font-size: 0.875rem;
209
+ }
210
+ }
211
+ @media (min-width: 992px) {
212
+ .h1 {
213
+ font-size: 2.5rem; /* Full size on desktop */
214
+ }
215
+ .h2 {
216
+ font-size: 2rem;
217
+ }
218
+ .h3 {
219
+ font-size: 1.75rem;
220
+ }
221
+ .h4 {
222
+ font-size: 1.5rem;
223
+ }
224
+ .h5 {
225
+ font-size: 1.25rem;
226
+ }
227
+ .h6 {
228
+ font-size: 1rem;
229
+ }
230
+ }
231
+ @media (min-width: 1200px) {
232
+ .h1 {
233
+ font-size: calc(2.5rem * 1.1); /* Slightly larger on XL screens */
234
+ line-height: 1.1;
235
+ }
236
+ .h2 {
237
+ font-size: calc(2rem * 1.05);
238
+ line-height: 1.2;
239
+ }
240
+ }
241
+
242
+ /*# sourceMappingURL=heading.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../src/styles/_variables.scss","../../src/styles/heading.scss"],"names":[],"mappings":"AA2RA;EAJE;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;;ACrRF;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAYC,aD0FkB;ECzFlB;EACA,aDkGmB;ECjGnB,ODSiB;ECRjB;AAEA;AAMA;;AALA;EAnBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;IAoBE;IACA;;;AAID;EAzBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;IA0BE;;;;AAIF;AACA;EACC,WD4Ec,SC5EY;;;AAG3B;EACC,WDuEc;;;ACpEf;EACC,WDkEgB;;;AC/DjB;EACC,WD6Dc;;;AC1Df;EACC,WDyDc;;;ACtDf;EACC,WDoDc;;;ACjDf;AACA;EACC;IACC,WDqCY,MCrCa;;EAG1B;IACC,WDkCc;;EC/Bf;IACC,WD+Ba;;EC5Bd;IACC,WDoCe;;ECjChB;IACC,WD+Ba;;;AC3Bf;EACC;IACC,WDcY,QCda;;EAG1B;IACC,WDWY;;ECRb;IACC,WDQc;;ECLf;IACC,WDKa;;ECFd;IACC,WDEa;;ECCd;IACC,WDDY;;;ACKd;EACC;IACC;IACA;;EAGD;IACC;IACA","file":"heading.css"}