boreal-ui 0.0.42 → 0.0.43
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.
- package/dist/next/style.css +72 -32
- package/package.json +1 -1
package/dist/next/style.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
* ---------------------------------------------------------------------
|
|
4
5
|
* globals.scss
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
* CSS variables allow dynamic switching between light/dark/custom themes.
|
|
42
43
|
*/
|
|
43
44
|
@import "modern-css-reset/modern-css-reset.css";
|
|
45
|
+
|
|
44
46
|
/**
|
|
45
47
|
* ---------------------------------------------------------------------
|
|
46
48
|
* theme.scss
|
|
@@ -107,6 +109,7 @@
|
|
|
107
109
|
* $rounding: key-value pairs for component rounding levels
|
|
108
110
|
* $shadow: key-value pairs for shadow levels
|
|
109
111
|
*/
|
|
112
|
+
|
|
110
113
|
/**
|
|
111
114
|
* -----------------------------------------------------
|
|
112
115
|
* _animations.scss
|
|
@@ -148,84 +151,104 @@
|
|
|
148
151
|
from {
|
|
149
152
|
opacity: 0;
|
|
150
153
|
}
|
|
154
|
+
|
|
151
155
|
to {
|
|
152
156
|
opacity: 1;
|
|
153
157
|
}
|
|
154
158
|
}
|
|
159
|
+
|
|
155
160
|
@keyframes slide-up {
|
|
156
161
|
from {
|
|
157
162
|
transform: translateY(100%);
|
|
158
163
|
opacity: 0;
|
|
159
164
|
}
|
|
165
|
+
|
|
160
166
|
to {
|
|
161
167
|
transform: translateY(0);
|
|
162
168
|
opacity: 1;
|
|
163
169
|
}
|
|
164
170
|
}
|
|
171
|
+
|
|
165
172
|
@keyframes spin-3d {
|
|
166
173
|
0% {
|
|
167
174
|
transform: rotateX(0deg) rotateY(0deg);
|
|
168
175
|
}
|
|
176
|
+
|
|
169
177
|
100% {
|
|
170
178
|
transform: rotateX(360deg) rotateY(360deg);
|
|
171
179
|
}
|
|
172
180
|
}
|
|
181
|
+
|
|
173
182
|
@keyframes spin {
|
|
174
183
|
0% {
|
|
175
184
|
transform: rotate(0deg);
|
|
176
185
|
}
|
|
186
|
+
|
|
177
187
|
100% {
|
|
178
188
|
transform: rotate(360deg);
|
|
179
189
|
}
|
|
180
190
|
}
|
|
191
|
+
|
|
181
192
|
@keyframes pulse {
|
|
182
193
|
0% {
|
|
183
194
|
transform: scale(1);
|
|
184
195
|
}
|
|
196
|
+
|
|
185
197
|
50% {
|
|
186
198
|
transform: scale(1.1);
|
|
187
199
|
}
|
|
200
|
+
|
|
188
201
|
100% {
|
|
189
202
|
transform: scale(1);
|
|
190
203
|
}
|
|
191
204
|
}
|
|
205
|
+
|
|
192
206
|
@keyframes fade-in-up {
|
|
193
207
|
from {
|
|
194
208
|
opacity: 0;
|
|
195
209
|
transform: translateY(-5px);
|
|
196
210
|
}
|
|
211
|
+
|
|
197
212
|
to {
|
|
198
213
|
opacity: 1;
|
|
199
214
|
transform: translateY(0);
|
|
200
215
|
}
|
|
201
216
|
}
|
|
217
|
+
|
|
202
218
|
@keyframes progress-grow {
|
|
203
219
|
from {
|
|
204
220
|
width: 0;
|
|
205
221
|
}
|
|
222
|
+
|
|
206
223
|
to {
|
|
207
224
|
width: 100%;
|
|
208
225
|
}
|
|
209
226
|
}
|
|
227
|
+
|
|
210
228
|
@keyframes indeterminate-move {
|
|
211
229
|
0% {
|
|
212
230
|
transform: translateX(-100%);
|
|
213
231
|
}
|
|
232
|
+
|
|
214
233
|
50% {
|
|
215
234
|
transform: translateX(0);
|
|
216
235
|
}
|
|
236
|
+
|
|
217
237
|
100% {
|
|
218
238
|
transform: translateX(100%);
|
|
219
239
|
}
|
|
220
240
|
}
|
|
241
|
+
|
|
221
242
|
@keyframes skeleton-loading {
|
|
222
243
|
0% {
|
|
223
244
|
left: -100%;
|
|
224
245
|
}
|
|
246
|
+
|
|
225
247
|
100% {
|
|
226
248
|
left: 100%;
|
|
227
249
|
}
|
|
228
250
|
}
|
|
251
|
+
|
|
229
252
|
/**
|
|
230
253
|
* -----------------------------------------------------
|
|
231
254
|
* _breakpoints.scss
|
|
@@ -248,66 +271,75 @@
|
|
|
248
271
|
PRIMARY COLOR PALETTE
|
|
249
272
|
================================== */
|
|
250
273
|
--primary-color: #1c4d3a;
|
|
251
|
-
--primary-color-light: rgb(107.6
|
|
252
|
-
--primary-color-hover: rgb(14.4
|
|
253
|
-
--primary-text-color-contrast: rgb(0
|
|
274
|
+
--primary-color-light: rgb(107.6 201.4 165.0285714286);
|
|
275
|
+
--primary-color-hover: rgb(14.4 39.6 29.8285714286);
|
|
276
|
+
--primary-text-color-contrast: rgb(0 0 0);
|
|
277
|
+
|
|
254
278
|
/* ================================a
|
|
255
279
|
SECONDARY COLOR PALETTE
|
|
256
280
|
================================== */
|
|
257
281
|
--secondary-color: #6e502e;
|
|
258
|
-
--secondary-color-light: rgb(210.7692307692
|
|
259
|
-
--secondary-color-hover: rgb(74.0384615385
|
|
260
|
-
--secondary-text-color: rgb(0
|
|
282
|
+
--secondary-color-light: rgb(210.7692307692 181.9230769231 149.2307692308);
|
|
283
|
+
--secondary-color-hover: rgb(74.0384615385 53.8461538462 30.9615384615);
|
|
284
|
+
--secondary-text-color: rgb(0 0 0);
|
|
285
|
+
|
|
261
286
|
/* ================================
|
|
262
287
|
TERTIARY COLOR PALETTE
|
|
263
288
|
================================== */
|
|
264
289
|
--tertiary-color: #092b1c;
|
|
265
|
-
--tertiary-color-light: rgb(44.9615384615
|
|
266
|
-
--tertiary-color-hover: rgb(0.1730769231
|
|
267
|
-
--tertiary-text-color: rgb(255
|
|
290
|
+
--tertiary-color-light: rgb(44.9615384615 211.0384615385 137.7692307692);
|
|
291
|
+
--tertiary-color-hover: rgb(0.1730769231 0.8269230769 0.5384615385);
|
|
292
|
+
--tertiary-text-color: rgb(255 255 255);
|
|
293
|
+
|
|
268
294
|
/* ================================
|
|
269
295
|
QUATERNARY COLOR PALETTE
|
|
270
296
|
================================== */
|
|
271
297
|
--quaternary-color: #a1733a;
|
|
272
|
-
--quaternary-color-light: rgb(231.9589041096
|
|
273
|
-
--quaternary-color-hover: rgb(123.5068493151
|
|
274
|
-
--quaternary-text-color: rgb(255
|
|
298
|
+
--quaternary-color-light: rgb(231.9589041096 213.6849315068 191.0410958904);
|
|
299
|
+
--quaternary-color-hover: rgb(123.5068493151 88.2191780822 44.4931506849);
|
|
300
|
+
--quaternary-text-color: rgb(255 255 255);
|
|
301
|
+
|
|
275
302
|
/* ================================
|
|
276
303
|
FEEDBACK COLORS
|
|
277
304
|
================================== */
|
|
278
305
|
--success-color: #51c703;
|
|
279
|
-
--success-color-hover: rgb(60.5495049505
|
|
306
|
+
--success-color-hover: rgb(60.5495049505 148.7574257426 2.2425742574);
|
|
280
307
|
--warning-color: #fca505;
|
|
281
|
-
--warning-color-hover: rgb(203.557312253
|
|
308
|
+
--warning-color-hover: rgb(203.557312253 132.7193675889 2.442687747);
|
|
282
309
|
--error-color: #f83838;
|
|
283
|
-
--error-color-hover: rgb(244.4029126214
|
|
284
|
-
--disabled-color:
|
|
310
|
+
--error-color-hover: rgb(244.4029126214 8.5970873786 8.5970873786);
|
|
311
|
+
--disabled-color: rgb(184 184 184 / 86.7%);
|
|
312
|
+
|
|
285
313
|
/* ================================
|
|
286
314
|
BACKGROUND COLORS
|
|
287
315
|
================================== */
|
|
288
316
|
--background-color: #222e2e;
|
|
289
|
-
--background-color-light: rgb(55.675
|
|
290
|
-
--background-color-lighter: rgb(77.35
|
|
291
|
-
--background-color-dark: rgb(12.325
|
|
292
|
-
--background-color-darker: hsl(
|
|
317
|
+
--background-color-light: rgb(55.675 75.325 75.325);
|
|
318
|
+
--background-color-lighter: rgb(77.35 104.65 104.65);
|
|
319
|
+
--background-color-dark: rgb(12.325 16.675 16.675);
|
|
320
|
+
--background-color-darker: hsl(180deg 15% -4.3137254902%);
|
|
321
|
+
|
|
293
322
|
/* ================================
|
|
294
323
|
TEXT COLORS
|
|
295
324
|
================================== */
|
|
296
|
-
--text-color-primary: rgb(255
|
|
297
|
-
--text-color: rgb(255
|
|
298
|
-
--text-color-light: hsl(
|
|
299
|
-
--text-color-lighter: hsl(
|
|
325
|
+
--text-color-primary: rgb(255 255 255);
|
|
326
|
+
--text-color: rgb(255 255 255);
|
|
327
|
+
--text-color-light: hsl(0deg 0% 120%);
|
|
328
|
+
--text-color-lighter: hsl(0deg 0% 140%);
|
|
329
|
+
|
|
300
330
|
/* ================================
|
|
301
331
|
LINK COLORS
|
|
302
332
|
================================== */
|
|
303
333
|
--link-color: #8bb0c7;
|
|
304
334
|
--link-hover-color: #627e8f;
|
|
305
|
-
--link-hover-color-primary: rgb(22.4
|
|
306
|
-
--link-hover-color-secondary: rgb(88
|
|
335
|
+
--link-hover-color-primary: rgb(22.4 61.6 46.4);
|
|
336
|
+
--link-hover-color-secondary: rgb(88 64 36.8);
|
|
337
|
+
|
|
307
338
|
/* ================================
|
|
308
339
|
FOCUS & INTERACTION
|
|
309
340
|
================================== */
|
|
310
341
|
--focus-outline-color: var(--text-color-primary);
|
|
342
|
+
|
|
311
343
|
/* ===========================
|
|
312
344
|
Border Radius (Rounding)
|
|
313
345
|
=========================== */
|
|
@@ -316,6 +348,7 @@
|
|
|
316
348
|
--border-radius-md: 8px;
|
|
317
349
|
--border-radius-lg: 16px;
|
|
318
350
|
--border-radius-full: 9999px;
|
|
351
|
+
|
|
319
352
|
/* ===========================
|
|
320
353
|
Shadows
|
|
321
354
|
=========================== */
|
|
@@ -324,6 +357,7 @@
|
|
|
324
357
|
--box-shadow-medium: 0 4px 8px rgb(0 0 0 / 20%);
|
|
325
358
|
--box-shadow-heavy: 0 6px 12px rgb(0 0 0 / 30%);
|
|
326
359
|
--box-shadow-intense: 0 8px 16px rgb(0 0 0 / 40%);
|
|
360
|
+
|
|
327
361
|
/* ===========================
|
|
328
362
|
Inverted Shadows (Light UI)
|
|
329
363
|
=========================== */
|
|
@@ -332,12 +366,13 @@
|
|
|
332
366
|
--box-shadow-inverted-medium: 0 4px 8px rgb(255 255 255 / 8%);
|
|
333
367
|
--box-shadow-inverted-strong: 0 6px 12px rgb(255 255 255 / 12%);
|
|
334
368
|
--box-shadow-inverted-intense: 0 8px 16px rgb(255 255 255 / 20%);
|
|
369
|
+
|
|
335
370
|
/* ===========================
|
|
336
371
|
Divider & Overlay Colors
|
|
337
372
|
=========================== */
|
|
338
|
-
--divider-color: rgb(99.025
|
|
373
|
+
--divider-color: rgb(99.025 133.975 133.975); /* subtle dividers */
|
|
339
374
|
--overlay-color: rgb(0 0 0 / 50%); /* for modals or overlays */
|
|
340
|
-
--font-family-primary:
|
|
375
|
+
--font-family-primary: lora, arial, sans-serif;
|
|
341
376
|
}
|
|
342
377
|
|
|
343
378
|
body {
|
|
@@ -349,7 +384,9 @@ body {
|
|
|
349
384
|
padding: 0;
|
|
350
385
|
line-height: 1.5;
|
|
351
386
|
overflow-x: hidden;
|
|
352
|
-
transition:
|
|
387
|
+
transition:
|
|
388
|
+
background-color 0.3s ease-in-out,
|
|
389
|
+
color 0.3s ease-in-out;
|
|
353
390
|
}
|
|
354
391
|
|
|
355
392
|
h1,
|
|
@@ -358,7 +395,7 @@ h3,
|
|
|
358
395
|
h4,
|
|
359
396
|
h5,
|
|
360
397
|
h6 {
|
|
361
|
-
font-family:
|
|
398
|
+
font-family: Lora, arial, sans-serif;
|
|
362
399
|
margin: 0;
|
|
363
400
|
font-weight: 700;
|
|
364
401
|
transition: color 0.3s ease-in-out;
|
|
@@ -408,8 +445,11 @@ a {
|
|
|
408
445
|
color: var(--link-color);
|
|
409
446
|
font-weight: 700;
|
|
410
447
|
text-decoration: none;
|
|
411
|
-
transition:
|
|
448
|
+
transition:
|
|
449
|
+
color 0.3s ease-in-out,
|
|
450
|
+
text-decoration 0.3s ease-in-out;
|
|
412
451
|
}
|
|
452
|
+
|
|
413
453
|
a:hover {
|
|
414
454
|
color: var(--link-color-hover);
|
|
415
455
|
text-decoration: underline;
|
|
@@ -481,7 +521,7 @@ a:hover {
|
|
|
481
521
|
border: 0;
|
|
482
522
|
}
|
|
483
523
|
|
|
484
|
-
|
|
524
|
+
::global(.sr_only) {
|
|
485
525
|
position: absolute;
|
|
486
526
|
width: 1px;
|
|
487
527
|
height: 1px;
|