funuicss 3.6.18 → 3.6.19
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/css/fun.css +496 -317
- package/package.json +1 -1
- package/ui/button/Button.js +56 -39
- package/ui/input/Input.js +283 -157
- package/ui/theme/theme.d.ts +16 -6
- package/ui/theme/theme.js +96 -82
- package/utils/componentUtils.d.ts +9 -6
- package/utils/componentUtils.js +42 -170
- package/utils/FireStore.d.ts +0 -10
- package/utils/FireStore.js +0 -273
- package/utils/Firebase.d.ts +0 -2
- package/utils/Firebase.js +0 -16
package/css/fun.css
CHANGED
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
--snackBarZindex:20;
|
|
209
209
|
--notificationZindex:29;
|
|
210
210
|
--inputButtonHeight:2.4rem;
|
|
211
|
-
--inputPadding:
|
|
211
|
+
--inputPadding:1rem;
|
|
212
212
|
--inputRoundedPadding:0.5rem 1rem;
|
|
213
213
|
--shadowMedium:0 0.8rem 2rem 0 rgba(3, 3, 3, 0.1);
|
|
214
214
|
--raised:0 0.1rem 0.2rem 0rem rgba(0, 0, 0, 0.3);
|
|
@@ -218,44 +218,140 @@
|
|
|
218
218
|
|
|
219
219
|
}
|
|
220
220
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
/* fonts scalling */
|
|
224
221
|
:root {
|
|
225
|
-
/* ===== Font
|
|
226
|
-
--font-size-smaller: 0.75rem;
|
|
227
|
-
--font-size-small: 0.875rem;
|
|
228
|
-
--font-size-base: 1rem;
|
|
229
|
-
--font-size-
|
|
230
|
-
--font-size-
|
|
231
|
-
--font-size-
|
|
232
|
-
--font-size-
|
|
233
|
-
--font-size-
|
|
234
|
-
--font-size-
|
|
235
|
-
--font-size-
|
|
236
|
-
--font-size-
|
|
237
|
-
--font-size-jumbo:
|
|
238
|
-
|
|
239
|
-
/* =====
|
|
240
|
-
--
|
|
241
|
-
--
|
|
242
|
-
--
|
|
243
|
-
--
|
|
222
|
+
/* ===== Base Font Sizes ===== */
|
|
223
|
+
--font-size-smaller: 0.75rem;
|
|
224
|
+
--font-size-small: 0.875rem;
|
|
225
|
+
--font-size-base: 1rem;
|
|
226
|
+
--font-size-h6: 1rem;
|
|
227
|
+
--font-size-h5: 1.25rem;
|
|
228
|
+
--font-size-h4: 1.5rem;
|
|
229
|
+
--font-size-h3: 1.75rem;
|
|
230
|
+
--font-size-h2: 2rem;
|
|
231
|
+
--font-size-h1: 2.5rem;
|
|
232
|
+
--font-size-big: 3rem;
|
|
233
|
+
--font-size-bigger: 3.5rem;
|
|
234
|
+
--font-size-jumbo: 4rem;
|
|
235
|
+
|
|
236
|
+
/* ===== Text Scale (for utility classes) ===== */
|
|
237
|
+
--text-xs: 0.75rem;
|
|
238
|
+
--text-sm: 0.875rem;
|
|
239
|
+
--text-base: 1rem;
|
|
240
|
+
--text-lg: 1.125rem;
|
|
241
|
+
--text-xl: 1.25rem;
|
|
242
|
+
--text-2xl: 1.5rem;
|
|
243
|
+
--text-3xl: 1.875rem;
|
|
244
|
+
--text-4xl: 2.25rem;
|
|
245
|
+
--text-5xl: 3rem;
|
|
246
|
+
--text-6xl: 3.75rem;
|
|
247
|
+
--text-7xl: 4.5rem;
|
|
248
|
+
--text-8xl: 6rem;
|
|
249
|
+
--text-9xl: 8rem;
|
|
250
|
+
--text-10xl: 10rem;
|
|
251
|
+
|
|
252
|
+
/* ===== Base Line Heights ===== */
|
|
253
|
+
--line-height-tight: 1.1;
|
|
254
|
+
--line-height-snug: 1.2;
|
|
255
|
+
--line-height-normal: 1.4;
|
|
256
|
+
--line-height-relaxed: 1.6;
|
|
257
|
+
--line-height-loose: 1.8;
|
|
244
258
|
|
|
245
259
|
/* Element-specific line heights */
|
|
246
|
-
--line-height-smaller: var(--line-height-
|
|
247
|
-
--line-height-small: var(--line-height-
|
|
260
|
+
--line-height-smaller: var(--line-height-loose);
|
|
261
|
+
--line-height-small: var(--line-height-relaxed);
|
|
248
262
|
--line-height-body: var(--line-height-normal);
|
|
249
|
-
--line-height-big: var(--line-height-
|
|
250
|
-
--line-height-bigger: var(--line-height-
|
|
263
|
+
--line-height-big: var(--line-height-tight);
|
|
264
|
+
--line-height-bigger: var(--line-height-tight);
|
|
251
265
|
--line-height-h6: var(--line-height-normal);
|
|
252
266
|
--line-height-h5: var(--line-height-normal);
|
|
253
267
|
--line-height-h4: var(--line-height-normal);
|
|
254
|
-
--line-height-h3: var(--line-height-
|
|
255
|
-
--line-height-h2: var(--line-height-
|
|
268
|
+
--line-height-h3: var(--line-height-snug);
|
|
269
|
+
--line-height-h2: var(--line-height-snug);
|
|
256
270
|
--line-height-h1: var(--line-height-tight);
|
|
257
271
|
--line-height-jumbo: var(--line-height-tight);
|
|
258
272
|
|
|
273
|
+
/* ===== Leading Scale (for utility classes) ===== */
|
|
274
|
+
--leading-xs: var(--line-height-loose);
|
|
275
|
+
--leading-sm: var(--line-height-relaxed);
|
|
276
|
+
--leading-base: var(--line-height-normal);
|
|
277
|
+
--leading-lg: var(--line-height-normal);
|
|
278
|
+
--leading-xl: var(--line-height-normal);
|
|
279
|
+
--leading-2xl: var(--line-height-normal);
|
|
280
|
+
--leading-3xl: var(--line-height-snug);
|
|
281
|
+
--leading-4xl: var(--line-height-snug);
|
|
282
|
+
--leading-5xl: var(--line-height-tight);
|
|
283
|
+
--leading-6xl: var(--line-height-tight);
|
|
284
|
+
--leading-7xl: var(--line-height-tight);
|
|
285
|
+
--leading-8xl: var(--line-height-tight);
|
|
286
|
+
--leading-9xl: 1;
|
|
287
|
+
--leading-10xl: 1;
|
|
288
|
+
|
|
289
|
+
/* ===== Responsive Scaling Factors ===== */
|
|
290
|
+
--scale-mobile: 1;
|
|
291
|
+
--scale-tablet: 1.1;
|
|
292
|
+
--scale-desktop: 1.2;
|
|
293
|
+
--scale-large-desktop: 1.3;
|
|
294
|
+
|
|
295
|
+
/* ===== Responsive Font Size Variables ===== */
|
|
296
|
+
/* Headings */
|
|
297
|
+
--font-size-h1-responsive: var(--font-size-h1);
|
|
298
|
+
--font-size-h2-responsive: var(--font-size-h2);
|
|
299
|
+
--font-size-h3-responsive: var(--font-size-h3);
|
|
300
|
+
--font-size-h4-responsive: var(--font-size-h4);
|
|
301
|
+
--font-size-h5-responsive: var(--font-size-h5);
|
|
302
|
+
--font-size-h6-responsive: var(--font-size-h6);
|
|
303
|
+
|
|
304
|
+
/* Special sizes */
|
|
305
|
+
--font-size-big-responsive: var(--font-size-big);
|
|
306
|
+
--font-size-bigger-responsive: var(--font-size-bigger);
|
|
307
|
+
--font-size-jumbo-responsive: var(--font-size-jumbo);
|
|
308
|
+
|
|
309
|
+
/* Text utilities */
|
|
310
|
+
--text-xs-responsive: var(--text-xs);
|
|
311
|
+
--text-sm-responsive: var(--text-sm);
|
|
312
|
+
--text-base-responsive: var(--text-base);
|
|
313
|
+
--text-lg-responsive: var(--text-lg);
|
|
314
|
+
--text-xl-responsive: var(--text-xl);
|
|
315
|
+
--text-2xl-responsive: var(--text-2xl);
|
|
316
|
+
--text-3xl-responsive: var(--text-3xl);
|
|
317
|
+
--text-4xl-responsive: var(--text-4xl);
|
|
318
|
+
--text-5xl-responsive: var(--text-5xl);
|
|
319
|
+
--text-6xl-responsive: var(--text-6xl);
|
|
320
|
+
--text-7xl-responsive: var(--text-7xl);
|
|
321
|
+
--text-8xl-responsive: var(--text-8xl);
|
|
322
|
+
--text-9xl-responsive: var(--text-9xl);
|
|
323
|
+
--text-10xl-responsive: var(--text-10xl);
|
|
324
|
+
|
|
325
|
+
/* ===== Responsive Line Height Variables ===== */
|
|
326
|
+
/* Headings */
|
|
327
|
+
--line-height-h1-responsive: var(--line-height-h1);
|
|
328
|
+
--line-height-h2-responsive: var(--line-height-h2);
|
|
329
|
+
--line-height-h3-responsive: var(--line-height-h3);
|
|
330
|
+
--line-height-h4-responsive: var(--line-height-h4);
|
|
331
|
+
--line-height-h5-responsive: var(--line-height-h5);
|
|
332
|
+
--line-height-h6-responsive: var(--line-height-h6);
|
|
333
|
+
|
|
334
|
+
/* Special sizes */
|
|
335
|
+
--line-height-big-responsive: var(--line-height-big);
|
|
336
|
+
--line-height-bigger-responsive: var(--line-height-bigger);
|
|
337
|
+
--line-height-jumbo-responsive: var(--line-height-jumbo);
|
|
338
|
+
|
|
339
|
+
/* Text utilities */
|
|
340
|
+
--leading-xs-responsive: var(--leading-xs);
|
|
341
|
+
--leading-sm-responsive: var(--leading-sm);
|
|
342
|
+
--leading-base-responsive: var(--leading-base);
|
|
343
|
+
--leading-lg-responsive: var(--leading-lg);
|
|
344
|
+
--leading-xl-responsive: var(--leading-xl);
|
|
345
|
+
--leading-2xl-responsive: var(--leading-2xl);
|
|
346
|
+
--leading-3xl-responsive: var(--leading-3xl);
|
|
347
|
+
--leading-4xl-responsive: var(--leading-4xl);
|
|
348
|
+
--leading-5xl-responsive: var(--leading-5xl);
|
|
349
|
+
--leading-6xl-responsive: var(--leading-6xl);
|
|
350
|
+
--leading-7xl-responsive: var(--leading-7xl);
|
|
351
|
+
--leading-8xl-responsive: var(--leading-8xl);
|
|
352
|
+
--leading-9xl-responsive: var(--leading-9xl);
|
|
353
|
+
--leading-10xl-responsive: var(--leading-10xl);
|
|
354
|
+
|
|
259
355
|
/* ===== Font Weights ===== */
|
|
260
356
|
--font-weight-thin: 100;
|
|
261
357
|
--font-weight-extra-light: 200;
|
|
@@ -271,15 +367,15 @@
|
|
|
271
367
|
--font-weight-smaller: var(--font-weight-normal);
|
|
272
368
|
--font-weight-small: var(--font-weight-normal);
|
|
273
369
|
--font-weight-body: var(--font-weight-normal);
|
|
274
|
-
--font-weight-big: var(--font-weight-
|
|
275
|
-
--font-weight-bigger: var(--font-weight-
|
|
370
|
+
--font-weight-big: var(--font-weight-bold);
|
|
371
|
+
--font-weight-bigger: var(--font-weight-bold);
|
|
276
372
|
--font-weight-h6: var(--font-weight-medium);
|
|
277
373
|
--font-weight-h5: var(--font-weight-medium);
|
|
278
374
|
--font-weight-h4: var(--font-weight-medium);
|
|
279
375
|
--font-weight-h3: var(--font-weight-semibold);
|
|
280
376
|
--font-weight-h2: var(--font-weight-semibold);
|
|
281
377
|
--font-weight-h1: var(--font-weight-bold);
|
|
282
|
-
--font-weight-jumbo: var(--font-weight-
|
|
378
|
+
--font-weight-jumbo: var(--font-weight-black);
|
|
283
379
|
|
|
284
380
|
/* ===== Text Decoration ===== */
|
|
285
381
|
--text-decoration-none: none;
|
|
@@ -352,278 +448,247 @@
|
|
|
352
448
|
--letter-spacing-smaller: var(--letter-spacing-normal);
|
|
353
449
|
--letter-spacing-small: var(--letter-spacing-normal);
|
|
354
450
|
--letter-spacing-body: var(--letter-spacing-normal);
|
|
355
|
-
--letter-spacing-big: var(--letter-spacing-
|
|
356
|
-
--letter-spacing-bigger: var(--letter-spacing-
|
|
451
|
+
--letter-spacing-big: var(--letter-spacing-tight);
|
|
452
|
+
--letter-spacing-bigger: var(--letter-spacing-tight);
|
|
357
453
|
--letter-spacing-h6: var(--letter-spacing-normal);
|
|
358
454
|
--letter-spacing-h5: var(--letter-spacing-normal);
|
|
359
455
|
--letter-spacing-h4: var(--letter-spacing-normal);
|
|
360
456
|
--letter-spacing-h3: var(--letter-spacing-normal);
|
|
361
457
|
--letter-spacing-h2: var(--letter-spacing-tight);
|
|
362
458
|
--letter-spacing-h1: var(--letter-spacing-tight);
|
|
363
|
-
--letter-spacing-jumbo: var(--letter-spacing-
|
|
364
|
-
|
|
365
|
-
/* ===== Word Spacing ===== */
|
|
366
|
-
--word-spacing-tight: -0.05em;
|
|
367
|
-
--word-spacing-normal: 0em;
|
|
368
|
-
--word-spacing-wide: 0.05em;
|
|
369
|
-
--word-spacing-wider: 0.1em;
|
|
370
|
-
|
|
371
|
-
/* ===== Responsive Typography Scales ===== */
|
|
372
|
-
/* Mobile-first scale (base) */
|
|
373
|
-
--scale-mobile: 1.2;
|
|
374
|
-
|
|
375
|
-
/* Tablet scale */
|
|
376
|
-
--scale-tablet: 1.25;
|
|
377
|
-
|
|
378
|
-
/* Desktop scale */
|
|
379
|
-
--scale-desktop: 1.333;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
/* For WebKit browsers (Chrome, Edge, Brave, Safari) */
|
|
385
|
-
::-webkit-scrollbar {
|
|
386
|
-
width: 10px;
|
|
387
|
-
height: 10px;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
::-webkit-scrollbar-track {
|
|
391
|
-
border-radius: 10px;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
::-webkit-scrollbar-thumb {
|
|
395
|
-
background-color: var(--borderColor, #999); /* Darker thumb */
|
|
396
|
-
border-radius: 10px;
|
|
397
|
-
border: 2px solid transparent;
|
|
398
|
-
background-clip: content-box;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
::-webkit-scrollbar-thumb:hover {
|
|
402
|
-
background-color: var(--dark500, #666); /* Hover effect */
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
/* Optional: Hide scrollbar buttons (arrows) */
|
|
406
|
-
::-webkit-scrollbar-button {
|
|
407
|
-
display: none;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
*{
|
|
413
|
-
font-family: var(--font-font);
|
|
414
|
-
scroll-behavior: smooth;
|
|
415
|
-
transition: 0.3s ease-in-out all !important;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
.card,
|
|
420
|
-
.input,
|
|
421
|
-
.navigation-bar ,
|
|
422
|
-
.modal ,
|
|
423
|
-
.modal-content,
|
|
424
|
-
.button,
|
|
425
|
-
.text,
|
|
426
|
-
.div,
|
|
427
|
-
.table,
|
|
428
|
-
.table-head,
|
|
429
|
-
.table-body,
|
|
430
|
-
.table-row,
|
|
431
|
-
.table-cell,
|
|
432
|
-
.list,
|
|
433
|
-
.list-item,
|
|
434
|
-
.breadcrumb,
|
|
435
|
-
.breadcrumb-link,
|
|
436
|
-
.breadcrumb-item,
|
|
437
|
-
.loader,
|
|
438
|
-
.grid,
|
|
439
|
-
.col,
|
|
440
|
-
.container,
|
|
441
|
-
.step-container,
|
|
442
|
-
.step,
|
|
443
|
-
.step-header,
|
|
444
|
-
.step-line,
|
|
445
|
-
.dropdown,
|
|
446
|
-
.dropdown-menu,
|
|
447
|
-
.dropdown-item,
|
|
448
|
-
.accordion,
|
|
449
|
-
.accordion-header,
|
|
450
|
-
.accordion-content,
|
|
451
|
-
.progress-bar{
|
|
452
|
-
color: var(--text-color) ;
|
|
459
|
+
--letter-spacing-jumbo: var(--letter-spacing-tighter);
|
|
453
460
|
}
|
|
454
461
|
|
|
455
|
-
/*
|
|
462
|
+
/* ===== RESPONSIVE BREAKPOINTS ===== */
|
|
456
463
|
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
+
/* Tablet and above */
|
|
465
|
+
@media (min-width: 768px) {
|
|
466
|
+
:root {
|
|
467
|
+
/* Responsive font sizes */
|
|
468
|
+
--font-size-h1-responsive: calc(var(--font-size-h1) * var(--scale-tablet));
|
|
469
|
+
--font-size-h2-responsive: calc(var(--font-size-h2) * var(--scale-tablet));
|
|
470
|
+
--font-size-h3-responsive: calc(var(--font-size-h3) * var(--scale-tablet));
|
|
471
|
+
--font-size-h4-responsive: calc(var(--font-size-h4) * var(--scale-tablet));
|
|
472
|
+
--font-size-h5-responsive: calc(var(--font-size-h5) * var(--scale-tablet));
|
|
473
|
+
--font-size-h6-responsive: calc(var(--font-size-h6) * var(--scale-tablet));
|
|
474
|
+
|
|
475
|
+
--font-size-big-responsive: calc(var(--font-size-big) * var(--scale-tablet));
|
|
476
|
+
--font-size-bigger-responsive: calc(var(--font-size-bigger) * var(--scale-tablet));
|
|
477
|
+
--font-size-jumbo-responsive: calc(var(--font-size-jumbo) * var(--scale-tablet));
|
|
478
|
+
|
|
479
|
+
/* Text utilities */
|
|
480
|
+
--text-3xl-responsive: calc(var(--text-3xl) * var(--scale-tablet));
|
|
481
|
+
--text-4xl-responsive: calc(var(--text-4xl) * var(--scale-tablet));
|
|
482
|
+
--text-5xl-responsive: calc(var(--text-5xl) * var(--scale-tablet));
|
|
483
|
+
--text-6xl-responsive: calc(var(--text-6xl) * var(--scale-tablet));
|
|
484
|
+
--text-7xl-responsive: calc(var(--text-7xl) * var(--scale-tablet));
|
|
485
|
+
--text-8xl-responsive: calc(var(--text-8xl) * var(--scale-tablet));
|
|
486
|
+
--text-9xl-responsive: calc(var(--text-9xl) * var(--scale-tablet));
|
|
487
|
+
--text-10xl-responsive: calc(var(--text-10xl) * var(--scale-tablet));
|
|
488
|
+
|
|
489
|
+
/* Responsive line heights - tighter for larger screens */
|
|
490
|
+
--line-height-h1-responsive: calc(var(--line-height-h1) - 0.1);
|
|
491
|
+
--line-height-h2-responsive: calc(var(--line-height-h2) - 0.05);
|
|
492
|
+
--line-height-h3-responsive: calc(var(--line-height-h3) - 0.05);
|
|
493
|
+
--line-height-big-responsive: calc(var(--line-height-big) - 0.1);
|
|
494
|
+
--line-height-bigger-responsive: calc(var(--line-height-bigger) - 0.1);
|
|
495
|
+
--line-height-jumbo-responsive: calc(var(--line-height-jumbo) - 0.1);
|
|
496
|
+
|
|
497
|
+
--leading-4xl-responsive: calc(var(--leading-4xl) - 0.1);
|
|
498
|
+
--leading-5xl-responsive: calc(var(--leading-5xl) - 0.1);
|
|
499
|
+
--leading-6xl-responsive: calc(var(--leading-6xl) - 0.1);
|
|
500
|
+
--leading-7xl-responsive: calc(var(--leading-7xl) - 0.1);
|
|
501
|
+
--leading-8xl-responsive: calc(var(--leading-8xl) - 0.1);
|
|
502
|
+
--leading-9xl-responsive: 0.9;
|
|
503
|
+
--leading-10xl-responsive: 0.9;
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
/* Desktop and above */
|
|
508
|
+
@media (min-width: 1024px) {
|
|
464
509
|
:root {
|
|
465
|
-
|
|
510
|
+
/* Responsive font sizes */
|
|
511
|
+
--font-size-h1-responsive: calc(var(--font-size-h1) * var(--scale-desktop));
|
|
512
|
+
--font-size-h2-responsive: calc(var(--font-size-h2) * var(--scale-desktop));
|
|
513
|
+
--font-size-h3-responsive: calc(var(--font-size-h3) * var(--scale-desktop));
|
|
514
|
+
--font-size-h4-responsive: calc(var(--font-size-h4) * var(--scale-desktop));
|
|
515
|
+
--font-size-h5-responsive: calc(var(--font-size-h5) * var(--scale-desktop));
|
|
516
|
+
--font-size-h6-responsive: calc(var(--font-size-h6) * var(--scale-desktop));
|
|
517
|
+
|
|
518
|
+
--font-size-big-responsive: calc(var(--font-size-big) * var(--scale-desktop));
|
|
519
|
+
--font-size-bigger-responsive: calc(var(--font-size-bigger) * var(--scale-desktop));
|
|
520
|
+
--font-size-jumbo-responsive: calc(var(--font-size-jumbo) * var(--scale-desktop));
|
|
521
|
+
|
|
522
|
+
/* Text utilities */
|
|
523
|
+
--text-2xl-responsive: calc(var(--text-2xl) * var(--scale-desktop));
|
|
524
|
+
--text-3xl-responsive: calc(var(--text-3xl) * var(--scale-desktop));
|
|
525
|
+
--text-4xl-responsive: calc(var(--text-4xl) * var(--scale-desktop));
|
|
526
|
+
--text-5xl-responsive: calc(var(--text-5xl) * var(--scale-desktop));
|
|
527
|
+
--text-6xl-responsive: calc(var(--text-6xl) * var(--scale-desktop));
|
|
528
|
+
--text-7xl-responsive: calc(var(--text-7xl) * var(--scale-desktop));
|
|
529
|
+
--text-8xl-responsive: calc(var(--text-8xl) * var(--scale-desktop));
|
|
530
|
+
--text-9xl-responsive: calc(var(--text-9xl) * var(--scale-desktop));
|
|
531
|
+
--text-10xl-responsive: calc(var(--text-10xl) * var(--scale-desktop));
|
|
532
|
+
|
|
533
|
+
/* Responsive line heights - even tighter for desktop */
|
|
534
|
+
--line-height-h1-responsive: calc(var(--line-height-h1) - 0.15);
|
|
535
|
+
--line-height-h2-responsive: calc(var(--line-height-h2) - 0.1);
|
|
536
|
+
--line-height-h3-responsive: calc(var(--line-height-h3) - 0.1);
|
|
537
|
+
--line-height-big-responsive: calc(var(--line-height-big) - 0.15);
|
|
538
|
+
--line-height-bigger-responsive: calc(var(--line-height-bigger) - 0.15);
|
|
539
|
+
--line-height-jumbo-responsive: calc(var(--line-height-jumbo) - 0.15);
|
|
540
|
+
|
|
541
|
+
--leading-3xl-responsive: calc(var(--leading-3xl) - 0.05);
|
|
542
|
+
--leading-4xl-responsive: calc(var(--leading-4xl) - 0.15);
|
|
543
|
+
--leading-5xl-responsive: calc(var(--leading-5xl) - 0.15);
|
|
544
|
+
--leading-6xl-responsive: calc(var(--leading-6xl) - 0.15);
|
|
545
|
+
--leading-7xl-responsive: calc(var(--leading-7xl) - 0.15);
|
|
546
|
+
--leading-8xl-responsive: calc(var(--leading-8xl) - 0.15);
|
|
547
|
+
--leading-9xl-responsive: 0.85;
|
|
548
|
+
--leading-10xl-responsive: 0.85;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
/* Large desktop */
|
|
553
|
+
@media (min-width: 1440px) {
|
|
554
|
+
:root {
|
|
555
|
+
/* Responsive font sizes */
|
|
556
|
+
--font-size-h1-responsive: calc(var(--font-size-h1) * var(--scale-large-desktop));
|
|
557
|
+
--font-size-h2-responsive: calc(var(--font-size-h2) * var(--scale-large-desktop));
|
|
558
|
+
--font-size-h3-responsive: calc(var(--font-size-h3) * var(--scale-large-desktop));
|
|
559
|
+
--font-size-big-responsive: calc(var(--font-size-big) * var(--scale-large-desktop));
|
|
560
|
+
--font-size-bigger-responsive: calc(var(--font-size-bigger) * var(--scale-large-desktop));
|
|
561
|
+
--font-size-jumbo-responsive: calc(var(--font-size-jumbo) * var(--scale-large-desktop));
|
|
562
|
+
|
|
563
|
+
/* Text utilities */
|
|
564
|
+
--text-5xl-responsive: calc(var(--text-5xl) * var(--scale-large-desktop));
|
|
565
|
+
--text-6xl-responsive: calc(var(--text-6xl) * var(--scale-large-desktop));
|
|
566
|
+
--text-7xl-responsive: calc(var(--text-7xl) * var(--scale-large-desktop));
|
|
567
|
+
--text-8xl-responsive: calc(var(--text-8xl) * var(--scale-large-desktop));
|
|
568
|
+
--text-9xl-responsive: calc(var(--text-9xl) * var(--scale-large-desktop));
|
|
569
|
+
--text-10xl-responsive: calc(var(--text-10xl) * var(--scale-large-desktop));
|
|
570
|
+
|
|
571
|
+
/* Responsive line heights - tightest for large desktop */
|
|
572
|
+
--line-height-h1-responsive: calc(var(--line-height-h1) - 0.2);
|
|
573
|
+
--line-height-h2-responsive: calc(var(--line-height-h2) - 0.15);
|
|
574
|
+
--line-height-big-responsive: calc(var(--line-height-big) - 0.2);
|
|
575
|
+
--line-height-bigger-responsive: calc(var(--line-height-bigger) - 0.2);
|
|
576
|
+
--line-height-jumbo-responsive: calc(var(--line-height-jumbo) - 0.2);
|
|
577
|
+
|
|
578
|
+
--leading-5xl-responsive: calc(var(--leading-5xl) - 0.2);
|
|
579
|
+
--leading-6xl-responsive: calc(var(--leading-6xl) - 0.2);
|
|
580
|
+
--leading-7xl-responsive: calc(var(--leading-7xl) - 0.2);
|
|
581
|
+
--leading-8xl-responsive: calc(var(--leading-8xl) - 0.2);
|
|
582
|
+
--leading-9xl-responsive: 0.8;
|
|
583
|
+
--leading-10xl-responsive: 0.8;
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
/* Mobile adjustments for very large fonts */
|
|
588
|
+
@media (max-width: 480px) {
|
|
589
|
+
:root {
|
|
590
|
+
/* Reduce huge fonts slightly for mobile */
|
|
591
|
+
--font-size-big-responsive: calc(var(--font-size-big) * 0.8);
|
|
592
|
+
--font-size-bigger-responsive: calc(var(--font-size-bigger) * 0.8);
|
|
593
|
+
--font-size-jumbo-responsive: calc(var(--font-size-jumbo) * 0.8);
|
|
594
|
+
|
|
595
|
+
--text-8xl-responsive: calc(var(--text-8xl) * 0.8);
|
|
596
|
+
--text-9xl-responsive: calc(var(--text-9xl) * 0.8);
|
|
597
|
+
--text-10xl-responsive: calc(var(--text-10xl) * 0.8);
|
|
598
|
+
|
|
599
|
+
/* Slightly increase line heights for mobile readability */
|
|
600
|
+
--line-height-big-responsive: calc(var(--line-height-big) + 0.1);
|
|
601
|
+
--line-height-bigger-responsive: calc(var(--line-height-bigger) + 0.1);
|
|
602
|
+
--line-height-jumbo-responsive: calc(var(--line-height-jumbo) + 0.1);
|
|
466
603
|
}
|
|
467
604
|
}
|
|
468
|
-
body {
|
|
469
|
-
padding: 0px;
|
|
470
|
-
margin: 0px;
|
|
471
|
-
box-sizing: border-box;
|
|
472
|
-
line-height: var(--bd-line-height);
|
|
473
|
-
font-weight: var(--bd-font-weight);
|
|
474
|
-
background-color: var(--bd-theme);
|
|
475
|
-
color: var(--bd-color);
|
|
476
|
-
letter-spacing: normal;
|
|
477
|
-
font-size: var(--bdfontSize) ;
|
|
478
|
-
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
.theme{
|
|
483
|
-
background-color: var(--bd-theme);
|
|
484
|
-
}
|
|
485
|
-
.raiseTheme{
|
|
486
|
-
background-color: var(--raiseThemes) !important;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
/* links and href */
|
|
490
|
-
a,
|
|
491
|
-
Link {
|
|
492
|
-
text-decoration: none;
|
|
493
|
-
background: transparent;
|
|
494
|
-
transition: 0.3s;
|
|
495
|
-
color: var(--linkColor);
|
|
496
|
-
font-weight: 500;
|
|
497
|
-
}
|
|
498
|
-
a:hover {
|
|
499
|
-
color: var(--linkHover);
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
button {
|
|
503
|
-
-webkit-appearance: button;
|
|
504
|
-
}
|
|
505
|
-
link {
|
|
506
|
-
text-decoration: none;
|
|
507
|
-
}
|
|
508
|
-
link:hover {
|
|
509
|
-
text-decoration: none;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
/* Background Color */
|
|
513
|
-
.pop{
|
|
514
|
-
background: var(--lighter) !important;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
input:disabled,
|
|
520
|
-
select:disabled,
|
|
521
|
-
button:disabled {
|
|
522
|
-
background-color: var(--muted) !important;
|
|
523
|
-
color: var(--white) !important;
|
|
524
|
-
cursor: not-allowed;
|
|
525
|
-
opacity: 0.6 !important;
|
|
526
|
-
}
|
|
527
605
|
|
|
528
|
-
/*
|
|
529
|
-
.baseColor, .text-base{
|
|
530
|
-
color: var(--text-color) !important;}
|
|
531
|
-
|
|
532
|
-
body {
|
|
533
|
-
font-size: var(--text-base);
|
|
534
|
-
font-weight: var(--bd-font-weight) !important;
|
|
535
|
-
line-height: var(--leading-normal) !important;
|
|
536
|
-
letter-spacing: normal;
|
|
537
|
-
background-color: var(--page-bg) !important;
|
|
538
|
-
color: var(--text-color) !important;
|
|
539
|
-
}
|
|
540
|
-
.bg, .page-bg{
|
|
541
|
-
background-color: var(--page-bg) !important;
|
|
542
|
-
}
|
|
606
|
+
/* ===== APPLY RESPONSIVE VARIABLES TO ELEMENTS ===== */
|
|
543
607
|
|
|
544
608
|
/* Font utilities with matching line heights */
|
|
545
609
|
.text-xs {
|
|
546
|
-
font-size: var(--text-xs);
|
|
547
|
-
line-height: var(--leading-xs);
|
|
610
|
+
font-size: var(--text-xs-responsive);
|
|
611
|
+
line-height: var(--leading-xs-responsive);
|
|
548
612
|
}
|
|
549
613
|
|
|
550
614
|
.text-sm {
|
|
551
|
-
font-size: var(--text-sm);
|
|
552
|
-
line-height: var(--leading-sm);
|
|
615
|
+
font-size: var(--text-sm-responsive);
|
|
616
|
+
line-height: var(--leading-sm-responsive);
|
|
553
617
|
}
|
|
554
618
|
|
|
555
619
|
.text-base {
|
|
556
|
-
font-size: var(--text-base);
|
|
557
|
-
line-height: var(--leading-base);
|
|
620
|
+
font-size: var(--text-base-responsive);
|
|
621
|
+
line-height: var(--leading-base-responsive);
|
|
558
622
|
}
|
|
559
623
|
|
|
560
624
|
.text-lg {
|
|
561
|
-
font-size: var(--text-lg);
|
|
562
|
-
line-height: var(--leading-lg);
|
|
625
|
+
font-size: var(--text-lg-responsive);
|
|
626
|
+
line-height: var(--leading-lg-responsive);
|
|
563
627
|
}
|
|
564
628
|
|
|
565
629
|
.text-xl {
|
|
566
|
-
font-size: var(--text-xl);
|
|
567
|
-
line-height: var(--leading-xl);
|
|
630
|
+
font-size: var(--text-xl-responsive);
|
|
631
|
+
line-height: var(--leading-xl-responsive);
|
|
568
632
|
font-weight: 400;
|
|
569
633
|
}
|
|
570
634
|
|
|
571
635
|
.text-2xl {
|
|
572
|
-
font-size: var(--text-2xl);
|
|
573
|
-
line-height: var(--leading-2xl);
|
|
636
|
+
font-size: var(--text-2xl-responsive);
|
|
637
|
+
line-height: var(--leading-2xl-responsive);
|
|
574
638
|
font-weight: 500;
|
|
575
639
|
}
|
|
576
640
|
|
|
577
641
|
.text-3xl {
|
|
578
|
-
font-size: var(--text-3xl);
|
|
579
|
-
line-height: var(--leading-3xl);
|
|
642
|
+
font-size: var(--text-3xl-responsive);
|
|
643
|
+
line-height: var(--leading-3xl-responsive);
|
|
580
644
|
font-weight: 500;
|
|
581
645
|
}
|
|
582
646
|
|
|
583
647
|
.text-4xl {
|
|
584
|
-
font-size: var(--text-4xl);
|
|
585
|
-
line-height: var(--leading-4xl);
|
|
586
|
-
|
|
648
|
+
font-size: var(--text-4xl-responsive);
|
|
649
|
+
line-height: var(--leading-4xl-responsive);
|
|
650
|
+
font-weight: 600;
|
|
587
651
|
}
|
|
588
652
|
|
|
589
653
|
.text-5xl {
|
|
590
|
-
font-size: var(--text-5xl);
|
|
591
|
-
line-height: var(--leading-5xl);
|
|
592
|
-
|
|
654
|
+
font-size: var(--text-5xl-responsive);
|
|
655
|
+
line-height: var(--leading-5xl-responsive);
|
|
656
|
+
font-weight: 600;
|
|
593
657
|
}
|
|
658
|
+
|
|
594
659
|
.text-6xl {
|
|
595
|
-
font-size: var(--text-6xl);
|
|
596
|
-
line-height: var(--leading-6xl);
|
|
597
|
-
|
|
660
|
+
font-size: var(--text-6xl-responsive);
|
|
661
|
+
line-height: var(--leading-6xl-responsive);
|
|
662
|
+
font-weight: 600;
|
|
598
663
|
}
|
|
599
664
|
|
|
600
665
|
.text-7xl {
|
|
601
|
-
font-size: var(--text-7xl);
|
|
602
|
-
line-height: var(--leading-7xl);
|
|
603
|
-
|
|
666
|
+
font-size: var(--text-7xl-responsive);
|
|
667
|
+
line-height: var(--leading-7xl-responsive);
|
|
668
|
+
font-weight: 600;
|
|
604
669
|
}
|
|
605
670
|
|
|
606
671
|
.text-8xl {
|
|
607
|
-
font-size: var(--text-8xl);
|
|
608
|
-
line-height: var(--leading-8xl);
|
|
609
|
-
|
|
672
|
+
font-size: var(--text-8xl-responsive);
|
|
673
|
+
line-height: var(--leading-8xl-responsive);
|
|
674
|
+
font-weight: 800;
|
|
610
675
|
}
|
|
611
676
|
|
|
612
677
|
.text-9xl {
|
|
613
|
-
font-size: var(--text-9xl);
|
|
614
|
-
line-height: var(--leading-9xl);
|
|
615
|
-
|
|
678
|
+
font-size: var(--text-9xl-responsive);
|
|
679
|
+
line-height: var(--leading-9xl-responsive);
|
|
680
|
+
font-weight: 900;
|
|
616
681
|
}
|
|
617
682
|
|
|
618
683
|
.text-10xl {
|
|
619
|
-
font-size: var(--text-10xl);
|
|
620
|
-
line-height: var(--leading-10xl);
|
|
621
|
-
|
|
684
|
+
font-size: var(--text-10xl-responsive);
|
|
685
|
+
line-height: var(--leading-10xl-responsive);
|
|
686
|
+
font-weight: 900;
|
|
622
687
|
}
|
|
623
688
|
|
|
624
689
|
.text-big {
|
|
625
|
-
font-size: var(--font-size-big);
|
|
626
|
-
line-height: var(--line-height-big);
|
|
690
|
+
font-size: var(--font-size-big-responsive);
|
|
691
|
+
line-height: var(--line-height-big-responsive);
|
|
627
692
|
font-weight: var(--font-weight-big);
|
|
628
693
|
font-style: var(--font-style-big);
|
|
629
694
|
text-decoration: var(--text-decoration-big);
|
|
@@ -632,8 +697,8 @@ body {
|
|
|
632
697
|
}
|
|
633
698
|
|
|
634
699
|
.text-bigger {
|
|
635
|
-
font-size: var(--font-size-bigger);
|
|
636
|
-
line-height: var(--line-height-bigger);
|
|
700
|
+
font-size: var(--font-size-bigger-responsive);
|
|
701
|
+
line-height: var(--line-height-bigger-responsive);
|
|
637
702
|
font-weight: var(--font-weight-bigger);
|
|
638
703
|
font-style: var(--font-style-bigger);
|
|
639
704
|
text-decoration: var(--text-decoration-bigger);
|
|
@@ -642,21 +707,23 @@ body {
|
|
|
642
707
|
}
|
|
643
708
|
|
|
644
709
|
.text-jumbo {
|
|
645
|
-
font-size: var(--font-size-jumbo);
|
|
646
|
-
line-height: var(--line-height-jumbo);
|
|
710
|
+
font-size: var(--font-size-jumbo-responsive);
|
|
711
|
+
line-height: var(--line-height-jumbo-responsive);
|
|
647
712
|
font-weight: var(--font-weight-jumbo);
|
|
648
713
|
font-style: var(--font-style-jumbo);
|
|
649
714
|
text-decoration: var(--text-decoration-jumbo);
|
|
650
715
|
text-transform: var(--text-transform-jumbo);
|
|
651
716
|
letter-spacing: var(--letter-spacing-jumbo);
|
|
652
717
|
}
|
|
718
|
+
|
|
653
719
|
.important{
|
|
654
720
|
font-weight: 700;
|
|
655
|
-
color: var(--primary) !important
|
|
721
|
+
color: var(--primary) !important;
|
|
656
722
|
}
|
|
723
|
+
|
|
657
724
|
/* Mini sizes */
|
|
658
725
|
.text-small {
|
|
659
|
-
|
|
726
|
+
font-size: var(--font-size-small);
|
|
660
727
|
line-height: var(--line-height-small);
|
|
661
728
|
font-weight: var(--font-weight-small);
|
|
662
729
|
font-style: var(--font-style-small);
|
|
@@ -675,19 +742,6 @@ body {
|
|
|
675
742
|
letter-spacing: var(--letter-spacing-smaller);
|
|
676
743
|
}
|
|
677
744
|
|
|
678
|
-
.text-minified , .text-md{
|
|
679
|
-
font-size: var(--minifiedFontSize);
|
|
680
|
-
line-height: 1rem;
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
/* Content formatting */
|
|
684
|
-
.article {
|
|
685
|
-
line-height: 1.7rem;
|
|
686
|
-
letter-spacing: normal;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
745
|
/* Headings */
|
|
692
746
|
h6,
|
|
693
747
|
.h6,
|
|
@@ -703,13 +757,13 @@ h1,
|
|
|
703
757
|
.h1 {
|
|
704
758
|
margin-top: 0;
|
|
705
759
|
margin-bottom: 0.3rem;
|
|
706
|
-
line-height:
|
|
760
|
+
line-height: var(--line-height-h1-responsive); /* Fallback */
|
|
707
761
|
font-weight: normal;
|
|
708
762
|
}
|
|
709
763
|
|
|
710
764
|
h1, .h1 {
|
|
711
|
-
font-size: var(--font-size-h1);
|
|
712
|
-
line-height: var(--line-height-h1);
|
|
765
|
+
font-size: var(--font-size-h1-responsive);
|
|
766
|
+
line-height: var(--line-height-h1-responsive);
|
|
713
767
|
font-weight: var(--font-weight-h1);
|
|
714
768
|
font-style: var(--font-style-h1);
|
|
715
769
|
text-decoration: var(--text-decoration-h1);
|
|
@@ -718,8 +772,8 @@ h1, .h1 {
|
|
|
718
772
|
}
|
|
719
773
|
|
|
720
774
|
h2, .h2 {
|
|
721
|
-
font-size: var(--font-size-h2);
|
|
722
|
-
line-height: var(--line-height-h2);
|
|
775
|
+
font-size: var(--font-size-h2-responsive);
|
|
776
|
+
line-height: var(--line-height-h2-responsive);
|
|
723
777
|
font-weight: var(--font-weight-h2);
|
|
724
778
|
font-style: var(--font-style-h2);
|
|
725
779
|
text-decoration: var(--text-decoration-h2);
|
|
@@ -728,8 +782,8 @@ h2, .h2 {
|
|
|
728
782
|
}
|
|
729
783
|
|
|
730
784
|
h3, .h3 {
|
|
731
|
-
font-size: var(--font-size-h3);
|
|
732
|
-
line-height: var(--line-height-h3);
|
|
785
|
+
font-size: var(--font-size-h3-responsive);
|
|
786
|
+
line-height: var(--line-height-h3-responsive);
|
|
733
787
|
font-weight: var(--font-weight-h3);
|
|
734
788
|
font-style: var(--font-style-h3);
|
|
735
789
|
text-decoration: var(--text-decoration-h3);
|
|
@@ -738,8 +792,8 @@ h3, .h3 {
|
|
|
738
792
|
}
|
|
739
793
|
|
|
740
794
|
h4, .h4 {
|
|
741
|
-
font-size: var(--font-size-h4);
|
|
742
|
-
line-height: var(--line-height-h4);
|
|
795
|
+
font-size: var(--font-size-h4-responsive);
|
|
796
|
+
line-height: var(--line-height-h4-responsive);
|
|
743
797
|
font-weight: var(--font-weight-h4);
|
|
744
798
|
font-style: var(--font-style-h4);
|
|
745
799
|
text-decoration: var(--text-decoration-h4);
|
|
@@ -748,8 +802,8 @@ h4, .h4 {
|
|
|
748
802
|
}
|
|
749
803
|
|
|
750
804
|
h5, .h5 {
|
|
751
|
-
font-size: var(--font-size-h5);
|
|
752
|
-
line-height: var(--line-height-h5);
|
|
805
|
+
font-size: var(--font-size-h5-responsive);
|
|
806
|
+
line-height: var(--line-height-h5-responsive);
|
|
753
807
|
font-weight: var(--font-weight-h5);
|
|
754
808
|
font-style: var(--font-style-h5);
|
|
755
809
|
text-decoration: var(--text-decoration-h5);
|
|
@@ -758,8 +812,8 @@ h5, .h5 {
|
|
|
758
812
|
}
|
|
759
813
|
|
|
760
814
|
h6, .h6 {
|
|
761
|
-
font-size: var(--font-size-h6);
|
|
762
|
-
line-height: var(--line-height-h6);
|
|
815
|
+
font-size: var(--font-size-h6-responsive);
|
|
816
|
+
line-height: var(--line-height-h6-responsive);
|
|
763
817
|
font-weight: var(--font-weight-h6);
|
|
764
818
|
font-style: var(--font-style-h6);
|
|
765
819
|
text-decoration: var(--text-decoration-h6);
|
|
@@ -767,25 +821,169 @@ h6, .h6 {
|
|
|
767
821
|
letter-spacing: var(--letter-spacing-h6);
|
|
768
822
|
}
|
|
769
823
|
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
}
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
/* For WebKit browsers (Chrome, Edge, Brave, Safari) */
|
|
828
|
+
::-webkit-scrollbar {
|
|
829
|
+
width: 10px;
|
|
830
|
+
height: 10px;
|
|
778
831
|
}
|
|
779
832
|
|
|
780
|
-
|
|
781
|
-
:
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
833
|
+
::-webkit-scrollbar-track {
|
|
834
|
+
border-radius: 10px;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
::-webkit-scrollbar-thumb {
|
|
838
|
+
background-color: var(--borderColor, #999); /* Darker thumb */
|
|
839
|
+
border-radius: 10px;
|
|
840
|
+
border: 2px solid transparent;
|
|
841
|
+
background-clip: content-box;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
::-webkit-scrollbar-thumb:hover {
|
|
845
|
+
background-color: var(--dark500, #666); /* Hover effect */
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
/* Optional: Hide scrollbar buttons (arrows) */
|
|
849
|
+
::-webkit-scrollbar-button {
|
|
850
|
+
display: none;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
*{
|
|
856
|
+
font-family: var(--font-font);
|
|
857
|
+
scroll-behavior: smooth;
|
|
858
|
+
transition: 0.3s ease-in-out all !important;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
.card,
|
|
863
|
+
.input,
|
|
864
|
+
.navigation-bar ,
|
|
865
|
+
.modal ,
|
|
866
|
+
.modal-content,
|
|
867
|
+
.button,
|
|
868
|
+
.text,
|
|
869
|
+
.div,
|
|
870
|
+
.table,
|
|
871
|
+
.table-head,
|
|
872
|
+
.table-body,
|
|
873
|
+
.table-row,
|
|
874
|
+
.table-cell,
|
|
875
|
+
.list,
|
|
876
|
+
.list-item,
|
|
877
|
+
.breadcrumb,
|
|
878
|
+
.breadcrumb-link,
|
|
879
|
+
.breadcrumb-item,
|
|
880
|
+
.loader,
|
|
881
|
+
.grid,
|
|
882
|
+
.col,
|
|
883
|
+
.container,
|
|
884
|
+
.step-container,
|
|
885
|
+
.step,
|
|
886
|
+
.step-header,
|
|
887
|
+
.step-line,
|
|
888
|
+
.dropdown,
|
|
889
|
+
.dropdown-menu,
|
|
890
|
+
.dropdown-item,
|
|
891
|
+
.accordion,
|
|
892
|
+
.accordion-header,
|
|
893
|
+
.accordion-content,
|
|
894
|
+
.progress-bar{
|
|
895
|
+
color: var(--text-color) ;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
*,
|
|
900
|
+
*::before,
|
|
901
|
+
*::after {
|
|
902
|
+
box-sizing: border-box !important;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
body {
|
|
906
|
+
padding: 0px;
|
|
907
|
+
margin: 0px;
|
|
908
|
+
font-size: var(--text-base);
|
|
909
|
+
font-weight: var(--bd-font-weight) !important;
|
|
910
|
+
line-height: var(--leading-normal) !important;
|
|
911
|
+
letter-spacing: normal;
|
|
912
|
+
background-color: var(--page-bg) !important;
|
|
913
|
+
color: var(--text-color) !important;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
/* Background Color */
|
|
919
|
+
.pop{
|
|
920
|
+
background: var(--lighter) !important;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
input:disabled,
|
|
926
|
+
select:disabled,
|
|
927
|
+
button:disabled {
|
|
928
|
+
background-color: var(--muted) !important;
|
|
929
|
+
color: var(--white) !important;
|
|
930
|
+
cursor: not-allowed;
|
|
931
|
+
opacity: 0.6 !important;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
/* Typography */
|
|
935
|
+
.baseColor, .text-base{
|
|
936
|
+
color: var(--text-color) !important;}
|
|
937
|
+
.bg, .page-bg{
|
|
938
|
+
background-color: var(--page-bg) !important;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
.theme{
|
|
944
|
+
background-color: var(--bd-theme);
|
|
945
|
+
}
|
|
946
|
+
.raiseTheme{
|
|
947
|
+
background-color: var(--raiseThemes) !important;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
/* links and href */
|
|
951
|
+
a,
|
|
952
|
+
Link {
|
|
953
|
+
text-decoration: none;
|
|
954
|
+
background: transparent;
|
|
955
|
+
transition: 0.3s;
|
|
956
|
+
color: var(--linkColor);
|
|
957
|
+
font-weight: 500;
|
|
958
|
+
}
|
|
959
|
+
a:hover {
|
|
960
|
+
color: var(--linkHover);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
button {
|
|
964
|
+
-webkit-appearance: button;
|
|
965
|
+
}
|
|
966
|
+
link {
|
|
967
|
+
text-decoration: none;
|
|
968
|
+
}
|
|
969
|
+
link:hover {
|
|
970
|
+
text-decoration: none;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
.text-minified , .text-md{
|
|
978
|
+
font-size: var(--minifiedFontSize);
|
|
979
|
+
line-height: 1rem;
|
|
787
980
|
}
|
|
788
981
|
|
|
982
|
+
/* Content formatting */
|
|
983
|
+
.article {
|
|
984
|
+
line-height: 1.7rem;
|
|
985
|
+
letter-spacing: normal;
|
|
986
|
+
}
|
|
789
987
|
|
|
790
988
|
|
|
791
989
|
|
|
@@ -1194,7 +1392,6 @@ h6, .h6 {
|
|
|
1194
1392
|
}
|
|
1195
1393
|
|
|
1196
1394
|
|
|
1197
|
-
|
|
1198
1395
|
/*buttons*/
|
|
1199
1396
|
.button {
|
|
1200
1397
|
border: none;
|
|
@@ -1206,7 +1403,6 @@ h6, .h6 {
|
|
|
1206
1403
|
font-size: var(--minifiedFontSize);
|
|
1207
1404
|
position: relative;
|
|
1208
1405
|
overflow: hidden;
|
|
1209
|
-
font-weight: 500;
|
|
1210
1406
|
z-index: 1;
|
|
1211
1407
|
line-height: 1 !important;
|
|
1212
1408
|
height: var(--inputButtonHeight);
|
|
@@ -2115,7 +2311,6 @@ border-radius: var(--borderRadius);
|
|
|
2115
2311
|
color: var(--text-color);
|
|
2116
2312
|
font-size: var(--minifiedFontSize);
|
|
2117
2313
|
background-color: var(--page-bg);
|
|
2118
|
-
font-weight: 500;
|
|
2119
2314
|
transition: all 0.2s ease;
|
|
2120
2315
|
}
|
|
2121
2316
|
|
|
@@ -2144,7 +2339,6 @@ border-radius: var(--borderRadius);
|
|
|
2144
2339
|
/* Floating Label Styles */
|
|
2145
2340
|
.floating-label {
|
|
2146
2341
|
position: absolute;
|
|
2147
|
-
left: 0.8rem;
|
|
2148
2342
|
top: 50%;
|
|
2149
2343
|
transform: translateY(-50%);
|
|
2150
2344
|
font-size: var(--minifiedFontSize);
|
|
@@ -2154,12 +2348,10 @@ border-radius: var(--borderRadius);
|
|
|
2154
2348
|
transition: all 0.2s ease;
|
|
2155
2349
|
background-color: transparent;
|
|
2156
2350
|
z-index: 1;
|
|
2157
|
-
font-weight: 500;
|
|
2158
2351
|
}
|
|
2159
2352
|
|
|
2160
2353
|
.floating-label.active {
|
|
2161
2354
|
top: 0.35rem;
|
|
2162
|
-
left: 0.8rem;
|
|
2163
2355
|
font-size: 0.625rem;
|
|
2164
2356
|
opacity: 1;
|
|
2165
2357
|
background-color: transparent;
|
|
@@ -2168,7 +2360,7 @@ border-radius: var(--borderRadius);
|
|
|
2168
2360
|
transform: translateY(0);
|
|
2169
2361
|
line-height: 1;
|
|
2170
2362
|
}
|
|
2171
|
-
.floating-label.label-left{left: 2rem ;}
|
|
2363
|
+
.floating-label.label-left{left: 2.2rem ;}
|
|
2172
2364
|
/* Label status colors */
|
|
2173
2365
|
.floating-label.label-success.active {
|
|
2174
2366
|
color: var(--success);
|
|
@@ -2456,8 +2648,6 @@ select:focus {
|
|
|
2456
2648
|
align-items: center;
|
|
2457
2649
|
justify-content: center;
|
|
2458
2650
|
height: 100%;
|
|
2459
|
-
width: 2.5rem;
|
|
2460
|
-
padding: 1rem;
|
|
2461
2651
|
z-index: 2;
|
|
2462
2652
|
pointer-events: auto;
|
|
2463
2653
|
top: 0;
|
|
@@ -2506,9 +2696,8 @@ select:focus {
|
|
|
2506
2696
|
.icon-container.has-left-icon > .input,
|
|
2507
2697
|
.icon-container.has-left-icon > input,
|
|
2508
2698
|
.icon-container.has-left-icon > select {
|
|
2509
|
-
padding-left: 2.
|
|
2510
|
-
padding-top: 1.
|
|
2511
|
-
padding-bottom: 0.4rem;
|
|
2699
|
+
padding-left: 2.2rem;
|
|
2700
|
+
padding-top: 1.3rem;
|
|
2512
2701
|
}
|
|
2513
2702
|
|
|
2514
2703
|
.icon-container:has(.rightIcon) > .input,
|
|
@@ -2516,7 +2705,6 @@ select:focus {
|
|
|
2516
2705
|
.icon-container:has(.rightIcon) > select {
|
|
2517
2706
|
padding-right: 2.75rem;
|
|
2518
2707
|
padding-top: 1.2rem;
|
|
2519
|
-
padding-bottom: 0.4rem;
|
|
2520
2708
|
}
|
|
2521
2709
|
|
|
2522
2710
|
/* Reset padding when no label */
|
|
@@ -2913,13 +3101,6 @@ padding-right: 2.5rem;
|
|
|
2913
3101
|
}
|
|
2914
3102
|
|
|
2915
3103
|
|
|
2916
|
-
/* SearchableInput.css - Matching your theme format */
|
|
2917
|
-
|
|
2918
|
-
/* Reset and base styles */
|
|
2919
|
-
* {
|
|
2920
|
-
box-sizing: border-box;
|
|
2921
|
-
}
|
|
2922
|
-
|
|
2923
3104
|
/* Main wrapper */
|
|
2924
3105
|
.searchable-input-wrapper {
|
|
2925
3106
|
position: relative;
|
|
@@ -4803,8 +4984,6 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
4803
4984
|
|
|
4804
4985
|
.range-wrapper {
|
|
4805
4986
|
position: relative;
|
|
4806
|
-
height: 50px;
|
|
4807
|
-
|
|
4808
4987
|
}
|
|
4809
4988
|
|
|
4810
4989
|
.range-tooltip {
|
|
@@ -4833,9 +5012,9 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
4833
5012
|
|
|
4834
5013
|
.range-slider {
|
|
4835
5014
|
width: 100%;
|
|
4836
|
-
height:
|
|
5015
|
+
height: 8px !important;
|
|
4837
5016
|
appearance: none;
|
|
4838
|
-
background: var(--
|
|
5017
|
+
background: var(--borderColor);
|
|
4839
5018
|
border-radius: 5rem;
|
|
4840
5019
|
outline: none;
|
|
4841
5020
|
padding: 0 !important;
|
|
@@ -4845,7 +5024,7 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
4845
5024
|
appearance: none;
|
|
4846
5025
|
width: 20px;
|
|
4847
5026
|
height: 20px;
|
|
4848
|
-
background-color: var(--
|
|
5027
|
+
background-color: var(--primary300);
|
|
4849
5028
|
border: 0.1rem solid var(--primary500);
|
|
4850
5029
|
border-radius: 50%;
|
|
4851
5030
|
cursor: pointer;
|
|
@@ -4857,7 +5036,7 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
4857
5036
|
}
|
|
4858
5037
|
|
|
4859
5038
|
.range-slider::-moz-range-thumb {
|
|
4860
|
-
background-color: var(--
|
|
5039
|
+
background-color: var(--primary300);
|
|
4861
5040
|
border: 0.1rem solid var(--primary500);
|
|
4862
5041
|
border-radius: 50%;
|
|
4863
5042
|
cursor: pointer;
|