funuicss 3.6.17 → 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/cors.json +8 -0
- package/css/fun.css +632 -360
- package/gsutil +0 -0
- package/package.json +1 -1
- package/ui/button/Button.js +56 -39
- package/ui/input/Input.js +289 -159
- package/ui/theme/theme.d.ts +16 -6
- package/ui/theme/theme.js +160 -135
- 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,127 +218,611 @@
|
|
|
218
218
|
|
|
219
219
|
}
|
|
220
220
|
|
|
221
|
-
|
|
222
|
-
|
|
223
221
|
:root {
|
|
224
|
-
/*
|
|
225
|
-
--
|
|
226
|
-
--
|
|
227
|
-
--
|
|
228
|
-
--
|
|
229
|
-
--
|
|
230
|
-
--
|
|
231
|
-
--
|
|
232
|
-
--
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
--
|
|
236
|
-
--
|
|
237
|
-
|
|
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;
|
|
258
|
+
|
|
259
|
+
/* Element-specific line heights */
|
|
260
|
+
--line-height-smaller: var(--line-height-loose);
|
|
261
|
+
--line-height-small: var(--line-height-relaxed);
|
|
262
|
+
--line-height-body: var(--line-height-normal);
|
|
263
|
+
--line-height-big: var(--line-height-tight);
|
|
264
|
+
--line-height-bigger: var(--line-height-tight);
|
|
265
|
+
--line-height-h6: var(--line-height-normal);
|
|
266
|
+
--line-height-h5: var(--line-height-normal);
|
|
267
|
+
--line-height-h4: var(--line-height-normal);
|
|
268
|
+
--line-height-h3: var(--line-height-snug);
|
|
269
|
+
--line-height-h2: var(--line-height-snug);
|
|
270
|
+
--line-height-h1: var(--line-height-tight);
|
|
271
|
+
--line-height-jumbo: var(--line-height-tight);
|
|
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);
|
|
238
303
|
|
|
239
|
-
/*
|
|
240
|
-
--
|
|
241
|
-
--
|
|
242
|
-
--
|
|
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);
|
|
243
308
|
|
|
244
|
-
|
|
245
|
-
--
|
|
246
|
-
--
|
|
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);
|
|
247
333
|
|
|
248
|
-
|
|
249
|
-
--
|
|
250
|
-
--
|
|
251
|
-
|
|
252
|
-
/* INPUT VARIABLES */
|
|
253
|
-
--input-font-size: var(--text-base);
|
|
254
|
-
--input-padding-x: var(--space-4);
|
|
255
|
-
--input-padding-y: var(--space-3);
|
|
256
|
-
--input-border-radius: var(--radius-lg);
|
|
257
|
-
--input-border-width: var(--inputBorder);
|
|
258
|
-
--input-border-color: var(--borderColor);
|
|
259
|
-
--input-bg: var(--white);
|
|
260
|
-
--input-text-color: var(--text-color);
|
|
261
|
-
--input-placeholder-color: var(--muted);
|
|
262
|
-
--input-min-height: var(--inputButtonHeight);
|
|
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);
|
|
263
338
|
|
|
264
|
-
/*
|
|
265
|
-
--
|
|
266
|
-
--
|
|
267
|
-
--
|
|
268
|
-
--
|
|
269
|
-
--
|
|
270
|
-
--
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
--
|
|
274
|
-
--
|
|
275
|
-
--
|
|
276
|
-
--
|
|
277
|
-
--
|
|
278
|
-
--
|
|
279
|
-
|
|
280
|
-
/*
|
|
281
|
-
--
|
|
282
|
-
--
|
|
283
|
-
--
|
|
284
|
-
--
|
|
285
|
-
--
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
--
|
|
289
|
-
--
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
--
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
--
|
|
296
|
-
--
|
|
297
|
-
--
|
|
298
|
-
--
|
|
299
|
-
--
|
|
300
|
-
--
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
--
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
--
|
|
307
|
-
--
|
|
308
|
-
--
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
--
|
|
313
|
-
--
|
|
314
|
-
--
|
|
315
|
-
--
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
--
|
|
319
|
-
--
|
|
320
|
-
--
|
|
321
|
-
--
|
|
322
|
-
--
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
--
|
|
327
|
-
--
|
|
328
|
-
--
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
--
|
|
333
|
-
--
|
|
334
|
-
--
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
--
|
|
338
|
-
--
|
|
339
|
-
--
|
|
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
|
+
|
|
355
|
+
/* ===== Font Weights ===== */
|
|
356
|
+
--font-weight-thin: 100;
|
|
357
|
+
--font-weight-extra-light: 200;
|
|
358
|
+
--font-weight-light: 300;
|
|
359
|
+
--font-weight-normal: 400;
|
|
360
|
+
--font-weight-medium: 500;
|
|
361
|
+
--font-weight-semibold: 600;
|
|
362
|
+
--font-weight-bold: 700;
|
|
363
|
+
--font-weight-extra-bold: 800;
|
|
364
|
+
--font-weight-black: 900;
|
|
365
|
+
|
|
366
|
+
/* Element-specific font weights */
|
|
367
|
+
--font-weight-smaller: var(--font-weight-normal);
|
|
368
|
+
--font-weight-small: var(--font-weight-normal);
|
|
369
|
+
--font-weight-body: var(--font-weight-normal);
|
|
370
|
+
--font-weight-big: var(--font-weight-bold);
|
|
371
|
+
--font-weight-bigger: var(--font-weight-bold);
|
|
372
|
+
--font-weight-h6: var(--font-weight-medium);
|
|
373
|
+
--font-weight-h5: var(--font-weight-medium);
|
|
374
|
+
--font-weight-h4: var(--font-weight-medium);
|
|
375
|
+
--font-weight-h3: var(--font-weight-semibold);
|
|
376
|
+
--font-weight-h2: var(--font-weight-semibold);
|
|
377
|
+
--font-weight-h1: var(--font-weight-bold);
|
|
378
|
+
--font-weight-jumbo: var(--font-weight-black);
|
|
379
|
+
|
|
380
|
+
/* ===== Text Decoration ===== */
|
|
381
|
+
--text-decoration-none: none;
|
|
382
|
+
--text-decoration-underline: underline;
|
|
383
|
+
--text-decoration-overline: overline;
|
|
384
|
+
--text-decoration-line-through: line-through;
|
|
385
|
+
|
|
386
|
+
/* Element-specific text decoration */
|
|
387
|
+
--text-decoration-smaller: var(--text-decoration-none);
|
|
388
|
+
--text-decoration-small: var(--text-decoration-none);
|
|
389
|
+
--text-decoration-body: var(--text-decoration-none);
|
|
390
|
+
--text-decoration-big: var(--text-decoration-none);
|
|
391
|
+
--text-decoration-bigger: var(--text-decoration-none);
|
|
392
|
+
--text-decoration-h6: var(--text-decoration-none);
|
|
393
|
+
--text-decoration-h5: var(--text-decoration-none);
|
|
394
|
+
--text-decoration-h4: var(--text-decoration-none);
|
|
395
|
+
--text-decoration-h3: var(--text-decoration-none);
|
|
396
|
+
--text-decoration-h2: var(--text-decoration-none);
|
|
397
|
+
--text-decoration-h1: var(--text-decoration-none);
|
|
398
|
+
--text-decoration-jumbo: var(--text-decoration-none);
|
|
399
|
+
|
|
400
|
+
/* ===== Font Style ===== */
|
|
401
|
+
--font-style-normal: normal;
|
|
402
|
+
--font-style-italic: italic;
|
|
403
|
+
--font-style-oblique: oblique;
|
|
404
|
+
|
|
405
|
+
/* Element-specific font styles */
|
|
406
|
+
--font-style-smaller: var(--font-style-normal);
|
|
407
|
+
--font-style-small: var(--font-style-normal);
|
|
408
|
+
--font-style-body: var(--font-style-normal);
|
|
409
|
+
--font-style-big: var(--font-style-normal);
|
|
410
|
+
--font-style-bigger: var(--font-style-normal);
|
|
411
|
+
--font-style-h6: var(--font-style-normal);
|
|
412
|
+
--font-style-h5: var(--font-style-normal);
|
|
413
|
+
--font-style-h4: var(--font-style-normal);
|
|
414
|
+
--font-style-h3: var(--font-style-normal);
|
|
415
|
+
--font-style-h2: var(--font-style-normal);
|
|
416
|
+
--font-style-h1: var(--font-style-normal);
|
|
417
|
+
--font-style-jumbo: var(--font-style-normal);
|
|
418
|
+
|
|
419
|
+
/* ===== Text Transform ===== */
|
|
420
|
+
--text-transform-none: none;
|
|
421
|
+
--text-transform-uppercase: uppercase;
|
|
422
|
+
--text-transform-lowercase: lowercase;
|
|
423
|
+
--text-transform-capitalize: capitalize;
|
|
424
|
+
|
|
425
|
+
/* Element-specific text transforms */
|
|
426
|
+
--text-transform-smaller: var(--text-transform-none);
|
|
427
|
+
--text-transform-small: var(--text-transform-none);
|
|
428
|
+
--text-transform-body: var(--text-transform-none);
|
|
429
|
+
--text-transform-big: var(--text-transform-none);
|
|
430
|
+
--text-transform-bigger: var(--text-transform-none);
|
|
431
|
+
--text-transform-h6: var(--text-transform-none);
|
|
432
|
+
--text-transform-h5: var(--text-transform-none);
|
|
433
|
+
--text-transform-h4: var(--text-transform-none);
|
|
434
|
+
--text-transform-h3: var(--text-transform-none);
|
|
435
|
+
--text-transform-h2: var(--text-transform-none);
|
|
436
|
+
--text-transform-h1: var(--text-transform-none);
|
|
437
|
+
--text-transform-jumbo: var(--text-transform-none);
|
|
438
|
+
|
|
439
|
+
/* ===== Letter Spacing ===== */
|
|
440
|
+
--letter-spacing-tighter: -0.05em;
|
|
441
|
+
--letter-spacing-tight: -0.025em;
|
|
442
|
+
--letter-spacing-normal: 0em;
|
|
443
|
+
--letter-spacing-wide: 0.025em;
|
|
444
|
+
--letter-spacing-wider: 0.05em;
|
|
445
|
+
--letter-spacing-widest: 0.1em;
|
|
446
|
+
|
|
447
|
+
/* Element-specific letter spacing */
|
|
448
|
+
--letter-spacing-smaller: var(--letter-spacing-normal);
|
|
449
|
+
--letter-spacing-small: var(--letter-spacing-normal);
|
|
450
|
+
--letter-spacing-body: var(--letter-spacing-normal);
|
|
451
|
+
--letter-spacing-big: var(--letter-spacing-tight);
|
|
452
|
+
--letter-spacing-bigger: var(--letter-spacing-tight);
|
|
453
|
+
--letter-spacing-h6: var(--letter-spacing-normal);
|
|
454
|
+
--letter-spacing-h5: var(--letter-spacing-normal);
|
|
455
|
+
--letter-spacing-h4: var(--letter-spacing-normal);
|
|
456
|
+
--letter-spacing-h3: var(--letter-spacing-normal);
|
|
457
|
+
--letter-spacing-h2: var(--letter-spacing-tight);
|
|
458
|
+
--letter-spacing-h1: var(--letter-spacing-tight);
|
|
459
|
+
--letter-spacing-jumbo: var(--letter-spacing-tighter);
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
/* ===== RESPONSIVE BREAKPOINTS ===== */
|
|
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) {
|
|
509
|
+
:root {
|
|
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);
|
|
603
|
+
}
|
|
340
604
|
}
|
|
341
605
|
|
|
606
|
+
/* ===== APPLY RESPONSIVE VARIABLES TO ELEMENTS ===== */
|
|
607
|
+
|
|
608
|
+
/* Font utilities with matching line heights */
|
|
609
|
+
.text-xs {
|
|
610
|
+
font-size: var(--text-xs-responsive);
|
|
611
|
+
line-height: var(--leading-xs-responsive);
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.text-sm {
|
|
615
|
+
font-size: var(--text-sm-responsive);
|
|
616
|
+
line-height: var(--leading-sm-responsive);
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.text-base {
|
|
620
|
+
font-size: var(--text-base-responsive);
|
|
621
|
+
line-height: var(--leading-base-responsive);
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.text-lg {
|
|
625
|
+
font-size: var(--text-lg-responsive);
|
|
626
|
+
line-height: var(--leading-lg-responsive);
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.text-xl {
|
|
630
|
+
font-size: var(--text-xl-responsive);
|
|
631
|
+
line-height: var(--leading-xl-responsive);
|
|
632
|
+
font-weight: 400;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.text-2xl {
|
|
636
|
+
font-size: var(--text-2xl-responsive);
|
|
637
|
+
line-height: var(--leading-2xl-responsive);
|
|
638
|
+
font-weight: 500;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.text-3xl {
|
|
642
|
+
font-size: var(--text-3xl-responsive);
|
|
643
|
+
line-height: var(--leading-3xl-responsive);
|
|
644
|
+
font-weight: 500;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.text-4xl {
|
|
648
|
+
font-size: var(--text-4xl-responsive);
|
|
649
|
+
line-height: var(--leading-4xl-responsive);
|
|
650
|
+
font-weight: 600;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.text-5xl {
|
|
654
|
+
font-size: var(--text-5xl-responsive);
|
|
655
|
+
line-height: var(--leading-5xl-responsive);
|
|
656
|
+
font-weight: 600;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.text-6xl {
|
|
660
|
+
font-size: var(--text-6xl-responsive);
|
|
661
|
+
line-height: var(--leading-6xl-responsive);
|
|
662
|
+
font-weight: 600;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.text-7xl {
|
|
666
|
+
font-size: var(--text-7xl-responsive);
|
|
667
|
+
line-height: var(--leading-7xl-responsive);
|
|
668
|
+
font-weight: 600;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.text-8xl {
|
|
672
|
+
font-size: var(--text-8xl-responsive);
|
|
673
|
+
line-height: var(--leading-8xl-responsive);
|
|
674
|
+
font-weight: 800;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.text-9xl {
|
|
678
|
+
font-size: var(--text-9xl-responsive);
|
|
679
|
+
line-height: var(--leading-9xl-responsive);
|
|
680
|
+
font-weight: 900;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.text-10xl {
|
|
684
|
+
font-size: var(--text-10xl-responsive);
|
|
685
|
+
line-height: var(--leading-10xl-responsive);
|
|
686
|
+
font-weight: 900;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.text-big {
|
|
690
|
+
font-size: var(--font-size-big-responsive);
|
|
691
|
+
line-height: var(--line-height-big-responsive);
|
|
692
|
+
font-weight: var(--font-weight-big);
|
|
693
|
+
font-style: var(--font-style-big);
|
|
694
|
+
text-decoration: var(--text-decoration-big);
|
|
695
|
+
text-transform: var(--text-transform-big);
|
|
696
|
+
letter-spacing: var(--letter-spacing-big);
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.text-bigger {
|
|
700
|
+
font-size: var(--font-size-bigger-responsive);
|
|
701
|
+
line-height: var(--line-height-bigger-responsive);
|
|
702
|
+
font-weight: var(--font-weight-bigger);
|
|
703
|
+
font-style: var(--font-style-bigger);
|
|
704
|
+
text-decoration: var(--text-decoration-bigger);
|
|
705
|
+
text-transform: var(--text-transform-bigger);
|
|
706
|
+
letter-spacing: var(--letter-spacing-bigger);
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.text-jumbo {
|
|
710
|
+
font-size: var(--font-size-jumbo-responsive);
|
|
711
|
+
line-height: var(--line-height-jumbo-responsive);
|
|
712
|
+
font-weight: var(--font-weight-jumbo);
|
|
713
|
+
font-style: var(--font-style-jumbo);
|
|
714
|
+
text-decoration: var(--text-decoration-jumbo);
|
|
715
|
+
text-transform: var(--text-transform-jumbo);
|
|
716
|
+
letter-spacing: var(--letter-spacing-jumbo);
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.important{
|
|
720
|
+
font-weight: 700;
|
|
721
|
+
color: var(--primary) !important;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
/* Mini sizes */
|
|
725
|
+
.text-small {
|
|
726
|
+
font-size: var(--font-size-small);
|
|
727
|
+
line-height: var(--line-height-small);
|
|
728
|
+
font-weight: var(--font-weight-small);
|
|
729
|
+
font-style: var(--font-style-small);
|
|
730
|
+
text-decoration: var(--text-decoration-small);
|
|
731
|
+
text-transform: var(--text-transform-small);
|
|
732
|
+
letter-spacing: var(--letter-spacing-small);
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.text-smaller {
|
|
736
|
+
font-size: var(--font-size-smaller);
|
|
737
|
+
line-height: var(--line-height-smaller);
|
|
738
|
+
font-weight: var(--font-weight-smaller);
|
|
739
|
+
font-style: var(--font-style-smaller);
|
|
740
|
+
text-decoration: var(--text-decoration-smaller);
|
|
741
|
+
text-transform: var(--text-transform-smaller);
|
|
742
|
+
letter-spacing: var(--letter-spacing-smaller);
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
/* Headings */
|
|
746
|
+
h6,
|
|
747
|
+
.h6,
|
|
748
|
+
h5,
|
|
749
|
+
.h5,
|
|
750
|
+
h4,
|
|
751
|
+
.h4,
|
|
752
|
+
h3,
|
|
753
|
+
.h3,
|
|
754
|
+
h2,
|
|
755
|
+
.h2,
|
|
756
|
+
h1,
|
|
757
|
+
.h1 {
|
|
758
|
+
margin-top: 0;
|
|
759
|
+
margin-bottom: 0.3rem;
|
|
760
|
+
line-height: var(--line-height-h1-responsive); /* Fallback */
|
|
761
|
+
font-weight: normal;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
h1, .h1 {
|
|
765
|
+
font-size: var(--font-size-h1-responsive);
|
|
766
|
+
line-height: var(--line-height-h1-responsive);
|
|
767
|
+
font-weight: var(--font-weight-h1);
|
|
768
|
+
font-style: var(--font-style-h1);
|
|
769
|
+
text-decoration: var(--text-decoration-h1);
|
|
770
|
+
text-transform: var(--text-transform-h1);
|
|
771
|
+
letter-spacing: var(--letter-spacing-h1);
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
h2, .h2 {
|
|
775
|
+
font-size: var(--font-size-h2-responsive);
|
|
776
|
+
line-height: var(--line-height-h2-responsive);
|
|
777
|
+
font-weight: var(--font-weight-h2);
|
|
778
|
+
font-style: var(--font-style-h2);
|
|
779
|
+
text-decoration: var(--text-decoration-h2);
|
|
780
|
+
text-transform: var(--text-transform-h2);
|
|
781
|
+
letter-spacing: var(--letter-spacing-h2);
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
h3, .h3 {
|
|
785
|
+
font-size: var(--font-size-h3-responsive);
|
|
786
|
+
line-height: var(--line-height-h3-responsive);
|
|
787
|
+
font-weight: var(--font-weight-h3);
|
|
788
|
+
font-style: var(--font-style-h3);
|
|
789
|
+
text-decoration: var(--text-decoration-h3);
|
|
790
|
+
text-transform: var(--text-transform-h3);
|
|
791
|
+
letter-spacing: var(--letter-spacing-h3);
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
h4, .h4 {
|
|
795
|
+
font-size: var(--font-size-h4-responsive);
|
|
796
|
+
line-height: var(--line-height-h4-responsive);
|
|
797
|
+
font-weight: var(--font-weight-h4);
|
|
798
|
+
font-style: var(--font-style-h4);
|
|
799
|
+
text-decoration: var(--text-decoration-h4);
|
|
800
|
+
text-transform: var(--text-transform-h4);
|
|
801
|
+
letter-spacing: var(--letter-spacing-h4);
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
h5, .h5 {
|
|
805
|
+
font-size: var(--font-size-h5-responsive);
|
|
806
|
+
line-height: var(--line-height-h5-responsive);
|
|
807
|
+
font-weight: var(--font-weight-h5);
|
|
808
|
+
font-style: var(--font-style-h5);
|
|
809
|
+
text-decoration: var(--text-decoration-h5);
|
|
810
|
+
text-transform: var(--text-transform-h5);
|
|
811
|
+
letter-spacing: var(--letter-spacing-h5);
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
h6, .h6 {
|
|
815
|
+
font-size: var(--font-size-h6-responsive);
|
|
816
|
+
line-height: var(--line-height-h6-responsive);
|
|
817
|
+
font-weight: var(--font-weight-h6);
|
|
818
|
+
font-style: var(--font-style-h6);
|
|
819
|
+
text-decoration: var(--text-decoration-h6);
|
|
820
|
+
text-transform: var(--text-transform-h6);
|
|
821
|
+
letter-spacing: var(--letter-spacing-h6);
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
|
|
342
826
|
|
|
343
827
|
/* For WebKit browsers (Chrome, Edge, Brave, Safari) */
|
|
344
828
|
::-webkit-scrollbar {
|
|
@@ -411,7 +895,6 @@
|
|
|
411
895
|
color: var(--text-color) ;
|
|
412
896
|
}
|
|
413
897
|
|
|
414
|
-
/* normalise css */
|
|
415
898
|
|
|
416
899
|
*,
|
|
417
900
|
*::before,
|
|
@@ -419,54 +902,18 @@
|
|
|
419
902
|
box-sizing: border-box !important;
|
|
420
903
|
}
|
|
421
904
|
|
|
422
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
423
|
-
:root {
|
|
424
|
-
scroll-behavior: smooth;
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
905
|
body {
|
|
428
|
-
|
|
906
|
+
padding: 0px;
|
|
429
907
|
margin: 0px;
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
background-color: var(--bd-theme);
|
|
434
|
-
color: var(--bd-color);
|
|
908
|
+
font-size: var(--text-base);
|
|
909
|
+
font-weight: var(--bd-font-weight) !important;
|
|
910
|
+
line-height: var(--leading-normal) !important;
|
|
435
911
|
letter-spacing: normal;
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
.theme{
|
|
442
|
-
background-color: var(--bd-theme);
|
|
443
|
-
}
|
|
444
|
-
.raiseTheme{
|
|
445
|
-
background-color: var(--raiseThemes) !important;
|
|
912
|
+
background-color: var(--page-bg) !important;
|
|
913
|
+
color: var(--text-color) !important;
|
|
446
914
|
}
|
|
447
915
|
|
|
448
|
-
/* links and href */
|
|
449
|
-
a,
|
|
450
|
-
Link {
|
|
451
|
-
text-decoration: none;
|
|
452
|
-
background: transparent;
|
|
453
|
-
transition: 0.3s;
|
|
454
|
-
color: var(--linkColor);
|
|
455
|
-
font-weight: 500;
|
|
456
|
-
}
|
|
457
|
-
a:hover {
|
|
458
|
-
color: var(--linkHover);
|
|
459
|
-
}
|
|
460
916
|
|
|
461
|
-
button {
|
|
462
|
-
-webkit-appearance: button;
|
|
463
|
-
}
|
|
464
|
-
link {
|
|
465
|
-
text-decoration: none;
|
|
466
|
-
}
|
|
467
|
-
link:hover {
|
|
468
|
-
text-decoration: none;
|
|
469
|
-
}
|
|
470
917
|
|
|
471
918
|
/* Background Color */
|
|
472
919
|
.pop{
|
|
@@ -487,131 +934,45 @@ button:disabled {
|
|
|
487
934
|
/* Typography */
|
|
488
935
|
.baseColor, .text-base{
|
|
489
936
|
color: var(--text-color) !important;}
|
|
490
|
-
|
|
491
|
-
body {
|
|
492
|
-
font-size: var(--text-base);
|
|
493
|
-
font-weight: var(--bd-font-weight) !important;
|
|
494
|
-
line-height: var(--leading-normal) !important;
|
|
495
|
-
letter-spacing: normal;
|
|
496
|
-
background-color: var(--page-bg) !important;
|
|
497
|
-
color: var(--text-color) !important;
|
|
498
|
-
}
|
|
499
937
|
.bg, .page-bg{
|
|
500
938
|
background-color: var(--page-bg) !important;
|
|
501
939
|
}
|
|
502
940
|
|
|
503
|
-
/* Font utilities with matching line heights */
|
|
504
|
-
.text-xs {
|
|
505
|
-
font-size: var(--text-xs);
|
|
506
|
-
line-height: var(--leading-xs);
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
.text-sm {
|
|
510
|
-
font-size: var(--text-sm);
|
|
511
|
-
line-height: var(--leading-sm);
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
.text-base {
|
|
515
|
-
font-size: var(--text-base);
|
|
516
|
-
line-height: var(--leading-base);
|
|
517
|
-
}
|
|
518
941
|
|
|
519
|
-
.text-lg {
|
|
520
|
-
font-size: var(--text-lg);
|
|
521
|
-
line-height: var(--leading-lg);
|
|
522
|
-
}
|
|
523
942
|
|
|
524
|
-
.
|
|
525
|
-
|
|
526
|
-
line-height: var(--leading-xl);
|
|
527
|
-
font-weight: 400;
|
|
943
|
+
.theme{
|
|
944
|
+
background-color: var(--bd-theme);
|
|
528
945
|
}
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
font-size: var(--text-2xl);
|
|
532
|
-
line-height: var(--leading-2xl);
|
|
533
|
-
font-weight: 500;
|
|
946
|
+
.raiseTheme{
|
|
947
|
+
background-color: var(--raiseThemes) !important;
|
|
534
948
|
}
|
|
535
949
|
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
950
|
+
/* links and href */
|
|
951
|
+
a,
|
|
952
|
+
Link {
|
|
953
|
+
text-decoration: none;
|
|
954
|
+
background: transparent;
|
|
955
|
+
transition: 0.3s;
|
|
956
|
+
color: var(--linkColor);
|
|
539
957
|
font-weight: 500;
|
|
540
958
|
}
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
font-size: var(--text-4xl);
|
|
544
|
-
line-height: var(--leading-4xl);
|
|
545
|
-
font-weight: 600;
|
|
959
|
+
a:hover {
|
|
960
|
+
color: var(--linkHover);
|
|
546
961
|
}
|
|
547
962
|
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
line-height: var(--leading-5xl);
|
|
551
|
-
font-weight: 600;
|
|
552
|
-
}
|
|
553
|
-
.text-6xl {
|
|
554
|
-
font-size: var(--text-6xl);
|
|
555
|
-
line-height: var(--leading-6xl);
|
|
556
|
-
font-weight: 600;
|
|
963
|
+
button {
|
|
964
|
+
-webkit-appearance: button;
|
|
557
965
|
}
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
font-size: var(--text-7xl);
|
|
561
|
-
line-height: var(--leading-7xl);
|
|
562
|
-
font-weight: 600;
|
|
966
|
+
link {
|
|
967
|
+
text-decoration: none;
|
|
563
968
|
}
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
font-size: var(--text-8xl);
|
|
567
|
-
line-height: var(--leading-8xl);
|
|
568
|
-
font-weight: 800;
|
|
969
|
+
link:hover {
|
|
970
|
+
text-decoration: none;
|
|
569
971
|
}
|
|
570
972
|
|
|
571
|
-
.text-9xl {
|
|
572
|
-
font-size: var(--text-9xl);
|
|
573
|
-
line-height: var(--leading-9xl);
|
|
574
|
-
font-weight: 900;
|
|
575
|
-
}
|
|
576
973
|
|
|
577
|
-
.text-10xl {
|
|
578
|
-
font-size: var(--text-10xl);
|
|
579
|
-
line-height: var(--leading-10xl);
|
|
580
|
-
font-weight: 900;
|
|
581
|
-
}
|
|
582
974
|
|
|
583
|
-
/* Additional responsive/animated sizes */
|
|
584
|
-
.text-big {
|
|
585
|
-
font-size: calc(1.375rem + 2vw); /* Responsive scaling */
|
|
586
|
-
line-height: 80%;
|
|
587
|
-
font-weight: 900;
|
|
588
|
-
}
|
|
589
975
|
|
|
590
|
-
.text-bigger {
|
|
591
|
-
font-size: calc(1.375rem + 2.5vw);
|
|
592
|
-
line-height: 80% ;
|
|
593
|
-
font-weight: 900;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
.text-jumbo {
|
|
597
|
-
font-size: calc(1.375rem + 5vw);
|
|
598
|
-
line-height: 70%;
|
|
599
|
-
font-weight: 900;
|
|
600
|
-
}
|
|
601
|
-
.important{
|
|
602
|
-
font-weight: 700;
|
|
603
|
-
color: var(--primary) !important ;
|
|
604
|
-
}
|
|
605
|
-
/* Mini sizes */
|
|
606
|
-
.text-small {
|
|
607
|
-
font-size: var(--smallFont);
|
|
608
|
-
line-height: 1.25rem;
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
.text-smaller {
|
|
612
|
-
font-size: var(--smallerFont);
|
|
613
|
-
line-height: 1.125rem;
|
|
614
|
-
}
|
|
615
976
|
|
|
616
977
|
.text-minified , .text-md{
|
|
617
978
|
font-size: var(--minifiedFontSize);
|
|
@@ -626,64 +987,6 @@ body {
|
|
|
626
987
|
|
|
627
988
|
|
|
628
989
|
|
|
629
|
-
/* Headings */
|
|
630
|
-
h6,
|
|
631
|
-
.h6,
|
|
632
|
-
h5,
|
|
633
|
-
.h5,
|
|
634
|
-
h4,
|
|
635
|
-
.h4,
|
|
636
|
-
h3,
|
|
637
|
-
.h3,
|
|
638
|
-
h2,
|
|
639
|
-
.h2,
|
|
640
|
-
h1,
|
|
641
|
-
.h1 {
|
|
642
|
-
margin-top: 0;
|
|
643
|
-
margin-bottom: 0.3rem;
|
|
644
|
-
line-height: 1.2;
|
|
645
|
-
font-weight: normal;
|
|
646
|
-
}
|
|
647
|
-
|
|
648
|
-
h1, .h1 {
|
|
649
|
-
font-size: var(--text-5xl);
|
|
650
|
-
line-height: var(--leading-none);
|
|
651
|
-
font-weight: 900;
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
h2, .h2 {
|
|
655
|
-
font-size: var(--text-4xl);
|
|
656
|
-
line-height: var(--leading-4xl);
|
|
657
|
-
font-weight: 900;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
h3, .h3 {
|
|
661
|
-
font-size: var(--text-3xl);
|
|
662
|
-
line-height: var(--leading-3xl);
|
|
663
|
-
font-weight: 700;
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
h4, .h4 {
|
|
667
|
-
font-size: var(--text-2xl);
|
|
668
|
-
line-height: var(--leading-2xl);
|
|
669
|
-
font-weight: 600;
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
h5, .h5 {
|
|
673
|
-
font-size: var(--text-xl);
|
|
674
|
-
line-height: var(--leading-xl);
|
|
675
|
-
font-weight: 500;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
h6, .h6 {
|
|
679
|
-
font-size: var(--text-base);
|
|
680
|
-
line-height: var(--leading-normal);
|
|
681
|
-
font-weight: 500;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
990
|
.text-bold {
|
|
688
991
|
font-weight: bold !important;
|
|
689
992
|
}
|
|
@@ -1089,7 +1392,6 @@ h6, .h6 {
|
|
|
1089
1392
|
}
|
|
1090
1393
|
|
|
1091
1394
|
|
|
1092
|
-
|
|
1093
1395
|
/*buttons*/
|
|
1094
1396
|
.button {
|
|
1095
1397
|
border: none;
|
|
@@ -1101,7 +1403,6 @@ h6, .h6 {
|
|
|
1101
1403
|
font-size: var(--minifiedFontSize);
|
|
1102
1404
|
position: relative;
|
|
1103
1405
|
overflow: hidden;
|
|
1104
|
-
font-weight: 500;
|
|
1105
1406
|
z-index: 1;
|
|
1106
1407
|
line-height: 1 !important;
|
|
1107
1408
|
height: var(--inputButtonHeight);
|
|
@@ -1969,8 +2270,6 @@ border-radius: var(--borderRadius);
|
|
|
1969
2270
|
|
|
1970
2271
|
|
|
1971
2272
|
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
2273
|
.dropup:hover .drop-menu {
|
|
1975
2274
|
display: block;
|
|
1976
2275
|
z-index: 1;
|
|
@@ -2012,7 +2311,6 @@ border-radius: var(--borderRadius);
|
|
|
2012
2311
|
color: var(--text-color);
|
|
2013
2312
|
font-size: var(--minifiedFontSize);
|
|
2014
2313
|
background-color: var(--page-bg);
|
|
2015
|
-
font-weight: 500;
|
|
2016
2314
|
transition: all 0.2s ease;
|
|
2017
2315
|
}
|
|
2018
2316
|
|
|
@@ -2041,7 +2339,6 @@ border-radius: var(--borderRadius);
|
|
|
2041
2339
|
/* Floating Label Styles */
|
|
2042
2340
|
.floating-label {
|
|
2043
2341
|
position: absolute;
|
|
2044
|
-
left: 0.8rem;
|
|
2045
2342
|
top: 50%;
|
|
2046
2343
|
transform: translateY(-50%);
|
|
2047
2344
|
font-size: var(--minifiedFontSize);
|
|
@@ -2050,14 +2347,11 @@ border-radius: var(--borderRadius);
|
|
|
2050
2347
|
pointer-events: none;
|
|
2051
2348
|
transition: all 0.2s ease;
|
|
2052
2349
|
background-color: transparent;
|
|
2053
|
-
padding: 0 0.25rem;
|
|
2054
2350
|
z-index: 1;
|
|
2055
|
-
font-weight: 500;
|
|
2056
2351
|
}
|
|
2057
2352
|
|
|
2058
2353
|
.floating-label.active {
|
|
2059
2354
|
top: 0.35rem;
|
|
2060
|
-
left: 0.8rem;
|
|
2061
2355
|
font-size: 0.625rem;
|
|
2062
2356
|
opacity: 1;
|
|
2063
2357
|
background-color: transparent;
|
|
@@ -2066,7 +2360,7 @@ border-radius: var(--borderRadius);
|
|
|
2066
2360
|
transform: translateY(0);
|
|
2067
2361
|
line-height: 1;
|
|
2068
2362
|
}
|
|
2069
|
-
.floating-label.label-left{left: 2.
|
|
2363
|
+
.floating-label.label-left{left: 2.2rem ;}
|
|
2070
2364
|
/* Label status colors */
|
|
2071
2365
|
.floating-label.label-success.active {
|
|
2072
2366
|
color: var(--success);
|
|
@@ -2097,14 +2391,6 @@ border-radius: var(--borderRadius);
|
|
|
2097
2391
|
background-color: transparent;
|
|
2098
2392
|
}
|
|
2099
2393
|
|
|
2100
|
-
/* For textarea */
|
|
2101
|
-
textarea ~ .floating-label {
|
|
2102
|
-
top: 1.2rem;
|
|
2103
|
-
}
|
|
2104
|
-
|
|
2105
|
-
textarea ~ .floating-label.active {
|
|
2106
|
-
top: 0.35rem;
|
|
2107
|
-
}
|
|
2108
2394
|
|
|
2109
2395
|
/* Status Input Styles */
|
|
2110
2396
|
.input.success-input,
|
|
@@ -2157,8 +2443,7 @@ textarea {
|
|
|
2157
2443
|
border-radius: var(--radius) !important;
|
|
2158
2444
|
height: fit-content !important;
|
|
2159
2445
|
min-height: 4rem;
|
|
2160
|
-
padding-top:
|
|
2161
|
-
padding-bottom: 0.6rem;
|
|
2446
|
+
padding-top: 0.8rem !important;
|
|
2162
2447
|
}
|
|
2163
2448
|
|
|
2164
2449
|
/* Reset padding when there's no label for textarea */
|
|
@@ -2363,8 +2648,6 @@ select:focus {
|
|
|
2363
2648
|
align-items: center;
|
|
2364
2649
|
justify-content: center;
|
|
2365
2650
|
height: 100%;
|
|
2366
|
-
width: 2.5rem;
|
|
2367
|
-
padding: 1rem;
|
|
2368
2651
|
z-index: 2;
|
|
2369
2652
|
pointer-events: auto;
|
|
2370
2653
|
top: 0;
|
|
@@ -2413,9 +2696,8 @@ select:focus {
|
|
|
2413
2696
|
.icon-container.has-left-icon > .input,
|
|
2414
2697
|
.icon-container.has-left-icon > input,
|
|
2415
2698
|
.icon-container.has-left-icon > select {
|
|
2416
|
-
padding-left: 2.
|
|
2417
|
-
padding-top: 1.
|
|
2418
|
-
padding-bottom: 0.4rem;
|
|
2699
|
+
padding-left: 2.2rem;
|
|
2700
|
+
padding-top: 1.3rem;
|
|
2419
2701
|
}
|
|
2420
2702
|
|
|
2421
2703
|
.icon-container:has(.rightIcon) > .input,
|
|
@@ -2423,7 +2705,6 @@ select:focus {
|
|
|
2423
2705
|
.icon-container:has(.rightIcon) > select {
|
|
2424
2706
|
padding-right: 2.75rem;
|
|
2425
2707
|
padding-top: 1.2rem;
|
|
2426
|
-
padding-bottom: 0.4rem;
|
|
2427
2708
|
}
|
|
2428
2709
|
|
|
2429
2710
|
/* Reset padding when no label */
|
|
@@ -2820,13 +3101,6 @@ padding-right: 2.5rem;
|
|
|
2820
3101
|
}
|
|
2821
3102
|
|
|
2822
3103
|
|
|
2823
|
-
/* SearchableInput.css - Matching your theme format */
|
|
2824
|
-
|
|
2825
|
-
/* Reset and base styles */
|
|
2826
|
-
* {
|
|
2827
|
-
box-sizing: border-box;
|
|
2828
|
-
}
|
|
2829
|
-
|
|
2830
3104
|
/* Main wrapper */
|
|
2831
3105
|
.searchable-input-wrapper {
|
|
2832
3106
|
position: relative;
|
|
@@ -4710,8 +4984,6 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
4710
4984
|
|
|
4711
4985
|
.range-wrapper {
|
|
4712
4986
|
position: relative;
|
|
4713
|
-
height: 50px;
|
|
4714
|
-
|
|
4715
4987
|
}
|
|
4716
4988
|
|
|
4717
4989
|
.range-tooltip {
|
|
@@ -4740,9 +5012,9 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
4740
5012
|
|
|
4741
5013
|
.range-slider {
|
|
4742
5014
|
width: 100%;
|
|
4743
|
-
height:
|
|
5015
|
+
height: 8px !important;
|
|
4744
5016
|
appearance: none;
|
|
4745
|
-
background: var(--
|
|
5017
|
+
background: var(--borderColor);
|
|
4746
5018
|
border-radius: 5rem;
|
|
4747
5019
|
outline: none;
|
|
4748
5020
|
padding: 0 !important;
|
|
@@ -4752,7 +5024,7 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
4752
5024
|
appearance: none;
|
|
4753
5025
|
width: 20px;
|
|
4754
5026
|
height: 20px;
|
|
4755
|
-
background-color: var(--
|
|
5027
|
+
background-color: var(--primary300);
|
|
4756
5028
|
border: 0.1rem solid var(--primary500);
|
|
4757
5029
|
border-radius: 50%;
|
|
4758
5030
|
cursor: pointer;
|
|
@@ -4764,7 +5036,7 @@ background-color: rgba(0, 0, 0, 0.2);
|
|
|
4764
5036
|
}
|
|
4765
5037
|
|
|
4766
5038
|
.range-slider::-moz-range-thumb {
|
|
4767
|
-
background-color: var(--
|
|
5039
|
+
background-color: var(--primary300);
|
|
4768
5040
|
border: 0.1rem solid var(--primary500);
|
|
4769
5041
|
border-radius: 50%;
|
|
4770
5042
|
cursor: pointer;
|