@umami/react-zen 0.21.0 → 0.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +1064 -1064
- package/dist/index.d.ts +838 -0
- package/dist/styles.css +1064 -1064
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -271,34 +271,34 @@ a:hover {
|
|
|
271
271
|
text-decoration: underline;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
/*
|
|
275
|
-
.
|
|
274
|
+
/* src/components/Icon.module.css */
|
|
275
|
+
.Icon_icon {
|
|
276
276
|
display: inline-block;
|
|
277
277
|
fill: currentColor;
|
|
278
278
|
}
|
|
279
|
-
.
|
|
279
|
+
.Icon_xs {
|
|
280
280
|
width: 12px;
|
|
281
281
|
height: 12px;
|
|
282
282
|
}
|
|
283
|
-
.
|
|
283
|
+
.Icon_sm {
|
|
284
284
|
width: 16px;
|
|
285
285
|
height: 16px;
|
|
286
286
|
}
|
|
287
|
-
.
|
|
287
|
+
.Icon_md {
|
|
288
288
|
width: 24px;
|
|
289
289
|
height: 24px;
|
|
290
290
|
}
|
|
291
|
-
.
|
|
291
|
+
.Icon_lg {
|
|
292
292
|
width: 32px;
|
|
293
293
|
height: 32px;
|
|
294
294
|
}
|
|
295
|
-
.
|
|
295
|
+
.Icon_xl {
|
|
296
296
|
width: 48px;
|
|
297
297
|
height: 48px;
|
|
298
298
|
}
|
|
299
299
|
|
|
300
|
-
/*
|
|
301
|
-
.
|
|
300
|
+
/* src/components/AlertBanner.module.css */
|
|
301
|
+
.AlertBanner_banner {
|
|
302
302
|
display: flex;
|
|
303
303
|
align-items: center;
|
|
304
304
|
padding: var(--padding);
|
|
@@ -311,2186 +311,2186 @@ a:hover {
|
|
|
311
311
|
color: var(--font-color);
|
|
312
312
|
gap: var(--spacing-3);
|
|
313
313
|
}
|
|
314
|
-
.
|
|
314
|
+
.AlertBanner_message {
|
|
315
315
|
display: flex;
|
|
316
316
|
flex-direction: column;
|
|
317
317
|
flex: 1;
|
|
318
318
|
}
|
|
319
|
-
.
|
|
319
|
+
.AlertBanner_title {
|
|
320
320
|
font-weight: 700;
|
|
321
321
|
}
|
|
322
|
-
.
|
|
322
|
+
.AlertBanner_close {
|
|
323
323
|
color: var(--font-muted-color);
|
|
324
324
|
}
|
|
325
|
-
.
|
|
325
|
+
.AlertBanner_close:hover {
|
|
326
326
|
color: var(--font-color);
|
|
327
327
|
cursor: pointer;
|
|
328
328
|
}
|
|
329
|
-
.
|
|
329
|
+
.AlertBanner_error {
|
|
330
330
|
color: var(--light-color);
|
|
331
331
|
background-color: var(--danger-color);
|
|
332
332
|
border: 0;
|
|
333
333
|
}
|
|
334
|
-
.
|
|
334
|
+
.AlertBanner_error .AlertBanner_close {
|
|
335
335
|
color: var(--light-color);
|
|
336
336
|
}
|
|
337
|
-
.
|
|
337
|
+
.AlertBanner_info {
|
|
338
338
|
color: var(--primary-font-color);
|
|
339
339
|
background-color: var(--primary-color);
|
|
340
340
|
border: 0;
|
|
341
341
|
}
|
|
342
|
-
.
|
|
342
|
+
.AlertBanner_info .AlertBanner_close {
|
|
343
343
|
color: var(--primary-font-color);
|
|
344
344
|
}
|
|
345
345
|
|
|
346
|
-
/*
|
|
347
|
-
.
|
|
346
|
+
/* src/components/styles/global.module.css */
|
|
347
|
+
.global_display {
|
|
348
348
|
display: block;
|
|
349
349
|
}
|
|
350
|
-
.
|
|
350
|
+
.global_display-none {
|
|
351
351
|
display: none;
|
|
352
352
|
}
|
|
353
|
-
.
|
|
353
|
+
.global_display-inline {
|
|
354
354
|
display: inline;
|
|
355
355
|
}
|
|
356
|
-
.
|
|
356
|
+
.global_display-inline-block {
|
|
357
357
|
display: inline-block;
|
|
358
358
|
}
|
|
359
|
-
.
|
|
359
|
+
.global_display-block {
|
|
360
360
|
display: block;
|
|
361
361
|
}
|
|
362
|
-
.
|
|
362
|
+
.global_display-flex {
|
|
363
363
|
display: flex;
|
|
364
364
|
}
|
|
365
|
-
.
|
|
365
|
+
.global_display-inline-flex {
|
|
366
366
|
display: inline-flex;
|
|
367
367
|
}
|
|
368
|
-
.
|
|
368
|
+
.global_display-grid {
|
|
369
369
|
display: grid;
|
|
370
370
|
}
|
|
371
|
-
.
|
|
371
|
+
.global_display-inline-grid {
|
|
372
372
|
display: inline-grid;
|
|
373
373
|
}
|
|
374
|
-
.
|
|
374
|
+
.global_position-absolute {
|
|
375
375
|
position: absolute;
|
|
376
376
|
}
|
|
377
|
-
.
|
|
377
|
+
.global_position-fixed {
|
|
378
378
|
position: fixed;
|
|
379
379
|
}
|
|
380
|
-
.
|
|
380
|
+
.global_position-stick {
|
|
381
381
|
position: sticky;
|
|
382
382
|
}
|
|
383
|
-
.
|
|
383
|
+
.global_position-static {
|
|
384
384
|
position: static;
|
|
385
385
|
}
|
|
386
|
-
.
|
|
386
|
+
.global_position-relative {
|
|
387
387
|
position: relative;
|
|
388
388
|
}
|
|
389
|
-
.
|
|
389
|
+
.global_font-size {
|
|
390
390
|
font-size: var(--font-size);
|
|
391
391
|
}
|
|
392
|
-
.
|
|
392
|
+
.global_font-size-1 {
|
|
393
393
|
font-size: var(--font-size-1);
|
|
394
394
|
}
|
|
395
|
-
.
|
|
395
|
+
.global_font-size-2 {
|
|
396
396
|
font-size: var(--font-size-2);
|
|
397
397
|
}
|
|
398
|
-
.
|
|
398
|
+
.global_font-size-3 {
|
|
399
399
|
font-size: var(--font-size-3);
|
|
400
400
|
}
|
|
401
|
-
.
|
|
401
|
+
.global_font-size-4 {
|
|
402
402
|
font-size: var(--font-size-4);
|
|
403
403
|
}
|
|
404
|
-
.
|
|
404
|
+
.global_font-size-5 {
|
|
405
405
|
font-size: var(--font-size-5);
|
|
406
406
|
}
|
|
407
|
-
.
|
|
407
|
+
.global_font-size-6 {
|
|
408
408
|
font-size: var(--font-size-6);
|
|
409
409
|
}
|
|
410
|
-
.
|
|
410
|
+
.global_font-size-7 {
|
|
411
411
|
font-size: var(--font-size-7);
|
|
412
412
|
}
|
|
413
|
-
.
|
|
413
|
+
.global_font-size-8 {
|
|
414
414
|
font-size: var(--font-size-8);
|
|
415
415
|
}
|
|
416
|
-
.
|
|
416
|
+
.global_font-size-9 {
|
|
417
417
|
font-size: var(--font-size-9);
|
|
418
418
|
}
|
|
419
|
-
.
|
|
419
|
+
.global_font-weight-light {
|
|
420
420
|
font-weight: var(--font-weight-light);
|
|
421
421
|
}
|
|
422
|
-
.
|
|
422
|
+
.global_font-weight-regular {
|
|
423
423
|
font-weight: var(--font-weight-regular);
|
|
424
424
|
}
|
|
425
|
-
.
|
|
425
|
+
.global_font-weight-medium {
|
|
426
426
|
font-weight: var(--font-weight-medium);
|
|
427
427
|
}
|
|
428
|
-
.
|
|
428
|
+
.global_font-weight-bold {
|
|
429
429
|
font-weight: var(--font-weight-bold);
|
|
430
430
|
}
|
|
431
|
-
.
|
|
431
|
+
.global_border-size-1 {
|
|
432
432
|
border: var(--border-size-1) solid var(--border-color);
|
|
433
433
|
}
|
|
434
|
-
.
|
|
434
|
+
.global_border-size-2 {
|
|
435
435
|
border: var(--border-size-2) solid var(--border-color);
|
|
436
436
|
}
|
|
437
|
-
.
|
|
437
|
+
.global_border-size-3 {
|
|
438
438
|
border: var(--border-size-3) solid var(--border-color);
|
|
439
439
|
}
|
|
440
|
-
.
|
|
440
|
+
.global_border-size-4 {
|
|
441
441
|
border: var(--border-size-4) solid var(--border-color);
|
|
442
442
|
}
|
|
443
|
-
.
|
|
443
|
+
.global_border-radius-1 {
|
|
444
444
|
border-radius: var(--border-radius-1);
|
|
445
445
|
}
|
|
446
|
-
.
|
|
446
|
+
.global_border-radius-2 {
|
|
447
447
|
border-radius: var(--border-radius-2);
|
|
448
448
|
}
|
|
449
|
-
.
|
|
449
|
+
.global_border-radius-3 {
|
|
450
450
|
border-radius: var(--border-radius-3);
|
|
451
451
|
}
|
|
452
|
-
.
|
|
452
|
+
.global_border-radius-4 {
|
|
453
453
|
border-radius: var(--border-radius-4);
|
|
454
454
|
}
|
|
455
|
-
.
|
|
455
|
+
.global_border-radius-5 {
|
|
456
456
|
border-radius: var(--border-radius-5);
|
|
457
457
|
}
|
|
458
|
-
.
|
|
458
|
+
.global_border-radius-6 {
|
|
459
459
|
border-radius: var(--border-radius-6);
|
|
460
460
|
}
|
|
461
|
-
.
|
|
461
|
+
.global_shadow-1 {
|
|
462
462
|
box-shadow: var(--box-shadow-1);
|
|
463
463
|
}
|
|
464
|
-
.
|
|
464
|
+
.global_shadow-2 {
|
|
465
465
|
box-shadow: var(--box-shadow-2);
|
|
466
466
|
}
|
|
467
|
-
.
|
|
467
|
+
.global_shadow-3 {
|
|
468
468
|
box-shadow: var(--box-shadow-3);
|
|
469
469
|
}
|
|
470
|
-
.
|
|
470
|
+
.global_shadow-4 {
|
|
471
471
|
box-shadow: var(--box-shadow-4);
|
|
472
472
|
}
|
|
473
|
-
.
|
|
473
|
+
.global_shadow-5 {
|
|
474
474
|
box-shadow: var(--box-shadow-5);
|
|
475
475
|
}
|
|
476
|
-
.
|
|
476
|
+
.global_shadow-6 {
|
|
477
477
|
box-shadow: var(--box-shadow-6);
|
|
478
478
|
}
|
|
479
|
-
.
|
|
479
|
+
.global_font-color-50 {
|
|
480
480
|
background-color: var(--base-color-50);
|
|
481
481
|
}
|
|
482
|
-
.
|
|
482
|
+
.global_font-color-100 {
|
|
483
483
|
background-color: var(--base-color-100);
|
|
484
484
|
}
|
|
485
|
-
.
|
|
485
|
+
.global_font-color-200 {
|
|
486
486
|
background-color: var(--base-color-200);
|
|
487
487
|
}
|
|
488
|
-
.
|
|
488
|
+
.global_font-color-300 {
|
|
489
489
|
background-color: var(--base-color-300);
|
|
490
490
|
}
|
|
491
|
-
.
|
|
491
|
+
.global_font-color-400 {
|
|
492
492
|
background-color: var(--base-color-400);
|
|
493
493
|
}
|
|
494
|
-
.
|
|
494
|
+
.global_font-color-500 {
|
|
495
495
|
background-color: var(--base-color-500);
|
|
496
496
|
}
|
|
497
|
-
.
|
|
497
|
+
.global_font-color-600 {
|
|
498
498
|
background-color: var(--base-color-600);
|
|
499
499
|
}
|
|
500
|
-
.
|
|
500
|
+
.global_font-color-700 {
|
|
501
501
|
background-color: var(--base-color-700);
|
|
502
502
|
}
|
|
503
|
-
.
|
|
503
|
+
.global_font-color-800 {
|
|
504
504
|
background-color: var(--base-color-800);
|
|
505
505
|
}
|
|
506
|
-
.
|
|
506
|
+
.global_font-color-900 {
|
|
507
507
|
background-color: var(--base-color-900);
|
|
508
508
|
}
|
|
509
|
-
.
|
|
509
|
+
.global_font-color-950 {
|
|
510
510
|
background-color: var(--base-color-950);
|
|
511
511
|
}
|
|
512
|
-
.
|
|
512
|
+
.global_font-color-gray {
|
|
513
513
|
background-color: var(--base-color-gray);
|
|
514
514
|
}
|
|
515
|
-
.
|
|
515
|
+
.global_font-color-mauve {
|
|
516
516
|
background-color: var(--base-color-mauve);
|
|
517
517
|
}
|
|
518
|
-
.
|
|
518
|
+
.global_font-color-slate {
|
|
519
519
|
background-color: var(--base-color-slate);
|
|
520
520
|
}
|
|
521
|
-
.
|
|
521
|
+
.global_font-color-sage {
|
|
522
522
|
background-color: var(--base-color-sage);
|
|
523
523
|
}
|
|
524
|
-
.
|
|
524
|
+
.global_font-color-olive {
|
|
525
525
|
background-color: var(--base-color-olive);
|
|
526
526
|
}
|
|
527
|
-
.
|
|
527
|
+
.global_font-color-sand {
|
|
528
528
|
background-color: var(--base-color-sand);
|
|
529
529
|
}
|
|
530
|
-
.
|
|
530
|
+
.global_font-color-gold {
|
|
531
531
|
background-color: var(--accent-color-gold);
|
|
532
532
|
}
|
|
533
|
-
.
|
|
533
|
+
.global_font-color-bronze {
|
|
534
534
|
background-color: var(--accent-color-bronze);
|
|
535
535
|
}
|
|
536
|
-
.
|
|
536
|
+
.global_font-color-brown {
|
|
537
537
|
background-color: var(--accent-color-brown);
|
|
538
538
|
}
|
|
539
|
-
.
|
|
539
|
+
.global_font-color-yellow {
|
|
540
540
|
background-color: var(--accent-color-yellow);
|
|
541
541
|
}
|
|
542
|
-
.
|
|
542
|
+
.global_font-color-amber {
|
|
543
543
|
background-color: var(--accent-color-amber);
|
|
544
544
|
}
|
|
545
|
-
.
|
|
545
|
+
.global_font-color-orange {
|
|
546
546
|
background-color: var(--accent-color-orange);
|
|
547
547
|
}
|
|
548
|
-
.
|
|
548
|
+
.global_font-color-tomato {
|
|
549
549
|
background-color: var(--accent-color-tomato);
|
|
550
550
|
}
|
|
551
|
-
.
|
|
551
|
+
.global_font-color-red {
|
|
552
552
|
background-color: var(--accent-color-red);
|
|
553
553
|
}
|
|
554
|
-
.
|
|
554
|
+
.global_font-color-ruby {
|
|
555
555
|
background-color: var(--accent-color-ruby);
|
|
556
556
|
}
|
|
557
|
-
.
|
|
557
|
+
.global_font-color-crimson {
|
|
558
558
|
background-color: var(--accent-color-crimson);
|
|
559
559
|
}
|
|
560
|
-
.
|
|
560
|
+
.global_font-color-pink {
|
|
561
561
|
background-color: var(--accent-color-pink);
|
|
562
562
|
}
|
|
563
|
-
.
|
|
563
|
+
.global_font-color-plum {
|
|
564
564
|
background-color: var(--accent-color-plum);
|
|
565
565
|
}
|
|
566
|
-
.
|
|
566
|
+
.global_font-color-purple {
|
|
567
567
|
background-color: var(--accent-color-purple);
|
|
568
568
|
}
|
|
569
|
-
.
|
|
569
|
+
.global_font-color-violet {
|
|
570
570
|
background-color: var(--accent-color-violet);
|
|
571
571
|
}
|
|
572
|
-
.
|
|
572
|
+
.global_font-color-iris {
|
|
573
573
|
background-color: var(--accent-color-iris);
|
|
574
574
|
}
|
|
575
|
-
.
|
|
575
|
+
.global_font-color-indigo {
|
|
576
576
|
background-color: var(--accent-color-indigo);
|
|
577
577
|
}
|
|
578
|
-
.
|
|
578
|
+
.global_font-color-blue {
|
|
579
579
|
background-color: var(--accent-color-blue);
|
|
580
580
|
}
|
|
581
|
-
.
|
|
581
|
+
.global_font-color-cyan {
|
|
582
582
|
background-color: var(--accent-color-cyan);
|
|
583
583
|
}
|
|
584
|
-
.
|
|
584
|
+
.global_font-color-teal {
|
|
585
585
|
background-color: var(--accent-color-teal);
|
|
586
586
|
}
|
|
587
|
-
.
|
|
587
|
+
.global_font-color-jade {
|
|
588
588
|
background-color: var(--accent-color-jade);
|
|
589
589
|
}
|
|
590
|
-
.
|
|
590
|
+
.global_font-color-green {
|
|
591
591
|
background-color: var(--accent-color-green);
|
|
592
592
|
}
|
|
593
|
-
.
|
|
593
|
+
.global_font-color-grass {
|
|
594
594
|
background-color: var(--accent-color-grass);
|
|
595
595
|
}
|
|
596
|
-
.
|
|
596
|
+
.global_font-color-lime {
|
|
597
597
|
background-color: var(--accent-color-lime);
|
|
598
598
|
}
|
|
599
|
-
.
|
|
599
|
+
.global_font-color-mint {
|
|
600
600
|
background-color: var(--accent-color-mint);
|
|
601
601
|
}
|
|
602
|
-
.
|
|
602
|
+
.global_font-color-sky {
|
|
603
603
|
background-color: var(--accent-color-sky);
|
|
604
604
|
}
|
|
605
|
-
.
|
|
605
|
+
.global_background-color-50 {
|
|
606
606
|
background-color: var(--base-color-50);
|
|
607
607
|
}
|
|
608
|
-
.
|
|
608
|
+
.global_background-color-100 {
|
|
609
609
|
background-color: var(--base-color-100);
|
|
610
610
|
}
|
|
611
|
-
.
|
|
611
|
+
.global_background-color-200 {
|
|
612
612
|
background-color: var(--base-color-200);
|
|
613
613
|
}
|
|
614
|
-
.
|
|
614
|
+
.global_background-color-300 {
|
|
615
615
|
background-color: var(--base-color-300);
|
|
616
616
|
}
|
|
617
|
-
.
|
|
617
|
+
.global_background-color-400 {
|
|
618
618
|
background-color: var(--base-color-400);
|
|
619
619
|
}
|
|
620
|
-
.
|
|
620
|
+
.global_background-color-500 {
|
|
621
621
|
background-color: var(--base-color-500);
|
|
622
622
|
}
|
|
623
|
-
.
|
|
623
|
+
.global_background-color-600 {
|
|
624
624
|
background-color: var(--base-color-600);
|
|
625
625
|
}
|
|
626
|
-
.
|
|
626
|
+
.global_background-color-700 {
|
|
627
627
|
background-color: var(--base-color-700);
|
|
628
628
|
}
|
|
629
|
-
.
|
|
629
|
+
.global_background-color-800 {
|
|
630
630
|
background-color: var(--base-color-800);
|
|
631
631
|
}
|
|
632
|
-
.
|
|
632
|
+
.global_background-color-900 {
|
|
633
633
|
background-color: var(--base-color-900);
|
|
634
634
|
}
|
|
635
|
-
.
|
|
635
|
+
.global_background-color-950 {
|
|
636
636
|
background-color: var(--base-color-950);
|
|
637
637
|
}
|
|
638
|
-
.
|
|
638
|
+
.global_background-color-gray {
|
|
639
639
|
background-color: var(--base-color-gray);
|
|
640
640
|
}
|
|
641
|
-
.
|
|
641
|
+
.global_background-color-mauve {
|
|
642
642
|
background-color: var(--base-color-mauve);
|
|
643
643
|
}
|
|
644
|
-
.
|
|
644
|
+
.global_background-color-slate {
|
|
645
645
|
background-color: var(--base-color-slate);
|
|
646
646
|
}
|
|
647
|
-
.
|
|
647
|
+
.global_background-color-sage {
|
|
648
648
|
background-color: var(--base-color-sage);
|
|
649
649
|
}
|
|
650
|
-
.
|
|
650
|
+
.global_background-color-olive {
|
|
651
651
|
background-color: var(--base-color-olive);
|
|
652
652
|
}
|
|
653
|
-
.
|
|
653
|
+
.global_background-color-sand {
|
|
654
654
|
background-color: var(--base-color-sand);
|
|
655
655
|
}
|
|
656
|
-
.
|
|
656
|
+
.global_background-color-gold {
|
|
657
657
|
background-color: var(--accent-color-gold);
|
|
658
658
|
}
|
|
659
|
-
.
|
|
659
|
+
.global_background-color-bronze {
|
|
660
660
|
background-color: var(--accent-color-bronze);
|
|
661
661
|
}
|
|
662
|
-
.
|
|
662
|
+
.global_background-color-brown {
|
|
663
663
|
background-color: var(--accent-color-brown);
|
|
664
664
|
}
|
|
665
|
-
.
|
|
665
|
+
.global_background-color-yellow {
|
|
666
666
|
background-color: var(--accent-color-yellow);
|
|
667
667
|
}
|
|
668
|
-
.
|
|
668
|
+
.global_background-color-amber {
|
|
669
669
|
background-color: var(--accent-color-amber);
|
|
670
670
|
}
|
|
671
|
-
.
|
|
671
|
+
.global_background-color-orange {
|
|
672
672
|
background-color: var(--accent-color-orange);
|
|
673
673
|
}
|
|
674
|
-
.
|
|
674
|
+
.global_background-color-tomato {
|
|
675
675
|
background-color: var(--accent-color-tomato);
|
|
676
676
|
}
|
|
677
|
-
.
|
|
677
|
+
.global_background-color-red {
|
|
678
678
|
background-color: var(--accent-color-red);
|
|
679
679
|
}
|
|
680
|
-
.
|
|
680
|
+
.global_background-color-ruby {
|
|
681
681
|
background-color: var(--accent-color-ruby);
|
|
682
682
|
}
|
|
683
|
-
.
|
|
683
|
+
.global_background-color-crimson {
|
|
684
684
|
background-color: var(--accent-color-crimson);
|
|
685
685
|
}
|
|
686
|
-
.
|
|
686
|
+
.global_background-color-pink {
|
|
687
687
|
background-color: var(--accent-color-pink);
|
|
688
688
|
}
|
|
689
|
-
.
|
|
689
|
+
.global_background-color-plum {
|
|
690
690
|
background-color: var(--accent-color-plum);
|
|
691
691
|
}
|
|
692
|
-
.
|
|
692
|
+
.global_background-color-purple {
|
|
693
693
|
background-color: var(--accent-color-purple);
|
|
694
694
|
}
|
|
695
|
-
.
|
|
695
|
+
.global_background-color-violet {
|
|
696
696
|
background-color: var(--accent-color-violet);
|
|
697
697
|
}
|
|
698
|
-
.
|
|
698
|
+
.global_background-color-iris {
|
|
699
699
|
background-color: var(--accent-color-iris);
|
|
700
700
|
}
|
|
701
|
-
.
|
|
701
|
+
.global_background-color-indigo {
|
|
702
702
|
background-color: var(--accent-color-indigo);
|
|
703
703
|
}
|
|
704
|
-
.
|
|
704
|
+
.global_background-color-blue {
|
|
705
705
|
background-color: var(--accent-color-blue);
|
|
706
706
|
}
|
|
707
|
-
.
|
|
707
|
+
.global_background-color-cyan {
|
|
708
708
|
background-color: var(--accent-color-cyan);
|
|
709
709
|
}
|
|
710
|
-
.
|
|
710
|
+
.global_background-color-teal {
|
|
711
711
|
background-color: var(--accent-color-teal);
|
|
712
712
|
}
|
|
713
|
-
.
|
|
713
|
+
.global_background-color-jade {
|
|
714
714
|
background-color: var(--accent-color-jade);
|
|
715
715
|
}
|
|
716
|
-
.
|
|
716
|
+
.global_background-color-green {
|
|
717
717
|
background-color: var(--accent-color-green);
|
|
718
718
|
}
|
|
719
|
-
.
|
|
719
|
+
.global_background-color-grass {
|
|
720
720
|
background-color: var(--accent-color-grass);
|
|
721
721
|
}
|
|
722
|
-
.
|
|
722
|
+
.global_background-color-lime {
|
|
723
723
|
background-color: var(--accent-color-lime);
|
|
724
724
|
}
|
|
725
|
-
.
|
|
725
|
+
.global_background-color-mint {
|
|
726
726
|
background-color: var(--accent-color-mint);
|
|
727
727
|
}
|
|
728
|
-
.
|
|
728
|
+
.global_background-color-sky {
|
|
729
729
|
background-color: var(--accent-color-sky);
|
|
730
730
|
}
|
|
731
|
-
.
|
|
731
|
+
.global_text-align-left {
|
|
732
732
|
text-align: left;
|
|
733
733
|
}
|
|
734
|
-
.
|
|
734
|
+
.global_text-align-center {
|
|
735
735
|
text-align: center;
|
|
736
736
|
}
|
|
737
|
-
.
|
|
737
|
+
.global_text-align-right {
|
|
738
738
|
text-align: right;
|
|
739
739
|
}
|
|
740
|
-
.
|
|
740
|
+
.global_text-wrap-wrap {
|
|
741
741
|
text-wrap: wrap;
|
|
742
742
|
}
|
|
743
|
-
.
|
|
743
|
+
.global_text-wrap-nowrap {
|
|
744
744
|
text-wrap: nowrap;
|
|
745
745
|
}
|
|
746
|
-
.
|
|
746
|
+
.global_text-wrap-balance {
|
|
747
747
|
text-wrap: balance;
|
|
748
748
|
}
|
|
749
|
-
.
|
|
749
|
+
.global_text-wrap-pretty {
|
|
750
750
|
text-wrap: pretty;
|
|
751
751
|
}
|
|
752
|
-
.
|
|
752
|
+
.global_text-wrap-stable {
|
|
753
753
|
text-wrap: stable;
|
|
754
754
|
}
|
|
755
|
-
.
|
|
755
|
+
.global_letter-spacing-1 {
|
|
756
756
|
letter-spacing: var(--letter-spacing-1);
|
|
757
757
|
}
|
|
758
|
-
.
|
|
758
|
+
.global_letter-spacing-2 {
|
|
759
759
|
letter-spacing: -0.025em;
|
|
760
760
|
}
|
|
761
|
-
.
|
|
761
|
+
.global_letter-spacing-3 {
|
|
762
762
|
letter-spacing: 0;
|
|
763
763
|
}
|
|
764
|
-
.
|
|
764
|
+
.global_letter-spacing-4 {
|
|
765
765
|
letter-spacing: 0.025em;
|
|
766
766
|
}
|
|
767
|
-
.
|
|
767
|
+
.global_letter-spacing-5 {
|
|
768
768
|
letter-spacing: 0.05em;
|
|
769
769
|
}
|
|
770
|
-
.
|
|
770
|
+
.global_padding-1 {
|
|
771
771
|
padding: var(--spacing-1);
|
|
772
772
|
}
|
|
773
|
-
.
|
|
773
|
+
.global_padding-2 {
|
|
774
774
|
padding: var(--spacing-2);
|
|
775
775
|
}
|
|
776
|
-
.
|
|
776
|
+
.global_padding-3 {
|
|
777
777
|
padding: var(--spacing-3);
|
|
778
778
|
}
|
|
779
|
-
.
|
|
779
|
+
.global_padding-4 {
|
|
780
780
|
padding: var(--spacing-4);
|
|
781
781
|
}
|
|
782
|
-
.
|
|
782
|
+
.global_padding-5 {
|
|
783
783
|
padding: var(--spacing-5);
|
|
784
784
|
}
|
|
785
|
-
.
|
|
785
|
+
.global_padding-6 {
|
|
786
786
|
padding: var(--spacing-6);
|
|
787
787
|
}
|
|
788
|
-
.
|
|
788
|
+
.global_padding-7 {
|
|
789
789
|
padding: var(--spacing-7);
|
|
790
790
|
}
|
|
791
|
-
.
|
|
791
|
+
.global_padding-8 {
|
|
792
792
|
padding: var(--spacing-8);
|
|
793
793
|
}
|
|
794
|
-
.
|
|
794
|
+
.global_padding-9 {
|
|
795
795
|
padding: var(--spacing-9);
|
|
796
796
|
}
|
|
797
|
-
.
|
|
797
|
+
.global_padding-10 {
|
|
798
798
|
padding: var(--spacing-10);
|
|
799
799
|
}
|
|
800
|
-
.
|
|
800
|
+
.global_padding-11 {
|
|
801
801
|
padding: var(--spacing-11);
|
|
802
802
|
}
|
|
803
|
-
.
|
|
803
|
+
.global_padding-12 {
|
|
804
804
|
padding: var(--spacing-12);
|
|
805
805
|
}
|
|
806
|
-
.
|
|
806
|
+
.global_padding-x-1 {
|
|
807
807
|
padding-left: var(--spacing-1);
|
|
808
808
|
padding-right: var(--spacing-1);
|
|
809
809
|
}
|
|
810
|
-
.
|
|
810
|
+
.global_padding-x-2 {
|
|
811
811
|
padding-left: var(--spacing-2);
|
|
812
812
|
padding-right: var(--spacing-2);
|
|
813
813
|
}
|
|
814
|
-
.
|
|
814
|
+
.global_padding-x-3 {
|
|
815
815
|
padding-left: var(--spacing-3);
|
|
816
816
|
padding-right: var(--spacing-3);
|
|
817
817
|
}
|
|
818
|
-
.
|
|
818
|
+
.global_padding-x-4 {
|
|
819
819
|
padding-left: var(--spacing-4);
|
|
820
820
|
padding-right: var(--spacing-4);
|
|
821
821
|
}
|
|
822
|
-
.
|
|
822
|
+
.global_padding-x-5 {
|
|
823
823
|
padding-left: var(--spacing-5);
|
|
824
824
|
padding-right: var(--spacing-5);
|
|
825
825
|
}
|
|
826
|
-
.
|
|
826
|
+
.global_padding-x-6 {
|
|
827
827
|
padding-left: var(--spacing-6);
|
|
828
828
|
padding-right: var(--spacing-6);
|
|
829
829
|
}
|
|
830
|
-
.
|
|
830
|
+
.global_padding-x-7 {
|
|
831
831
|
padding-left: var(--spacing-7);
|
|
832
832
|
padding-right: var(--spacing-7);
|
|
833
833
|
}
|
|
834
|
-
.
|
|
834
|
+
.global_padding-x-8 {
|
|
835
835
|
padding-left: var(--spacing-8);
|
|
836
836
|
padding-right: var(--spacing-8);
|
|
837
837
|
}
|
|
838
|
-
.
|
|
838
|
+
.global_padding-x-9 {
|
|
839
839
|
padding-left: var(--spacing-9);
|
|
840
840
|
padding-right: var(--spacing-9);
|
|
841
841
|
}
|
|
842
|
-
.
|
|
842
|
+
.global_padding-x-10 {
|
|
843
843
|
padding-left: var(--spacing-10);
|
|
844
844
|
padding-right: var(--spacing-10);
|
|
845
845
|
}
|
|
846
|
-
.
|
|
846
|
+
.global_padding-x-11 {
|
|
847
847
|
padding-left: var(--spacing-11);
|
|
848
848
|
padding-right: var(--spacing-11);
|
|
849
849
|
}
|
|
850
|
-
.
|
|
850
|
+
.global_padding-x-12 {
|
|
851
851
|
padding-left: var(--spacing-12);
|
|
852
852
|
padding-right: var(--spacing-12);
|
|
853
853
|
}
|
|
854
|
-
.
|
|
854
|
+
.global_padding-y-1 {
|
|
855
855
|
padding-top: var(--spacing-1);
|
|
856
856
|
padding-bottom: var(--spacing-1);
|
|
857
857
|
}
|
|
858
|
-
.
|
|
858
|
+
.global_padding-y-2 {
|
|
859
859
|
padding-top: var(--spacing-2);
|
|
860
860
|
padding-bottom: var(--spacing-2);
|
|
861
861
|
}
|
|
862
|
-
.
|
|
862
|
+
.global_padding-y-3 {
|
|
863
863
|
padding-top: var(--spacing-3);
|
|
864
864
|
padding-bottom: var(--spacing-3);
|
|
865
865
|
}
|
|
866
|
-
.
|
|
866
|
+
.global_padding-y-4 {
|
|
867
867
|
padding-top: var(--spacing-4);
|
|
868
868
|
padding-bottom: var(--spacing-4);
|
|
869
869
|
}
|
|
870
|
-
.
|
|
870
|
+
.global_padding-y-5 {
|
|
871
871
|
padding-top: var(--spacing-5);
|
|
872
872
|
padding-bottom: var(--spacing-5);
|
|
873
873
|
}
|
|
874
|
-
.
|
|
874
|
+
.global_padding-y-6 {
|
|
875
875
|
padding-top: var(--spacing-6);
|
|
876
876
|
padding-bottom: var(--spacing-6);
|
|
877
877
|
}
|
|
878
|
-
.
|
|
878
|
+
.global_padding-y-7 {
|
|
879
879
|
padding-top: var(--spacing-7);
|
|
880
880
|
padding-bottom: var(--spacing-7);
|
|
881
881
|
}
|
|
882
|
-
.
|
|
882
|
+
.global_padding-y-8 {
|
|
883
883
|
padding-top: var(--spacing-8);
|
|
884
884
|
padding-bottom: var(--spacing-8);
|
|
885
885
|
}
|
|
886
|
-
.
|
|
886
|
+
.global_padding-y-9 {
|
|
887
887
|
padding-top: var(--spacing-9);
|
|
888
888
|
padding-bottom: var(--spacing-9);
|
|
889
889
|
}
|
|
890
|
-
.
|
|
890
|
+
.global_padding-y-10 {
|
|
891
891
|
padding-top: var(--spacing-10);
|
|
892
892
|
padding-bottom: var(--spacing-10);
|
|
893
893
|
}
|
|
894
|
-
.
|
|
894
|
+
.global_padding-y-11 {
|
|
895
895
|
padding-top: var(--spacing-11);
|
|
896
896
|
padding-bottom: var(--spacing-11);
|
|
897
897
|
}
|
|
898
|
-
.
|
|
898
|
+
.global_padding-y-12 {
|
|
899
899
|
padding-top: var(--spacing-12);
|
|
900
900
|
padding-bottom: var(--spacing-12);
|
|
901
901
|
}
|
|
902
|
-
.
|
|
902
|
+
.global_padding-top-1 {
|
|
903
903
|
padding-top: var(--spacing-1);
|
|
904
904
|
}
|
|
905
|
-
.
|
|
905
|
+
.global_padding-top-2 {
|
|
906
906
|
padding-top: var(--spacing-2);
|
|
907
907
|
}
|
|
908
|
-
.
|
|
908
|
+
.global_padding-top-3 {
|
|
909
909
|
padding-top: var(--spacing-3);
|
|
910
910
|
}
|
|
911
|
-
.
|
|
911
|
+
.global_padding-top-4 {
|
|
912
912
|
padding-top: var(--spacing-4);
|
|
913
913
|
}
|
|
914
|
-
.
|
|
914
|
+
.global_padding-top-5 {
|
|
915
915
|
padding-top: var(--spacing-5);
|
|
916
916
|
}
|
|
917
|
-
.
|
|
917
|
+
.global_padding-top-6 {
|
|
918
918
|
padding-top: var(--spacing-6);
|
|
919
919
|
}
|
|
920
|
-
.
|
|
920
|
+
.global_padding-top-7 {
|
|
921
921
|
padding-top: var(--spacing-7);
|
|
922
922
|
}
|
|
923
|
-
.
|
|
923
|
+
.global_padding-top-8 {
|
|
924
924
|
padding-top: var(--spacing-8);
|
|
925
925
|
}
|
|
926
|
-
.
|
|
926
|
+
.global_padding-top-9 {
|
|
927
927
|
padding-top: var(--spacing-9);
|
|
928
928
|
}
|
|
929
|
-
.
|
|
929
|
+
.global_padding-top-10 {
|
|
930
930
|
padding-top: var(--spacing-10);
|
|
931
931
|
}
|
|
932
|
-
.
|
|
932
|
+
.global_padding-top-11 {
|
|
933
933
|
padding-top: var(--spacing-11);
|
|
934
934
|
}
|
|
935
|
-
.
|
|
935
|
+
.global_padding-top-12 {
|
|
936
936
|
padding-top: var(--spacing-12);
|
|
937
937
|
}
|
|
938
|
-
.
|
|
938
|
+
.global_padding-bottom-1 {
|
|
939
939
|
padding-bottom: var(--spacing-1);
|
|
940
940
|
}
|
|
941
|
-
.
|
|
941
|
+
.global_padding-bottom-2 {
|
|
942
942
|
padding-bottom: var(--spacing-2);
|
|
943
943
|
}
|
|
944
|
-
.
|
|
944
|
+
.global_padding-bottom-3 {
|
|
945
945
|
padding-bottom: var(--spacing-3);
|
|
946
946
|
}
|
|
947
|
-
.
|
|
947
|
+
.global_padding-bottom-4 {
|
|
948
948
|
padding-bottom: var(--spacing-4);
|
|
949
949
|
}
|
|
950
|
-
.
|
|
950
|
+
.global_padding-bottom-5 {
|
|
951
951
|
padding-bottom: var(--spacing-5);
|
|
952
952
|
}
|
|
953
|
-
.
|
|
953
|
+
.global_padding-bottom-6 {
|
|
954
954
|
padding-bottom: var(--spacing-6);
|
|
955
955
|
}
|
|
956
|
-
.
|
|
956
|
+
.global_padding-bottom-7 {
|
|
957
957
|
padding-bottom: var(--spacing-7);
|
|
958
958
|
}
|
|
959
|
-
.
|
|
959
|
+
.global_padding-bottom-8 {
|
|
960
960
|
padding-bottom: var(--spacing-8);
|
|
961
961
|
}
|
|
962
|
-
.
|
|
962
|
+
.global_padding-bottom-9 {
|
|
963
963
|
padding-bottom: var(--spacing-9);
|
|
964
964
|
}
|
|
965
|
-
.
|
|
965
|
+
.global_padding-bottom-10 {
|
|
966
966
|
padding-bottom: var(--spacing-10);
|
|
967
967
|
}
|
|
968
|
-
.
|
|
968
|
+
.global_padding-bottom-11 {
|
|
969
969
|
padding-bottom: var(--spacing-11);
|
|
970
970
|
}
|
|
971
|
-
.
|
|
971
|
+
.global_padding-bottom-12 {
|
|
972
972
|
padding-bottom: var(--spacing-12);
|
|
973
973
|
}
|
|
974
|
-
.
|
|
974
|
+
.global_padding-left-1 {
|
|
975
975
|
padding-left: var(--spacing-1);
|
|
976
976
|
}
|
|
977
|
-
.
|
|
977
|
+
.global_padding-left-2 {
|
|
978
978
|
padding-left: var(--spacing-2);
|
|
979
979
|
}
|
|
980
|
-
.
|
|
980
|
+
.global_padding-left-3 {
|
|
981
981
|
padding-left: var(--spacing-3);
|
|
982
982
|
}
|
|
983
|
-
.
|
|
983
|
+
.global_padding-left-4 {
|
|
984
984
|
padding-left: var(--spacing-4);
|
|
985
985
|
}
|
|
986
|
-
.
|
|
986
|
+
.global_padding-left-5 {
|
|
987
987
|
padding-left: var(--spacing-5);
|
|
988
988
|
}
|
|
989
|
-
.
|
|
989
|
+
.global_padding-left-6 {
|
|
990
990
|
padding-left: var(--spacing-6);
|
|
991
991
|
}
|
|
992
|
-
.
|
|
992
|
+
.global_padding-left-7 {
|
|
993
993
|
padding-left: var(--spacing-7);
|
|
994
994
|
}
|
|
995
|
-
.
|
|
995
|
+
.global_padding-left-8 {
|
|
996
996
|
padding-left: var(--spacing-8);
|
|
997
997
|
}
|
|
998
|
-
.
|
|
998
|
+
.global_padding-left-9 {
|
|
999
999
|
padding-left: var(--spacing-9);
|
|
1000
1000
|
}
|
|
1001
|
-
.
|
|
1001
|
+
.global_padding-left-10 {
|
|
1002
1002
|
padding-left: var(--spacing-10);
|
|
1003
1003
|
}
|
|
1004
|
-
.
|
|
1004
|
+
.global_padding-left-11 {
|
|
1005
1005
|
padding-left: var(--spacing-11);
|
|
1006
1006
|
}
|
|
1007
|
-
.
|
|
1007
|
+
.global_padding-left-12 {
|
|
1008
1008
|
padding-left: var(--spacing-12);
|
|
1009
1009
|
}
|
|
1010
|
-
.
|
|
1010
|
+
.global_padding-right-1 {
|
|
1011
1011
|
padding-right: var(--spacing-1);
|
|
1012
1012
|
}
|
|
1013
|
-
.
|
|
1013
|
+
.global_padding-right-2 {
|
|
1014
1014
|
padding-right: var(--spacing-2);
|
|
1015
1015
|
}
|
|
1016
|
-
.
|
|
1016
|
+
.global_padding-right-3 {
|
|
1017
1017
|
padding-right: var(--spacing-3);
|
|
1018
1018
|
}
|
|
1019
|
-
.
|
|
1019
|
+
.global_padding-right-4 {
|
|
1020
1020
|
padding-right: var(--spacing-4);
|
|
1021
1021
|
}
|
|
1022
|
-
.
|
|
1022
|
+
.global_padding-right-5 {
|
|
1023
1023
|
padding-right: var(--spacing-5);
|
|
1024
1024
|
}
|
|
1025
|
-
.
|
|
1025
|
+
.global_padding-right-6 {
|
|
1026
1026
|
padding-right: var(--spacing-6);
|
|
1027
1027
|
}
|
|
1028
|
-
.
|
|
1028
|
+
.global_padding-right-7 {
|
|
1029
1029
|
padding-right: var(--spacing-7);
|
|
1030
1030
|
}
|
|
1031
|
-
.
|
|
1031
|
+
.global_padding-right-8 {
|
|
1032
1032
|
padding-right: var(--spacing-8);
|
|
1033
1033
|
}
|
|
1034
|
-
.
|
|
1034
|
+
.global_padding-right-9 {
|
|
1035
1035
|
padding-right: var(--spacing-9);
|
|
1036
1036
|
}
|
|
1037
|
-
.
|
|
1037
|
+
.global_padding-right-10 {
|
|
1038
1038
|
padding-right: var(--spacing-10);
|
|
1039
1039
|
}
|
|
1040
|
-
.
|
|
1040
|
+
.global_padding-right-11 {
|
|
1041
1041
|
padding-right: var(--spacing-11);
|
|
1042
1042
|
}
|
|
1043
|
-
.
|
|
1043
|
+
.global_padding-right-12 {
|
|
1044
1044
|
padding-right: var(--spacing-12);
|
|
1045
1045
|
}
|
|
1046
|
-
.
|
|
1046
|
+
.global_margin-1 {
|
|
1047
1047
|
margin: var(--spacing-1);
|
|
1048
1048
|
}
|
|
1049
|
-
.
|
|
1049
|
+
.global_margin-2 {
|
|
1050
1050
|
margin: var(--spacing-2);
|
|
1051
1051
|
}
|
|
1052
|
-
.
|
|
1052
|
+
.global_margin-3 {
|
|
1053
1053
|
margin: var(--spacing-3);
|
|
1054
1054
|
}
|
|
1055
|
-
.
|
|
1055
|
+
.global_margin-4 {
|
|
1056
1056
|
margin: var(--spacing-4);
|
|
1057
1057
|
}
|
|
1058
|
-
.
|
|
1058
|
+
.global_margin-5 {
|
|
1059
1059
|
margin: var(--spacing-5);
|
|
1060
1060
|
}
|
|
1061
|
-
.
|
|
1061
|
+
.global_margin-6 {
|
|
1062
1062
|
margin: var(--spacing-6);
|
|
1063
1063
|
}
|
|
1064
|
-
.
|
|
1064
|
+
.global_margin-7 {
|
|
1065
1065
|
margin: var(--spacing-7);
|
|
1066
1066
|
}
|
|
1067
|
-
.
|
|
1067
|
+
.global_margin-8 {
|
|
1068
1068
|
margin: var(--spacing-8);
|
|
1069
1069
|
}
|
|
1070
|
-
.
|
|
1070
|
+
.global_margin-9 {
|
|
1071
1071
|
margin: var(--spacing-9);
|
|
1072
1072
|
}
|
|
1073
|
-
.
|
|
1073
|
+
.global_margin-10 {
|
|
1074
1074
|
margin: var(--spacing-10);
|
|
1075
1075
|
}
|
|
1076
|
-
.
|
|
1076
|
+
.global_margin-11 {
|
|
1077
1077
|
margin: var(--spacing-11);
|
|
1078
1078
|
}
|
|
1079
|
-
.
|
|
1079
|
+
.global_margin-12 {
|
|
1080
1080
|
margin: var(--spacing-12);
|
|
1081
1081
|
}
|
|
1082
|
-
.
|
|
1082
|
+
.global_margin-x-1 {
|
|
1083
1083
|
margin-left: var(--spacing-1);
|
|
1084
1084
|
margin-right: var(--spacing-1);
|
|
1085
1085
|
}
|
|
1086
|
-
.
|
|
1086
|
+
.global_margin-x-2 {
|
|
1087
1087
|
margin-left: var(--spacing-2);
|
|
1088
1088
|
margin-right: var(--spacing-2);
|
|
1089
1089
|
}
|
|
1090
|
-
.
|
|
1090
|
+
.global_margin-x-3 {
|
|
1091
1091
|
margin-left: var(--spacing-3);
|
|
1092
1092
|
margin-right: var(--spacing-3);
|
|
1093
1093
|
}
|
|
1094
|
-
.
|
|
1094
|
+
.global_margin-x-4 {
|
|
1095
1095
|
margin-left: var(--spacing-4);
|
|
1096
1096
|
margin-right: var(--spacing-4);
|
|
1097
1097
|
}
|
|
1098
|
-
.
|
|
1098
|
+
.global_margin-x-5 {
|
|
1099
1099
|
margin-left: var(--spacing-5);
|
|
1100
1100
|
margin-right: var(--spacing-5);
|
|
1101
1101
|
}
|
|
1102
|
-
.
|
|
1102
|
+
.global_margin-x-6 {
|
|
1103
1103
|
margin-left: var(--spacing-6);
|
|
1104
1104
|
margin-right: var(--spacing-6);
|
|
1105
1105
|
}
|
|
1106
|
-
.
|
|
1106
|
+
.global_margin-x-7 {
|
|
1107
1107
|
margin-left: var(--spacing-7);
|
|
1108
1108
|
margin-right: var(--spacing-7);
|
|
1109
1109
|
}
|
|
1110
|
-
.
|
|
1110
|
+
.global_margin-x-8 {
|
|
1111
1111
|
margin-left: var(--spacing-8);
|
|
1112
1112
|
margin-right: var(--spacing-8);
|
|
1113
1113
|
}
|
|
1114
|
-
.
|
|
1114
|
+
.global_margin-x-9 {
|
|
1115
1115
|
margin-left: var(--spacing-9);
|
|
1116
1116
|
margin-right: var(--spacing-9);
|
|
1117
1117
|
}
|
|
1118
|
-
.
|
|
1118
|
+
.global_margin-x-10 {
|
|
1119
1119
|
margin-left: var(--spacing-10);
|
|
1120
1120
|
margin-right: var(--spacing-10);
|
|
1121
1121
|
}
|
|
1122
|
-
.
|
|
1122
|
+
.global_margin-x-11 {
|
|
1123
1123
|
margin-left: var(--spacing-11);
|
|
1124
1124
|
margin-right: var(--spacing-11);
|
|
1125
1125
|
}
|
|
1126
|
-
.
|
|
1126
|
+
.global_margin-x-12 {
|
|
1127
1127
|
margin-left: var(--spacing-12);
|
|
1128
1128
|
margin-right: var(--spacing-12);
|
|
1129
1129
|
}
|
|
1130
|
-
.
|
|
1130
|
+
.global_margin-y-1 {
|
|
1131
1131
|
margin-top: var(--spacing-1);
|
|
1132
1132
|
margin-bottom: var(--spacing-1);
|
|
1133
1133
|
}
|
|
1134
|
-
.
|
|
1134
|
+
.global_margin-y-2 {
|
|
1135
1135
|
margin-top: var(--spacing-2);
|
|
1136
1136
|
margin-bottom: var(--spacing-2);
|
|
1137
1137
|
}
|
|
1138
|
-
.
|
|
1138
|
+
.global_margin-y-3 {
|
|
1139
1139
|
margin-top: var(--spacing-3);
|
|
1140
1140
|
margin-bottom: var(--spacing-3);
|
|
1141
1141
|
}
|
|
1142
|
-
.
|
|
1142
|
+
.global_margin-y-4 {
|
|
1143
1143
|
margin-top: var(--spacing-4);
|
|
1144
1144
|
margin-bottom: var(--spacing-4);
|
|
1145
1145
|
}
|
|
1146
|
-
.
|
|
1146
|
+
.global_margin-y-5 {
|
|
1147
1147
|
margin-top: var(--spacing-5);
|
|
1148
1148
|
margin-bottom: var(--spacing-5);
|
|
1149
1149
|
}
|
|
1150
|
-
.
|
|
1150
|
+
.global_margin-y-6 {
|
|
1151
1151
|
margin-top: var(--spacing-6);
|
|
1152
1152
|
margin-bottom: var(--spacing-6);
|
|
1153
1153
|
}
|
|
1154
|
-
.
|
|
1154
|
+
.global_margin-y-7 {
|
|
1155
1155
|
margin-top: var(--spacing-7);
|
|
1156
1156
|
margin-bottom: var(--spacing-7);
|
|
1157
1157
|
}
|
|
1158
|
-
.
|
|
1158
|
+
.global_margin-y-8 {
|
|
1159
1159
|
margin-top: var(--spacing-8);
|
|
1160
1160
|
margin-bottom: var(--spacing-8);
|
|
1161
1161
|
}
|
|
1162
|
-
.
|
|
1162
|
+
.global_margin-y-9 {
|
|
1163
1163
|
margin-top: var(--spacing-9);
|
|
1164
1164
|
margin-bottom: var(--spacing-9);
|
|
1165
1165
|
}
|
|
1166
|
-
.
|
|
1166
|
+
.global_margin-y-10 {
|
|
1167
1167
|
margin-top: var(--spacing-10);
|
|
1168
1168
|
margin-bottom: var(--spacing-10);
|
|
1169
1169
|
}
|
|
1170
|
-
.
|
|
1170
|
+
.global_margin-y-11 {
|
|
1171
1171
|
margin-top: var(--spacing-11);
|
|
1172
1172
|
margin-bottom: var(--spacing-11);
|
|
1173
1173
|
}
|
|
1174
|
-
.
|
|
1174
|
+
.global_margin-y-12 {
|
|
1175
1175
|
margin-top: var(--spacing-12);
|
|
1176
1176
|
margin-bottom: var(--spacing-12);
|
|
1177
1177
|
}
|
|
1178
|
-
.
|
|
1178
|
+
.global_margin-top-1 {
|
|
1179
1179
|
margin-top: var(--spacing-1);
|
|
1180
1180
|
}
|
|
1181
|
-
.
|
|
1181
|
+
.global_margin-top-2 {
|
|
1182
1182
|
margin-top: var(--spacing-2);
|
|
1183
1183
|
}
|
|
1184
|
-
.
|
|
1184
|
+
.global_margin-top-3 {
|
|
1185
1185
|
margin-top: var(--spacing-3);
|
|
1186
1186
|
}
|
|
1187
|
-
.
|
|
1187
|
+
.global_margin-top-4 {
|
|
1188
1188
|
margin-top: var(--spacing-4);
|
|
1189
1189
|
}
|
|
1190
|
-
.
|
|
1190
|
+
.global_margin-top-5 {
|
|
1191
1191
|
margin-top: var(--spacing-5);
|
|
1192
1192
|
}
|
|
1193
|
-
.
|
|
1193
|
+
.global_margin-top-6 {
|
|
1194
1194
|
margin-top: var(--spacing-6);
|
|
1195
1195
|
}
|
|
1196
|
-
.
|
|
1196
|
+
.global_margin-top-7 {
|
|
1197
1197
|
margin-top: var(--spacing-7);
|
|
1198
1198
|
}
|
|
1199
|
-
.
|
|
1199
|
+
.global_margin-top-8 {
|
|
1200
1200
|
margin-top: var(--spacing-8);
|
|
1201
1201
|
}
|
|
1202
|
-
.
|
|
1202
|
+
.global_margin-top-9 {
|
|
1203
1203
|
margin-top: var(--spacing-9);
|
|
1204
1204
|
}
|
|
1205
|
-
.
|
|
1205
|
+
.global_margin-top-10 {
|
|
1206
1206
|
margin-top: var(--spacing-10);
|
|
1207
1207
|
}
|
|
1208
|
-
.
|
|
1208
|
+
.global_margin-top-11 {
|
|
1209
1209
|
margin-top: var(--spacing-11);
|
|
1210
1210
|
}
|
|
1211
|
-
.
|
|
1211
|
+
.global_margin-top-12 {
|
|
1212
1212
|
margin-top: var(--spacing-12);
|
|
1213
1213
|
}
|
|
1214
|
-
.
|
|
1214
|
+
.global_margin-bottom-1 {
|
|
1215
1215
|
margin-bottom: var(--spacing-1);
|
|
1216
1216
|
}
|
|
1217
|
-
.
|
|
1217
|
+
.global_margin-bottom-2 {
|
|
1218
1218
|
margin-bottom: var(--spacing-2);
|
|
1219
1219
|
}
|
|
1220
|
-
.
|
|
1220
|
+
.global_margin-bottom-3 {
|
|
1221
1221
|
margin-bottom: var(--spacing-3);
|
|
1222
1222
|
}
|
|
1223
|
-
.
|
|
1223
|
+
.global_margin-bottom-4 {
|
|
1224
1224
|
margin-bottom: var(--spacing-4);
|
|
1225
1225
|
}
|
|
1226
|
-
.
|
|
1226
|
+
.global_margin-bottom-5 {
|
|
1227
1227
|
margin-bottom: var(--spacing-5);
|
|
1228
1228
|
}
|
|
1229
|
-
.
|
|
1229
|
+
.global_margin-bottom-6 {
|
|
1230
1230
|
margin-bottom: var(--spacing-6);
|
|
1231
1231
|
}
|
|
1232
|
-
.
|
|
1232
|
+
.global_margin-bottom-7 {
|
|
1233
1233
|
margin-bottom: var(--spacing-7);
|
|
1234
1234
|
}
|
|
1235
|
-
.
|
|
1235
|
+
.global_margin-bottom-8 {
|
|
1236
1236
|
margin-bottom: var(--spacing-8);
|
|
1237
1237
|
}
|
|
1238
|
-
.
|
|
1238
|
+
.global_margin-bottom-9 {
|
|
1239
1239
|
margin-bottom: var(--spacing-9);
|
|
1240
1240
|
}
|
|
1241
|
-
.
|
|
1241
|
+
.global_margin-bottom-10 {
|
|
1242
1242
|
margin-bottom: var(--spacing-10);
|
|
1243
1243
|
}
|
|
1244
|
-
.
|
|
1244
|
+
.global_margin-bottom-11 {
|
|
1245
1245
|
margin-bottom: var(--spacing-11);
|
|
1246
1246
|
}
|
|
1247
|
-
.
|
|
1247
|
+
.global_margin-bottom-12 {
|
|
1248
1248
|
margin-bottom: var(--spacing-12);
|
|
1249
1249
|
}
|
|
1250
|
-
.
|
|
1250
|
+
.global_margin-left-1 {
|
|
1251
1251
|
margin-left: var(--spacing-1);
|
|
1252
1252
|
}
|
|
1253
|
-
.
|
|
1253
|
+
.global_margin-left-2 {
|
|
1254
1254
|
margin-left: var(--spacing-2);
|
|
1255
1255
|
}
|
|
1256
|
-
.
|
|
1256
|
+
.global_margin-left-3 {
|
|
1257
1257
|
margin-left: var(--spacing-3);
|
|
1258
1258
|
}
|
|
1259
|
-
.
|
|
1259
|
+
.global_margin-left-4 {
|
|
1260
1260
|
margin-left: var(--spacing-4);
|
|
1261
1261
|
}
|
|
1262
|
-
.
|
|
1262
|
+
.global_margin-left-5 {
|
|
1263
1263
|
margin-left: var(--spacing-5);
|
|
1264
1264
|
}
|
|
1265
|
-
.
|
|
1265
|
+
.global_margin-left-6 {
|
|
1266
1266
|
margin-left: var(--spacing-6);
|
|
1267
1267
|
}
|
|
1268
|
-
.
|
|
1268
|
+
.global_margin-left-7 {
|
|
1269
1269
|
margin-left: var(--spacing-7);
|
|
1270
1270
|
}
|
|
1271
|
-
.
|
|
1271
|
+
.global_margin-left-8 {
|
|
1272
1272
|
margin-left: var(--spacing-8);
|
|
1273
1273
|
}
|
|
1274
|
-
.
|
|
1274
|
+
.global_margin-left-9 {
|
|
1275
1275
|
margin-left: var(--spacing-9);
|
|
1276
1276
|
}
|
|
1277
|
-
.
|
|
1277
|
+
.global_margin-left-10 {
|
|
1278
1278
|
margin-left: var(--spacing-10);
|
|
1279
1279
|
}
|
|
1280
|
-
.
|
|
1280
|
+
.global_margin-left-11 {
|
|
1281
1281
|
margin-left: var(--spacing-11);
|
|
1282
1282
|
}
|
|
1283
|
-
.
|
|
1283
|
+
.global_margin-left-12 {
|
|
1284
1284
|
margin-left: var(--spacing-12);
|
|
1285
1285
|
}
|
|
1286
|
-
.
|
|
1286
|
+
.global_margin-right-1 {
|
|
1287
1287
|
margin-right: var(--spacing-1);
|
|
1288
1288
|
}
|
|
1289
|
-
.
|
|
1289
|
+
.global_margin-right-2 {
|
|
1290
1290
|
margin-right: var(--spacing-2);
|
|
1291
1291
|
}
|
|
1292
|
-
.
|
|
1292
|
+
.global_margin-right-3 {
|
|
1293
1293
|
margin-right: var(--spacing-3);
|
|
1294
1294
|
}
|
|
1295
|
-
.
|
|
1295
|
+
.global_margin-right-4 {
|
|
1296
1296
|
margin-right: var(--spacing-4);
|
|
1297
1297
|
}
|
|
1298
|
-
.
|
|
1298
|
+
.global_margin-right-5 {
|
|
1299
1299
|
margin-right: var(--spacing-5);
|
|
1300
1300
|
}
|
|
1301
|
-
.
|
|
1301
|
+
.global_margin-right-6 {
|
|
1302
1302
|
margin-right: var(--spacing-6);
|
|
1303
1303
|
}
|
|
1304
|
-
.
|
|
1304
|
+
.global_margin-right-7 {
|
|
1305
1305
|
margin-right: var(--spacing-7);
|
|
1306
1306
|
}
|
|
1307
|
-
.
|
|
1307
|
+
.global_margin-right-8 {
|
|
1308
1308
|
margin-right: var(--spacing-8);
|
|
1309
1309
|
}
|
|
1310
|
-
.
|
|
1310
|
+
.global_margin-right-9 {
|
|
1311
1311
|
margin-right: var(--spacing-9);
|
|
1312
1312
|
}
|
|
1313
|
-
.
|
|
1313
|
+
.global_margin-right-10 {
|
|
1314
1314
|
margin-right: var(--spacing-10);
|
|
1315
1315
|
}
|
|
1316
|
-
.
|
|
1316
|
+
.global_margin-right-11 {
|
|
1317
1317
|
margin-right: var(--spacing-11);
|
|
1318
1318
|
}
|
|
1319
|
-
.
|
|
1319
|
+
.global_margin-right-12 {
|
|
1320
1320
|
margin-right: var(--spacing-12);
|
|
1321
1321
|
}
|
|
1322
|
-
.
|
|
1322
|
+
.global_gap-1 {
|
|
1323
1323
|
gap: var(--spacing-1);
|
|
1324
1324
|
}
|
|
1325
|
-
.
|
|
1325
|
+
.global_gap-2 {
|
|
1326
1326
|
gap: var(--spacing-2);
|
|
1327
1327
|
}
|
|
1328
|
-
.
|
|
1328
|
+
.global_gap-3 {
|
|
1329
1329
|
gap: var(--spacing-3);
|
|
1330
1330
|
}
|
|
1331
|
-
.
|
|
1331
|
+
.global_gap-4 {
|
|
1332
1332
|
gap: var(--spacing-4);
|
|
1333
1333
|
}
|
|
1334
|
-
.
|
|
1334
|
+
.global_gap-5 {
|
|
1335
1335
|
gap: var(--spacing-5);
|
|
1336
1336
|
}
|
|
1337
|
-
.
|
|
1337
|
+
.global_gap-6 {
|
|
1338
1338
|
gap: var(--spacing-6);
|
|
1339
1339
|
}
|
|
1340
|
-
.
|
|
1340
|
+
.global_gap-7 {
|
|
1341
1341
|
gap: var(--spacing-7);
|
|
1342
1342
|
}
|
|
1343
|
-
.
|
|
1343
|
+
.global_gap-8 {
|
|
1344
1344
|
gap: var(--spacing-8);
|
|
1345
1345
|
}
|
|
1346
|
-
.
|
|
1346
|
+
.global_gap-9 {
|
|
1347
1347
|
gap: var(--spacing-9);
|
|
1348
1348
|
}
|
|
1349
|
-
.
|
|
1349
|
+
.global_gap-10 {
|
|
1350
1350
|
gap: var(--spacing-10);
|
|
1351
1351
|
}
|
|
1352
|
-
.
|
|
1352
|
+
.global_gap-11 {
|
|
1353
1353
|
gap: var(--spacing-11);
|
|
1354
1354
|
}
|
|
1355
|
-
.
|
|
1355
|
+
.global_gap-12 {
|
|
1356
1356
|
gap: var(--spacing-12);
|
|
1357
1357
|
}
|
|
1358
|
-
.
|
|
1358
|
+
.global_gap-x-1 {
|
|
1359
1359
|
column-gap: var(--spacing-1);
|
|
1360
1360
|
}
|
|
1361
|
-
.
|
|
1361
|
+
.global_gap-x-2 {
|
|
1362
1362
|
column-gap: var(--spacing-2);
|
|
1363
1363
|
}
|
|
1364
|
-
.
|
|
1364
|
+
.global_gap-x-3 {
|
|
1365
1365
|
column-gap: var(--spacing-3);
|
|
1366
1366
|
}
|
|
1367
|
-
.
|
|
1367
|
+
.global_gap-x-4 {
|
|
1368
1368
|
column-gap: var(--spacing-4);
|
|
1369
1369
|
}
|
|
1370
|
-
.
|
|
1370
|
+
.global_gap-x-5 {
|
|
1371
1371
|
column-gap: var(--spacing-5);
|
|
1372
1372
|
}
|
|
1373
|
-
.
|
|
1373
|
+
.global_gap-x-6 {
|
|
1374
1374
|
column-gap: var(--spacing-6);
|
|
1375
1375
|
}
|
|
1376
|
-
.
|
|
1376
|
+
.global_gap-x-7 {
|
|
1377
1377
|
column-gap: var(--spacing-7);
|
|
1378
1378
|
}
|
|
1379
|
-
.
|
|
1379
|
+
.global_gap-x-8 {
|
|
1380
1380
|
column-gap: var(--spacing-8);
|
|
1381
1381
|
}
|
|
1382
|
-
.
|
|
1382
|
+
.global_gap-x-9 {
|
|
1383
1383
|
column-gap: var(--spacing-9);
|
|
1384
1384
|
}
|
|
1385
|
-
.
|
|
1385
|
+
.global_gap-x-10 {
|
|
1386
1386
|
column-gap: var(--spacing-10);
|
|
1387
1387
|
}
|
|
1388
|
-
.
|
|
1388
|
+
.global_gap-x-11 {
|
|
1389
1389
|
column-gap: var(--spacing-11);
|
|
1390
1390
|
}
|
|
1391
|
-
.
|
|
1391
|
+
.global_gap-x-12 {
|
|
1392
1392
|
column-gap: var(--spacing-12);
|
|
1393
1393
|
}
|
|
1394
|
-
.
|
|
1394
|
+
.global_gap-y-1 {
|
|
1395
1395
|
row-gap: var(--spacing-1);
|
|
1396
1396
|
}
|
|
1397
|
-
.
|
|
1397
|
+
.global_gap-y-2 {
|
|
1398
1398
|
row-gap: var(--spacing-2);
|
|
1399
1399
|
}
|
|
1400
|
-
.
|
|
1400
|
+
.global_gap-y-3 {
|
|
1401
1401
|
row-gap: var(--spacing-3);
|
|
1402
1402
|
}
|
|
1403
|
-
.
|
|
1403
|
+
.global_gap-y-4 {
|
|
1404
1404
|
row-gap: var(--spacing-4);
|
|
1405
1405
|
}
|
|
1406
|
-
.
|
|
1406
|
+
.global_gap-y-5 {
|
|
1407
1407
|
row-gap: var(--spacing-5);
|
|
1408
1408
|
}
|
|
1409
|
-
.
|
|
1409
|
+
.global_gap-y-6 {
|
|
1410
1410
|
row-gap: var(--spacing-6);
|
|
1411
1411
|
}
|
|
1412
|
-
.
|
|
1412
|
+
.global_gap-y-7 {
|
|
1413
1413
|
row-gap: var(--spacing-7);
|
|
1414
1414
|
}
|
|
1415
|
-
.
|
|
1415
|
+
.global_gap-y-8 {
|
|
1416
1416
|
row-gap: var(--spacing-8);
|
|
1417
1417
|
}
|
|
1418
|
-
.
|
|
1418
|
+
.global_gap-y-9 {
|
|
1419
1419
|
row-gap: var(--spacing-9);
|
|
1420
1420
|
}
|
|
1421
|
-
.
|
|
1421
|
+
.global_gap-y-10 {
|
|
1422
1422
|
row-gap: var(--spacing-10);
|
|
1423
1423
|
}
|
|
1424
|
-
.
|
|
1424
|
+
.global_gap-y-11 {
|
|
1425
1425
|
row-gap: var(--spacing-11);
|
|
1426
1426
|
}
|
|
1427
|
-
.
|
|
1427
|
+
.global_gap-y-12 {
|
|
1428
1428
|
row-gap: var(--spacing-12);
|
|
1429
1429
|
}
|
|
1430
|
-
.
|
|
1430
|
+
.global_flex-direction-row {
|
|
1431
1431
|
flex-direction: row;
|
|
1432
1432
|
}
|
|
1433
|
-
.
|
|
1433
|
+
.global_flex-direction-row-reverse {
|
|
1434
1434
|
flex-direction: row-reverse;
|
|
1435
1435
|
}
|
|
1436
|
-
.
|
|
1436
|
+
.global_flex-direction-column {
|
|
1437
1437
|
flex-direction: column;
|
|
1438
1438
|
}
|
|
1439
|
-
.
|
|
1439
|
+
.global_flex-direction-column-reverse {
|
|
1440
1440
|
flex-direction: column-reverse;
|
|
1441
1441
|
}
|
|
1442
|
-
.
|
|
1442
|
+
.global_flex-wrap-wrap {
|
|
1443
1443
|
flex-wrap: wrap;
|
|
1444
1444
|
}
|
|
1445
|
-
.
|
|
1445
|
+
.global_flex-wrap-nowrap {
|
|
1446
1446
|
flex-wrap: nowrap;
|
|
1447
1447
|
}
|
|
1448
|
-
.
|
|
1448
|
+
.global_flex-wrap-wrap-reverse {
|
|
1449
1449
|
flex-wrap: wrap-reverse;
|
|
1450
1450
|
}
|
|
1451
|
-
.
|
|
1451
|
+
.global_justify-content-center {
|
|
1452
1452
|
justify-content: center;
|
|
1453
1453
|
}
|
|
1454
|
-
.
|
|
1454
|
+
.global_justify-content-start {
|
|
1455
1455
|
justify-content: start;
|
|
1456
1456
|
}
|
|
1457
|
-
.
|
|
1457
|
+
.global_justify-content-end {
|
|
1458
1458
|
justify-content: end;
|
|
1459
1459
|
}
|
|
1460
|
-
.
|
|
1460
|
+
.global_justify-content-flex-start {
|
|
1461
1461
|
justify-content: flex-start;
|
|
1462
1462
|
}
|
|
1463
|
-
.
|
|
1463
|
+
.global_justify-content-flex-end {
|
|
1464
1464
|
justify-content: flex-end;
|
|
1465
1465
|
}
|
|
1466
|
-
.
|
|
1466
|
+
.global_justify-content-left {
|
|
1467
1467
|
justify-content: left;
|
|
1468
1468
|
}
|
|
1469
|
-
.
|
|
1469
|
+
.global_justify-content-right {
|
|
1470
1470
|
justify-content: right;
|
|
1471
1471
|
}
|
|
1472
|
-
.
|
|
1472
|
+
.global_justify-content-space-between {
|
|
1473
1473
|
justify-content: space-between;
|
|
1474
1474
|
}
|
|
1475
|
-
.
|
|
1475
|
+
.global_justify-content-space-around {
|
|
1476
1476
|
justify-content: space-around;
|
|
1477
1477
|
}
|
|
1478
|
-
.
|
|
1478
|
+
.global_justify-content-space-evenly {
|
|
1479
1479
|
justify-content: space-evenly;
|
|
1480
1480
|
}
|
|
1481
|
-
.
|
|
1481
|
+
.global_justify-content-stretch {
|
|
1482
1482
|
justify-content: stretch;
|
|
1483
1483
|
}
|
|
1484
|
-
.
|
|
1484
|
+
.global_justify-items-stretch {
|
|
1485
1485
|
justify-items: stretch;
|
|
1486
1486
|
}
|
|
1487
|
-
.
|
|
1487
|
+
.global_justify-items-center {
|
|
1488
1488
|
justify-items: center;
|
|
1489
1489
|
}
|
|
1490
|
-
.
|
|
1490
|
+
.global_justify-items-start {
|
|
1491
1491
|
justify-items: start;
|
|
1492
1492
|
}
|
|
1493
|
-
.
|
|
1493
|
+
.global_justify-items-end {
|
|
1494
1494
|
justify-items: end;
|
|
1495
1495
|
}
|
|
1496
|
-
.
|
|
1496
|
+
.global_justify-items-flex-start {
|
|
1497
1497
|
justify-items: flex-start;
|
|
1498
1498
|
}
|
|
1499
|
-
.
|
|
1499
|
+
.global_justify-items-flex-end {
|
|
1500
1500
|
justify-items: flex-end;
|
|
1501
1501
|
}
|
|
1502
|
-
.
|
|
1502
|
+
.global_justify-items-self-start {
|
|
1503
1503
|
justify-items: self-start;
|
|
1504
1504
|
}
|
|
1505
|
-
.
|
|
1505
|
+
.global_justify-items-self-end {
|
|
1506
1506
|
justify-items: self-end;
|
|
1507
1507
|
}
|
|
1508
|
-
.
|
|
1508
|
+
.global_justify-items-left {
|
|
1509
1509
|
justify-items: left;
|
|
1510
1510
|
}
|
|
1511
|
-
.
|
|
1511
|
+
.global_justify-items-right {
|
|
1512
1512
|
justify-items: right;
|
|
1513
1513
|
}
|
|
1514
|
-
.
|
|
1514
|
+
.global_justify-items-baseline {
|
|
1515
1515
|
justify-items: baseline;
|
|
1516
1516
|
}
|
|
1517
|
-
.
|
|
1517
|
+
.global_align-content-center {
|
|
1518
1518
|
align-content: center;
|
|
1519
1519
|
}
|
|
1520
|
-
.
|
|
1520
|
+
.global_align-content-start {
|
|
1521
1521
|
align-content: start;
|
|
1522
1522
|
}
|
|
1523
|
-
.
|
|
1523
|
+
.global_align-content-end {
|
|
1524
1524
|
align-content: end;
|
|
1525
1525
|
}
|
|
1526
|
-
.
|
|
1526
|
+
.global_align-content-flex-start {
|
|
1527
1527
|
align-content: flex-start;
|
|
1528
1528
|
}
|
|
1529
|
-
.
|
|
1529
|
+
.global_align-content-flex-end {
|
|
1530
1530
|
align-content: flex-end;
|
|
1531
1531
|
}
|
|
1532
|
-
.
|
|
1532
|
+
.global_align-content-baseline {
|
|
1533
1533
|
align-content: baseline;
|
|
1534
1534
|
}
|
|
1535
|
-
.
|
|
1535
|
+
.global_align-content-space-between {
|
|
1536
1536
|
align-content: space-between;
|
|
1537
1537
|
}
|
|
1538
|
-
.
|
|
1538
|
+
.global_align-content-space-around {
|
|
1539
1539
|
align-content: space-around;
|
|
1540
1540
|
}
|
|
1541
|
-
.
|
|
1541
|
+
.global_align-content-space-evenly {
|
|
1542
1542
|
align-content: space-evenly;
|
|
1543
1543
|
}
|
|
1544
|
-
.
|
|
1544
|
+
.global_align-content-stretch {
|
|
1545
1545
|
align-content: stretch;
|
|
1546
1546
|
}
|
|
1547
|
-
.
|
|
1547
|
+
.global_align-items-center {
|
|
1548
1548
|
align-items: center;
|
|
1549
1549
|
}
|
|
1550
|
-
.
|
|
1550
|
+
.global_align-items-start {
|
|
1551
1551
|
align-items: start;
|
|
1552
1552
|
}
|
|
1553
|
-
.
|
|
1553
|
+
.global_align-items-end {
|
|
1554
1554
|
align-items: end;
|
|
1555
1555
|
}
|
|
1556
|
-
.
|
|
1556
|
+
.global_align-items-flex-start {
|
|
1557
1557
|
align-items: flex-start;
|
|
1558
1558
|
}
|
|
1559
|
-
.
|
|
1559
|
+
.global_align-items-flex-end {
|
|
1560
1560
|
align-items: flex-end;
|
|
1561
1561
|
}
|
|
1562
|
-
.
|
|
1562
|
+
.global_align-items-self-start {
|
|
1563
1563
|
align-items: self-start;
|
|
1564
1564
|
}
|
|
1565
|
-
.
|
|
1565
|
+
.global_align-items-self-end {
|
|
1566
1566
|
align-items: self-end;
|
|
1567
1567
|
}
|
|
1568
|
-
.
|
|
1568
|
+
.global_align-items-stretch {
|
|
1569
1569
|
align-items: stretch;
|
|
1570
1570
|
}
|
|
1571
|
-
.
|
|
1571
|
+
.global_align-items-baseline {
|
|
1572
1572
|
align-items: baseline;
|
|
1573
1573
|
}
|
|
1574
|
-
.
|
|
1574
|
+
.global_align-self-center {
|
|
1575
1575
|
align-self: center;
|
|
1576
1576
|
}
|
|
1577
|
-
.
|
|
1577
|
+
.global_align-self-start {
|
|
1578
1578
|
align-self: start;
|
|
1579
1579
|
}
|
|
1580
|
-
.
|
|
1580
|
+
.global_align-self-end {
|
|
1581
1581
|
align-self: end;
|
|
1582
1582
|
}
|
|
1583
|
-
.
|
|
1583
|
+
.global_align-self-self-start {
|
|
1584
1584
|
align-self: self-start;
|
|
1585
1585
|
}
|
|
1586
|
-
.
|
|
1586
|
+
.global_align-self-self-end {
|
|
1587
1587
|
align-self: self-end;
|
|
1588
1588
|
}
|
|
1589
|
-
.
|
|
1589
|
+
.global_align-self-flex-start {
|
|
1590
1590
|
align-self: flex-start;
|
|
1591
1591
|
}
|
|
1592
|
-
.
|
|
1592
|
+
.global_align-self-flex-end {
|
|
1593
1593
|
align-self: flex-end;
|
|
1594
1594
|
}
|
|
1595
|
-
.
|
|
1595
|
+
.global_align-self-baseline {
|
|
1596
1596
|
align-self: baseline;
|
|
1597
1597
|
}
|
|
1598
|
-
.
|
|
1598
|
+
.global_align-self-stretch {
|
|
1599
1599
|
align-self: stretch;
|
|
1600
1600
|
}
|
|
1601
|
-
.
|
|
1601
|
+
.global_justify-self-center {
|
|
1602
1602
|
justify-self: center;
|
|
1603
1603
|
}
|
|
1604
|
-
.
|
|
1604
|
+
.global_justify-self-start {
|
|
1605
1605
|
justify-self: start;
|
|
1606
1606
|
}
|
|
1607
|
-
.
|
|
1607
|
+
.global_justify-self-end {
|
|
1608
1608
|
justify-self: end;
|
|
1609
1609
|
}
|
|
1610
|
-
.
|
|
1610
|
+
.global_justify-self-self-start {
|
|
1611
1611
|
justify-self: self-start;
|
|
1612
1612
|
}
|
|
1613
|
-
.
|
|
1613
|
+
.global_justify-self-self-end {
|
|
1614
1614
|
justify-self: self-end;
|
|
1615
1615
|
}
|
|
1616
|
-
.
|
|
1616
|
+
.global_justify-self-baseline {
|
|
1617
1617
|
justify-self: baseline;
|
|
1618
1618
|
}
|
|
1619
|
-
.
|
|
1619
|
+
.global_justify-self-stretch {
|
|
1620
1620
|
justify-self: stretch;
|
|
1621
1621
|
}
|
|
1622
|
-
.
|
|
1622
|
+
.global_grid-auto-flow-row {
|
|
1623
1623
|
grid-auto-flow: row;
|
|
1624
1624
|
}
|
|
1625
|
-
.
|
|
1625
|
+
.global_grid-auto-flow-column {
|
|
1626
1626
|
grid-auto-flow: column;
|
|
1627
1627
|
}
|
|
1628
|
-
.
|
|
1628
|
+
.global_grid-auto-flow-row-dense {
|
|
1629
1629
|
grid-auto-flow: row dense;
|
|
1630
1630
|
}
|
|
1631
|
-
.
|
|
1631
|
+
.global_grid-auto-flow-column-dense {
|
|
1632
1632
|
grid-auto-flow: column dense;
|
|
1633
1633
|
}
|
|
1634
|
-
.
|
|
1634
|
+
.global_overflow-visible {
|
|
1635
1635
|
overflow: visible;
|
|
1636
1636
|
}
|
|
1637
|
-
.
|
|
1637
|
+
.global_overflow-hidden {
|
|
1638
1638
|
overflow: hidden;
|
|
1639
1639
|
}
|
|
1640
|
-
.
|
|
1640
|
+
.global_overflow-clip {
|
|
1641
1641
|
overflow: clip;
|
|
1642
1642
|
}
|
|
1643
|
-
.
|
|
1643
|
+
.global_overflow-scroll {
|
|
1644
1644
|
overflow: scroll;
|
|
1645
1645
|
}
|
|
1646
|
-
.
|
|
1646
|
+
.global_overflow-auto {
|
|
1647
1647
|
overflow: auto;
|
|
1648
1648
|
}
|
|
1649
|
-
.
|
|
1649
|
+
.global_overflow-x-visible {
|
|
1650
1650
|
overflow-x: visible;
|
|
1651
1651
|
}
|
|
1652
|
-
.
|
|
1652
|
+
.global_overflow-x-hidden {
|
|
1653
1653
|
overflow-x: hidden;
|
|
1654
1654
|
}
|
|
1655
|
-
.
|
|
1655
|
+
.global_overflow-x-clip {
|
|
1656
1656
|
overflow-x: clip;
|
|
1657
1657
|
}
|
|
1658
|
-
.
|
|
1658
|
+
.global_overflow-x-scroll {
|
|
1659
1659
|
overflow-x: scroll;
|
|
1660
1660
|
}
|
|
1661
|
-
.
|
|
1661
|
+
.global_overflow-x-auto {
|
|
1662
1662
|
overflow-x: auto;
|
|
1663
1663
|
}
|
|
1664
|
-
.
|
|
1664
|
+
.global_overflow-y-visible {
|
|
1665
1665
|
overflow-y: visible;
|
|
1666
1666
|
}
|
|
1667
|
-
.
|
|
1667
|
+
.global_overflow-y-hidden {
|
|
1668
1668
|
overflow-y: hidden;
|
|
1669
1669
|
}
|
|
1670
|
-
.
|
|
1670
|
+
.global_overflow-y-clip {
|
|
1671
1671
|
overflow-y: clip;
|
|
1672
1672
|
}
|
|
1673
|
-
.
|
|
1673
|
+
.global_overflow-y-scroll {
|
|
1674
1674
|
overflow-y: scroll;
|
|
1675
1675
|
}
|
|
1676
|
-
.
|
|
1676
|
+
.global_overflow-y-auto {
|
|
1677
1677
|
overflow-y: auto;
|
|
1678
1678
|
}
|
|
1679
1679
|
@media (min-width: 520px) {
|
|
1680
|
-
.
|
|
1680
|
+
.global_display-xs {
|
|
1681
1681
|
display: var(--display-xs);
|
|
1682
1682
|
}
|
|
1683
|
-
.
|
|
1683
|
+
.global_position-xs {
|
|
1684
1684
|
position: var(--position-xs);
|
|
1685
1685
|
}
|
|
1686
|
-
.
|
|
1686
|
+
.global_font-size-xs {
|
|
1687
1687
|
font-size: var(--font-size-xs);
|
|
1688
1688
|
}
|
|
1689
|
-
.
|
|
1689
|
+
.global_font-weight-xs {
|
|
1690
1690
|
font-weight: var(--font-weight-xs);
|
|
1691
1691
|
}
|
|
1692
|
-
.
|
|
1692
|
+
.global_border-size-xs {
|
|
1693
1693
|
border: var(--border-size-xs) solid var(--border-color);
|
|
1694
1694
|
}
|
|
1695
|
-
.
|
|
1695
|
+
.global_border-radius-xs {
|
|
1696
1696
|
border-radius: var(--border-radius-xs);
|
|
1697
1697
|
}
|
|
1698
|
-
.
|
|
1698
|
+
.global_shadow-xs {
|
|
1699
1699
|
box-shadow: var(--shadow-xs);
|
|
1700
1700
|
}
|
|
1701
|
-
.
|
|
1701
|
+
.global_background-color-xs {
|
|
1702
1702
|
background-color: var(--background-color-xs);
|
|
1703
1703
|
}
|
|
1704
|
-
.
|
|
1704
|
+
.global_align-xs {
|
|
1705
1705
|
text-align: var(--align-xs);
|
|
1706
1706
|
}
|
|
1707
|
-
.
|
|
1707
|
+
.global_letter-spacing-xs {
|
|
1708
1708
|
letter-spacing: var(--letter-spacing-xs);
|
|
1709
1709
|
}
|
|
1710
|
-
.
|
|
1710
|
+
.global_padding-xs {
|
|
1711
1711
|
padding: var(--padding-xs);
|
|
1712
1712
|
}
|
|
1713
|
-
.
|
|
1713
|
+
.global_padding-x-xs {
|
|
1714
1714
|
padding-left: var(--padding-x-xs);
|
|
1715
1715
|
padding-right: var(--padding-x-xs);
|
|
1716
1716
|
}
|
|
1717
|
-
.
|
|
1717
|
+
.global_padding-y-xs {
|
|
1718
1718
|
padding-top: var(--padding-y-xs);
|
|
1719
1719
|
padding-bottom: var(--padding-y-xs);
|
|
1720
1720
|
}
|
|
1721
|
-
.
|
|
1721
|
+
.global_padding-top-xs {
|
|
1722
1722
|
padding-top: var(--padding-top-xs);
|
|
1723
1723
|
}
|
|
1724
|
-
.
|
|
1724
|
+
.global_padding-right-xs {
|
|
1725
1725
|
padding-right: var(--padding-right-xs);
|
|
1726
1726
|
}
|
|
1727
|
-
.
|
|
1727
|
+
.global_padding-bottom-xs {
|
|
1728
1728
|
padding-bottom: var(--padding-bottom-xs);
|
|
1729
1729
|
}
|
|
1730
|
-
.
|
|
1730
|
+
.global_padding-left-xs {
|
|
1731
1731
|
padding-left: var(--padding-left-xs);
|
|
1732
1732
|
}
|
|
1733
|
-
.
|
|
1733
|
+
.global_margin-xs {
|
|
1734
1734
|
margin: var(--margin-xs);
|
|
1735
1735
|
}
|
|
1736
|
-
.
|
|
1736
|
+
.global_margin-x-xs {
|
|
1737
1737
|
margin-left: var(--margin-x-xs);
|
|
1738
1738
|
margin-right: var(--margin-x-xs);
|
|
1739
1739
|
}
|
|
1740
|
-
.
|
|
1740
|
+
.global_margin-y-xs {
|
|
1741
1741
|
margin-top: var(--margin-y-xs);
|
|
1742
1742
|
margin-bottom: var(--margin-y-xs);
|
|
1743
1743
|
}
|
|
1744
|
-
.
|
|
1744
|
+
.global_margin-top-xs {
|
|
1745
1745
|
margin-top: var(--margin-top-xs);
|
|
1746
1746
|
}
|
|
1747
|
-
.
|
|
1747
|
+
.global_margin-right-xs {
|
|
1748
1748
|
margin-right: var(--margin-right-xs);
|
|
1749
1749
|
}
|
|
1750
|
-
.
|
|
1750
|
+
.global_margin-bottom-xs {
|
|
1751
1751
|
margin-bottom: var(--margin-bottom-xs);
|
|
1752
1752
|
}
|
|
1753
|
-
.
|
|
1753
|
+
.global_margin-left-xs {
|
|
1754
1754
|
margin-left: var(--margin-left-xs);
|
|
1755
1755
|
}
|
|
1756
|
-
.
|
|
1756
|
+
.global_gap-xs {
|
|
1757
1757
|
gap: var(--gap-xs);
|
|
1758
1758
|
}
|
|
1759
|
-
.
|
|
1759
|
+
.global_gap-x-xs {
|
|
1760
1760
|
column-gap: var(--gap-x-xs);
|
|
1761
1761
|
}
|
|
1762
|
-
.
|
|
1762
|
+
.global_gap-y-xs {
|
|
1763
1763
|
row-gap: var(--gap-y-xs);
|
|
1764
1764
|
}
|
|
1765
|
-
.
|
|
1765
|
+
.global_height-xs {
|
|
1766
1766
|
height: var(--height-xs);
|
|
1767
1767
|
}
|
|
1768
|
-
.
|
|
1768
|
+
.global_width-xs {
|
|
1769
1769
|
min-width: var(--width-xs);
|
|
1770
1770
|
}
|
|
1771
|
-
.
|
|
1771
|
+
.global_min-height-xs {
|
|
1772
1772
|
min-height: var(--min-height-xs);
|
|
1773
1773
|
}
|
|
1774
|
-
.
|
|
1774
|
+
.global_min-width-xs {
|
|
1775
1775
|
max-width: var(--min-width-xs);
|
|
1776
1776
|
}
|
|
1777
|
-
.
|
|
1777
|
+
.global_max-height-xs {
|
|
1778
1778
|
max-height: var(--max-height-xs);
|
|
1779
1779
|
}
|
|
1780
|
-
.
|
|
1780
|
+
.global_flex-direction-xs {
|
|
1781
1781
|
flex-direction: var(--flex-direction-xs);
|
|
1782
1782
|
}
|
|
1783
|
-
.
|
|
1783
|
+
.global_flex-wrap-xs {
|
|
1784
1784
|
flex-wrap: var(--flex-wrap-xs);
|
|
1785
1785
|
}
|
|
1786
|
-
.
|
|
1786
|
+
.global_justify-content-xs {
|
|
1787
1787
|
justify-content: var(--justify-content-xs);
|
|
1788
1788
|
}
|
|
1789
|
-
.
|
|
1789
|
+
.global_justify-items-xs {
|
|
1790
1790
|
justify-items: var(--justify-items-xs);
|
|
1791
1791
|
}
|
|
1792
|
-
.
|
|
1792
|
+
.global_justify-self-xs {
|
|
1793
1793
|
justify-self: var(--justify-self-xs);
|
|
1794
1794
|
}
|
|
1795
|
-
.
|
|
1795
|
+
.global_align-content-xs {
|
|
1796
1796
|
align-content: var(--align-content-xs);
|
|
1797
1797
|
}
|
|
1798
|
-
.
|
|
1798
|
+
.global_align-items-xs {
|
|
1799
1799
|
align-items: var(--align-items-xs);
|
|
1800
1800
|
}
|
|
1801
|
-
.
|
|
1801
|
+
.global_align-self-xs {
|
|
1802
1802
|
align-self: var(--align-self-xs);
|
|
1803
1803
|
}
|
|
1804
|
-
.
|
|
1804
|
+
.global_grid-template-rows-xs {
|
|
1805
1805
|
grid-template-rows: var(--grid-template-rows-xs);
|
|
1806
1806
|
}
|
|
1807
|
-
.
|
|
1807
|
+
.global_grid-template-columns-xs {
|
|
1808
1808
|
grid-template-columns: var(--grid-template-columns-xs);
|
|
1809
1809
|
}
|
|
1810
|
-
.
|
|
1810
|
+
.global_flex-basis-xs {
|
|
1811
1811
|
flex-basis: var(--flex-basis-xs);
|
|
1812
1812
|
}
|
|
1813
|
-
.
|
|
1813
|
+
.global_flex-grow-xs {
|
|
1814
1814
|
flex-basis: var(--flex-grow-xs);
|
|
1815
1815
|
}
|
|
1816
|
-
.
|
|
1816
|
+
.global_flex-shrink-xs {
|
|
1817
1817
|
flex-basis: var(--flex-shrink-xs);
|
|
1818
1818
|
}
|
|
1819
|
-
.
|
|
1819
|
+
.global_overflow-xs {
|
|
1820
1820
|
overflow: var(--overflow-xs);
|
|
1821
1821
|
}
|
|
1822
|
-
.
|
|
1822
|
+
.global_overflow-x-xs {
|
|
1823
1823
|
overflow: var(--overflow-x-xs);
|
|
1824
1824
|
}
|
|
1825
|
-
.
|
|
1825
|
+
.global_overflow-y-xs {
|
|
1826
1826
|
overflow: var(--overflow-y-xs);
|
|
1827
1827
|
}
|
|
1828
|
-
.
|
|
1828
|
+
.global_order-xs {
|
|
1829
1829
|
order: var(--order-xs);
|
|
1830
1830
|
}
|
|
1831
1831
|
}
|
|
1832
1832
|
@media (min-width: 768px) {
|
|
1833
|
-
.
|
|
1833
|
+
.global_display-sm {
|
|
1834
1834
|
display: var(--display-sm);
|
|
1835
1835
|
}
|
|
1836
|
-
.
|
|
1836
|
+
.global_position-sm {
|
|
1837
1837
|
position: var(--position-sm);
|
|
1838
1838
|
}
|
|
1839
|
-
.
|
|
1839
|
+
.global_font-size-sm {
|
|
1840
1840
|
font-size: var(--font-size-sm);
|
|
1841
1841
|
}
|
|
1842
|
-
.
|
|
1842
|
+
.global_font-weight-sm {
|
|
1843
1843
|
font-weight: var(--font-weight-sm);
|
|
1844
1844
|
}
|
|
1845
|
-
.
|
|
1845
|
+
.global_border-size-sm {
|
|
1846
1846
|
border: var(--border-size-sm) solid var(--border-color);
|
|
1847
1847
|
}
|
|
1848
|
-
.
|
|
1848
|
+
.global_border-radius-sm {
|
|
1849
1849
|
border-radius: var(--border-radius-sm);
|
|
1850
1850
|
}
|
|
1851
|
-
.
|
|
1851
|
+
.global_shadow-sm {
|
|
1852
1852
|
box-shadow: var(--shadow-sm);
|
|
1853
1853
|
}
|
|
1854
|
-
.
|
|
1854
|
+
.global_background-color-sm {
|
|
1855
1855
|
background-color: var(--background-color-sm);
|
|
1856
1856
|
}
|
|
1857
|
-
.
|
|
1857
|
+
.global_align-sm {
|
|
1858
1858
|
text-align: var(--align-sm);
|
|
1859
1859
|
}
|
|
1860
|
-
.
|
|
1860
|
+
.global_letter-spacing-sm {
|
|
1861
1861
|
letter-spacing: var(--letter-spacing-sm);
|
|
1862
1862
|
}
|
|
1863
|
-
.
|
|
1863
|
+
.global_padding-sm {
|
|
1864
1864
|
padding: var(--padding-sm);
|
|
1865
1865
|
}
|
|
1866
|
-
.
|
|
1866
|
+
.global_padding-x-sm {
|
|
1867
1867
|
padding-left: var(--padding-x-sm);
|
|
1868
1868
|
padding-right: var(--padding-x-sm);
|
|
1869
1869
|
}
|
|
1870
|
-
.
|
|
1870
|
+
.global_padding-y-sm {
|
|
1871
1871
|
padding-top: var(--padding-y-sm);
|
|
1872
1872
|
padding-bottom: var(--padding-y-sm);
|
|
1873
1873
|
}
|
|
1874
|
-
.
|
|
1874
|
+
.global_padding-top-sm {
|
|
1875
1875
|
padding-top: var(--padding-top-sm);
|
|
1876
1876
|
}
|
|
1877
|
-
.
|
|
1877
|
+
.global_padding-right-sm {
|
|
1878
1878
|
padding-right: var(--padding-right-sm);
|
|
1879
1879
|
}
|
|
1880
|
-
.
|
|
1880
|
+
.global_padding-bottom-sm {
|
|
1881
1881
|
padding-bottom: var(--padding-bottom-sm);
|
|
1882
1882
|
}
|
|
1883
|
-
.
|
|
1883
|
+
.global_padding-left-sm {
|
|
1884
1884
|
padding-left: var(--padding-left-sm);
|
|
1885
1885
|
}
|
|
1886
|
-
.
|
|
1886
|
+
.global_margin-sm {
|
|
1887
1887
|
margin: var(--margin-sm);
|
|
1888
1888
|
}
|
|
1889
|
-
.
|
|
1889
|
+
.global_margin-x-sm {
|
|
1890
1890
|
margin-left: var(--margin-x-sm);
|
|
1891
1891
|
margin-right: var(--margin-x-sm);
|
|
1892
1892
|
}
|
|
1893
|
-
.
|
|
1893
|
+
.global_margin-y-sm {
|
|
1894
1894
|
margin-top: var(--margin-y-sm);
|
|
1895
1895
|
margin-bottom: var(--margin-y-sm);
|
|
1896
1896
|
}
|
|
1897
|
-
.
|
|
1897
|
+
.global_margin-top-sm {
|
|
1898
1898
|
margin-top: var(--margin-top-sm);
|
|
1899
1899
|
}
|
|
1900
|
-
.
|
|
1900
|
+
.global_margin-right-sm {
|
|
1901
1901
|
margin-right: var(--margin-right-sm);
|
|
1902
1902
|
}
|
|
1903
|
-
.
|
|
1903
|
+
.global_margin-bottom-sm {
|
|
1904
1904
|
margin-bottom: var(--margin-bottom-sm);
|
|
1905
1905
|
}
|
|
1906
|
-
.
|
|
1906
|
+
.global_margin-left-sm {
|
|
1907
1907
|
margin-left: var(--margin-left-sm);
|
|
1908
1908
|
}
|
|
1909
|
-
.
|
|
1909
|
+
.global_gap-sm {
|
|
1910
1910
|
gap: var(--gap-sm);
|
|
1911
1911
|
}
|
|
1912
|
-
.
|
|
1912
|
+
.global_gap-x-sm {
|
|
1913
1913
|
column-gap: var(--gap-x-sm);
|
|
1914
1914
|
}
|
|
1915
|
-
.
|
|
1915
|
+
.global_gap-y-sm {
|
|
1916
1916
|
row-gap: var(--gap-y-sm);
|
|
1917
1917
|
}
|
|
1918
|
-
.
|
|
1918
|
+
.global_height-sm {
|
|
1919
1919
|
height: var(--height-sm);
|
|
1920
1920
|
}
|
|
1921
|
-
.
|
|
1921
|
+
.global_width-sm {
|
|
1922
1922
|
width: var(--width-sm);
|
|
1923
1923
|
}
|
|
1924
|
-
.
|
|
1924
|
+
.global_min-height-sm {
|
|
1925
1925
|
min-height: var(--min-height-sm);
|
|
1926
1926
|
}
|
|
1927
|
-
.
|
|
1927
|
+
.global_min-width-sm {
|
|
1928
1928
|
max-width: var(--min-width-sm);
|
|
1929
1929
|
}
|
|
1930
|
-
.
|
|
1930
|
+
.global_max-height-sm {
|
|
1931
1931
|
max-height: var(--max-height-sm);
|
|
1932
1932
|
}
|
|
1933
|
-
.
|
|
1933
|
+
.global_flex-direction-sm {
|
|
1934
1934
|
flex-direction: var(--flex-direction-sm);
|
|
1935
1935
|
}
|
|
1936
|
-
.
|
|
1936
|
+
.global_flex-wrap-sm {
|
|
1937
1937
|
flex-wrap: var(--flex-wrap-sm);
|
|
1938
1938
|
}
|
|
1939
|
-
.
|
|
1939
|
+
.global_justify-content-sm {
|
|
1940
1940
|
justify-content: var(--justify-content-sm);
|
|
1941
1941
|
}
|
|
1942
|
-
.
|
|
1942
|
+
.global_justify-items-sm {
|
|
1943
1943
|
justify-items: var(--justify-items-sm);
|
|
1944
1944
|
}
|
|
1945
|
-
.
|
|
1945
|
+
.global_justify-self-sm {
|
|
1946
1946
|
justify-self: var(--justify-self-sm);
|
|
1947
1947
|
}
|
|
1948
|
-
.
|
|
1948
|
+
.global_align-content-sm {
|
|
1949
1949
|
align-content: var(--align-content-sm);
|
|
1950
1950
|
}
|
|
1951
|
-
.
|
|
1951
|
+
.global_align-items-sm {
|
|
1952
1952
|
align-items: var(--align-items-sm);
|
|
1953
1953
|
}
|
|
1954
|
-
.
|
|
1954
|
+
.global_align-self-sm {
|
|
1955
1955
|
align-self: var(--align-self-sm);
|
|
1956
1956
|
}
|
|
1957
|
-
.
|
|
1957
|
+
.global_grid-template-rows-sm {
|
|
1958
1958
|
grid-template-rows: var(--grid-template-rows-sm);
|
|
1959
1959
|
}
|
|
1960
|
-
.
|
|
1960
|
+
.global_grid-template-columns-sm {
|
|
1961
1961
|
grid-template-columns: var(--grid-template-columns-sm);
|
|
1962
1962
|
}
|
|
1963
|
-
.
|
|
1963
|
+
.global_flex-basis-sm {
|
|
1964
1964
|
flex-basis: var(--flex-basis-sm);
|
|
1965
1965
|
}
|
|
1966
|
-
.
|
|
1966
|
+
.global_flex-grow-sm {
|
|
1967
1967
|
flex-basis: var(--flex-grow-sm);
|
|
1968
1968
|
}
|
|
1969
|
-
.
|
|
1969
|
+
.global_flex-shrink-sm {
|
|
1970
1970
|
flex-basis: var(--flex-shrink-sm);
|
|
1971
1971
|
}
|
|
1972
|
-
.
|
|
1972
|
+
.global_overflow-sm {
|
|
1973
1973
|
overflow: var(--overflow-sm);
|
|
1974
1974
|
}
|
|
1975
|
-
.
|
|
1975
|
+
.global_overflow-x-sm {
|
|
1976
1976
|
overflow: var(--overflow-x-sm);
|
|
1977
1977
|
}
|
|
1978
|
-
.
|
|
1978
|
+
.global_overflow-y-sm {
|
|
1979
1979
|
overflow: var(--overflow-y-sm);
|
|
1980
1980
|
}
|
|
1981
|
-
.
|
|
1981
|
+
.global_order-sm {
|
|
1982
1982
|
order: var(--order-sm);
|
|
1983
1983
|
}
|
|
1984
1984
|
}
|
|
1985
1985
|
@media (min-width: 1024px) {
|
|
1986
|
-
.
|
|
1986
|
+
.global_display-md {
|
|
1987
1987
|
display: var(--display-md);
|
|
1988
1988
|
}
|
|
1989
|
-
.
|
|
1989
|
+
.global_position-md {
|
|
1990
1990
|
position: var(--position-md);
|
|
1991
1991
|
}
|
|
1992
|
-
.
|
|
1992
|
+
.global_font-size-md {
|
|
1993
1993
|
font-size: var(--font-size-md);
|
|
1994
1994
|
}
|
|
1995
|
-
.
|
|
1995
|
+
.global_font-weight-md {
|
|
1996
1996
|
font-weight: var(--font-weight-md);
|
|
1997
1997
|
}
|
|
1998
|
-
.
|
|
1998
|
+
.global_border-size-md {
|
|
1999
1999
|
border: var(--border-size-md) solid var(--border-color);
|
|
2000
2000
|
}
|
|
2001
|
-
.
|
|
2001
|
+
.global_border-radius-md {
|
|
2002
2002
|
border-radius: var(--border-radius-md);
|
|
2003
2003
|
}
|
|
2004
|
-
.
|
|
2004
|
+
.global_shadow-md {
|
|
2005
2005
|
box-shadow: var(--shadow-md);
|
|
2006
2006
|
}
|
|
2007
|
-
.
|
|
2007
|
+
.global_background-color-md {
|
|
2008
2008
|
background-color: var(--background-color-md);
|
|
2009
2009
|
}
|
|
2010
|
-
.
|
|
2010
|
+
.global_align-md {
|
|
2011
2011
|
text-align: var(--align-md);
|
|
2012
2012
|
}
|
|
2013
|
-
.
|
|
2013
|
+
.global_letter-spacing-md {
|
|
2014
2014
|
letter-spacing: var(--letter-spacing-md);
|
|
2015
2015
|
}
|
|
2016
|
-
.
|
|
2016
|
+
.global_padding-md {
|
|
2017
2017
|
padding: var(--padding-md);
|
|
2018
2018
|
}
|
|
2019
|
-
.
|
|
2019
|
+
.global_padding-x-md {
|
|
2020
2020
|
padding-left: var(--padding-x-md);
|
|
2021
2021
|
padding-right: var(--padding-x-md);
|
|
2022
2022
|
}
|
|
2023
|
-
.
|
|
2023
|
+
.global_padding-y-md {
|
|
2024
2024
|
padding-top: var(--padding-y-md);
|
|
2025
2025
|
padding-bottom: var(--padding-y-md);
|
|
2026
2026
|
}
|
|
2027
|
-
.
|
|
2027
|
+
.global_padding-top-md {
|
|
2028
2028
|
padding-top: var(--padding-top-md);
|
|
2029
2029
|
}
|
|
2030
|
-
.
|
|
2030
|
+
.global_padding-right-md {
|
|
2031
2031
|
padding-right: var(--padding-right-md);
|
|
2032
2032
|
}
|
|
2033
|
-
.
|
|
2033
|
+
.global_padding-bottom-md {
|
|
2034
2034
|
padding-bottom: var(--padding-bottom-md);
|
|
2035
2035
|
}
|
|
2036
|
-
.
|
|
2036
|
+
.global_padding-left-md {
|
|
2037
2037
|
padding-left: var(--padding-left-md);
|
|
2038
2038
|
}
|
|
2039
|
-
.
|
|
2039
|
+
.global_margin-md {
|
|
2040
2040
|
margin: var(--margin-md);
|
|
2041
2041
|
}
|
|
2042
|
-
.
|
|
2042
|
+
.global_margin-x-md {
|
|
2043
2043
|
margin-left: var(--margin-x-md);
|
|
2044
2044
|
margin-right: var(--margin-x-md);
|
|
2045
2045
|
}
|
|
2046
|
-
.
|
|
2046
|
+
.global_margin-y-md {
|
|
2047
2047
|
margin-top: var(--margin-y-md);
|
|
2048
2048
|
margin-bottom: var(--margin-y-md);
|
|
2049
2049
|
}
|
|
2050
|
-
.
|
|
2050
|
+
.global_margin-top-md {
|
|
2051
2051
|
margin-top: var(--margin-top-md);
|
|
2052
2052
|
}
|
|
2053
|
-
.
|
|
2053
|
+
.global_margin-right-md {
|
|
2054
2054
|
margin-right: var(--margin-right-md);
|
|
2055
2055
|
}
|
|
2056
|
-
.
|
|
2056
|
+
.global_margin-bottom-md {
|
|
2057
2057
|
margin-bottom: var(--margin-bottom-md);
|
|
2058
2058
|
}
|
|
2059
|
-
.
|
|
2059
|
+
.global_margin-left-md {
|
|
2060
2060
|
margin-left: var(--margin-left-md);
|
|
2061
2061
|
}
|
|
2062
|
-
.
|
|
2062
|
+
.global_gap-md {
|
|
2063
2063
|
gap: var(--gap-md);
|
|
2064
2064
|
}
|
|
2065
|
-
.
|
|
2065
|
+
.global_gap-x-md {
|
|
2066
2066
|
column-gap: var(--gap-x-md);
|
|
2067
2067
|
}
|
|
2068
|
-
.
|
|
2068
|
+
.global_gap-y-md {
|
|
2069
2069
|
row-gap: var(--gap-y-md);
|
|
2070
2070
|
}
|
|
2071
|
-
.
|
|
2071
|
+
.global_height-md {
|
|
2072
2072
|
height: var(--height-md);
|
|
2073
2073
|
}
|
|
2074
|
-
.
|
|
2074
|
+
.global_width-md {
|
|
2075
2075
|
width: var(--width-md);
|
|
2076
2076
|
}
|
|
2077
|
-
.
|
|
2077
|
+
.global_min-height-md {
|
|
2078
2078
|
min-height: var(--min-height-md);
|
|
2079
2079
|
}
|
|
2080
|
-
.
|
|
2080
|
+
.global_min-width-md {
|
|
2081
2081
|
max-width: var(--min-width-md);
|
|
2082
2082
|
}
|
|
2083
|
-
.
|
|
2083
|
+
.global_max-height-md {
|
|
2084
2084
|
max-height: var(--max-height-md);
|
|
2085
2085
|
}
|
|
2086
|
-
.
|
|
2086
|
+
.global_flex-direction-md {
|
|
2087
2087
|
flex-direction: var(--flex-direction-md);
|
|
2088
2088
|
}
|
|
2089
|
-
.
|
|
2089
|
+
.global_flex-wrap-md {
|
|
2090
2090
|
flex-wrap: var(--flex-wrap-md);
|
|
2091
2091
|
}
|
|
2092
|
-
.
|
|
2092
|
+
.global_justify-content-md {
|
|
2093
2093
|
justify-content: var(--justify-content-md);
|
|
2094
2094
|
}
|
|
2095
|
-
.
|
|
2095
|
+
.global_justify-items-md {
|
|
2096
2096
|
justify-items: var(--justify-items-md);
|
|
2097
2097
|
}
|
|
2098
|
-
.
|
|
2098
|
+
.global_justify-self-md {
|
|
2099
2099
|
justify-self: var(--justify-self-md);
|
|
2100
2100
|
}
|
|
2101
|
-
.
|
|
2101
|
+
.global_align-content-md {
|
|
2102
2102
|
align-content: var(--align-content-md);
|
|
2103
2103
|
}
|
|
2104
|
-
.
|
|
2104
|
+
.global_align-items-md {
|
|
2105
2105
|
align-items: var(--align-items-md);
|
|
2106
2106
|
}
|
|
2107
|
-
.
|
|
2107
|
+
.global_align-self-md {
|
|
2108
2108
|
align-self: var(--align-self-md);
|
|
2109
2109
|
}
|
|
2110
|
-
.
|
|
2110
|
+
.global_grid-template-rows-md {
|
|
2111
2111
|
grid-template-rows: var(--grid-template-rows-md);
|
|
2112
2112
|
}
|
|
2113
|
-
.
|
|
2113
|
+
.global_grid-template-columns-md {
|
|
2114
2114
|
grid-template-columns: var(--grid-template-columns-md);
|
|
2115
2115
|
}
|
|
2116
|
-
.
|
|
2116
|
+
.global_flex-basis-md {
|
|
2117
2117
|
flex-basis: var(--flex-basis-md);
|
|
2118
2118
|
}
|
|
2119
|
-
.
|
|
2119
|
+
.global_flex-grow-md {
|
|
2120
2120
|
flex-basis: var(--flex-grow-md);
|
|
2121
2121
|
}
|
|
2122
|
-
.
|
|
2122
|
+
.global_flex-shrink-md {
|
|
2123
2123
|
flex-basis: var(--flex-shrink-md);
|
|
2124
2124
|
}
|
|
2125
|
-
.
|
|
2125
|
+
.global_overflow-md {
|
|
2126
2126
|
overflow: var(--overflow-md);
|
|
2127
2127
|
}
|
|
2128
|
-
.
|
|
2128
|
+
.global_overflow-x-md {
|
|
2129
2129
|
overflow: var(--overflow-x-md);
|
|
2130
2130
|
}
|
|
2131
|
-
.
|
|
2131
|
+
.global_overflow-y-md {
|
|
2132
2132
|
overflow: var(--overflow-y-md);
|
|
2133
2133
|
}
|
|
2134
|
-
.
|
|
2134
|
+
.global_order-md {
|
|
2135
2135
|
order: var(--order-md);
|
|
2136
2136
|
}
|
|
2137
2137
|
}
|
|
2138
2138
|
@media (min-width: 1280px) {
|
|
2139
|
-
.
|
|
2139
|
+
.global_display-lg {
|
|
2140
2140
|
display: var(--display-lg);
|
|
2141
2141
|
}
|
|
2142
|
-
.
|
|
2142
|
+
.global_position-lg {
|
|
2143
2143
|
position: var(--position-lg);
|
|
2144
2144
|
}
|
|
2145
|
-
.
|
|
2145
|
+
.global_font-size-lg {
|
|
2146
2146
|
font-size: var(--font-size-lg);
|
|
2147
2147
|
}
|
|
2148
|
-
.
|
|
2148
|
+
.global_font-weight-lg {
|
|
2149
2149
|
font-weight: var(--font-weight-lg);
|
|
2150
2150
|
}
|
|
2151
|
-
.
|
|
2151
|
+
.global_border-size-lg {
|
|
2152
2152
|
border: var(--border-size-lg) solid var(--border-color);
|
|
2153
2153
|
}
|
|
2154
|
-
.
|
|
2154
|
+
.global_border-radius-lg {
|
|
2155
2155
|
border-radius: var(--border-radius-lg);
|
|
2156
2156
|
}
|
|
2157
|
-
.
|
|
2157
|
+
.global_shadow-lg {
|
|
2158
2158
|
box-shadow: var(--shadow-lg);
|
|
2159
2159
|
}
|
|
2160
|
-
.
|
|
2160
|
+
.global_background-color-lg {
|
|
2161
2161
|
background-color: var(--background-color-lg);
|
|
2162
2162
|
}
|
|
2163
|
-
.
|
|
2163
|
+
.global_align-lg {
|
|
2164
2164
|
text-align: var(--align-lg);
|
|
2165
2165
|
}
|
|
2166
|
-
.
|
|
2166
|
+
.global_letter-spacing-lg {
|
|
2167
2167
|
letter-spacing: var(--letter-spacing-lg);
|
|
2168
2168
|
}
|
|
2169
|
-
.
|
|
2169
|
+
.global_padding-lg {
|
|
2170
2170
|
padding: var(--padding-lg);
|
|
2171
2171
|
}
|
|
2172
|
-
.
|
|
2172
|
+
.global_padding-x-lg {
|
|
2173
2173
|
padding-left: var(--padding-x-lg);
|
|
2174
2174
|
padding-right: var(--padding-x-lg);
|
|
2175
2175
|
}
|
|
2176
|
-
.
|
|
2176
|
+
.global_padding-y-lg {
|
|
2177
2177
|
padding-top: var(--padding-y-lg);
|
|
2178
2178
|
padding-bottom: var(--padding-y-lg);
|
|
2179
2179
|
}
|
|
2180
|
-
.
|
|
2180
|
+
.global_padding-top-lg {
|
|
2181
2181
|
padding-top: var(--padding-top-lg);
|
|
2182
2182
|
}
|
|
2183
|
-
.
|
|
2183
|
+
.global_padding-right-lg {
|
|
2184
2184
|
padding-right: var(--padding-right-lg);
|
|
2185
2185
|
}
|
|
2186
|
-
.
|
|
2186
|
+
.global_padding-bottom-lg {
|
|
2187
2187
|
padding-bottom: var(--padding-bottom-lg);
|
|
2188
2188
|
}
|
|
2189
|
-
.
|
|
2189
|
+
.global_padding-left-lg {
|
|
2190
2190
|
padding-left: var(--padding-left-lg);
|
|
2191
2191
|
}
|
|
2192
|
-
.
|
|
2192
|
+
.global_margin-lg {
|
|
2193
2193
|
margin: var(--margin-lg);
|
|
2194
2194
|
}
|
|
2195
|
-
.
|
|
2195
|
+
.global_margin-x-lg {
|
|
2196
2196
|
margin-left: var(--margin-x-lg);
|
|
2197
2197
|
margin-right: var(--margin-x-lg);
|
|
2198
2198
|
}
|
|
2199
|
-
.
|
|
2199
|
+
.global_margin-y-lg {
|
|
2200
2200
|
margin-top: var(--margin-y-lg);
|
|
2201
2201
|
margin-bottom: var(--margin-y-lg);
|
|
2202
2202
|
}
|
|
2203
|
-
.
|
|
2203
|
+
.global_margin-top-lg {
|
|
2204
2204
|
margin-top: var(--margin-top-lg);
|
|
2205
2205
|
}
|
|
2206
|
-
.
|
|
2206
|
+
.global_margin-right-lg {
|
|
2207
2207
|
margin-right: var(--margin-right-lg);
|
|
2208
2208
|
}
|
|
2209
|
-
.
|
|
2209
|
+
.global_margin-bottom-lg {
|
|
2210
2210
|
margin-bottom: var(--margin-bottom-lg);
|
|
2211
2211
|
}
|
|
2212
|
-
.
|
|
2212
|
+
.global_margin-left-lg {
|
|
2213
2213
|
margin-left: var(--margin-left-lg);
|
|
2214
2214
|
}
|
|
2215
|
-
.
|
|
2215
|
+
.global_gap-lg {
|
|
2216
2216
|
gap: var(--gap-lg);
|
|
2217
2217
|
}
|
|
2218
|
-
.
|
|
2218
|
+
.global_gap-x-lg {
|
|
2219
2219
|
column-gap: var(--gap-x-lg);
|
|
2220
2220
|
}
|
|
2221
|
-
.
|
|
2221
|
+
.global_gap-y-lg {
|
|
2222
2222
|
row-gap: var(--gap-y-lg);
|
|
2223
2223
|
}
|
|
2224
|
-
.
|
|
2224
|
+
.global_height-lg {
|
|
2225
2225
|
height: var(--height-lg);
|
|
2226
2226
|
}
|
|
2227
|
-
.
|
|
2227
|
+
.global_width-lg {
|
|
2228
2228
|
width: var(--width-lg);
|
|
2229
2229
|
}
|
|
2230
|
-
.
|
|
2230
|
+
.global_min-height-lg {
|
|
2231
2231
|
min-height: var(--min-height-lg);
|
|
2232
2232
|
}
|
|
2233
|
-
.
|
|
2233
|
+
.global_min-width-lg {
|
|
2234
2234
|
max-width: var(--min-width-lg);
|
|
2235
2235
|
}
|
|
2236
|
-
.
|
|
2236
|
+
.global_max-height-lg {
|
|
2237
2237
|
max-height: var(--max-height-lg);
|
|
2238
2238
|
}
|
|
2239
|
-
.
|
|
2239
|
+
.global_flex-direction-lg {
|
|
2240
2240
|
flex-direction: var(--flex-direction-lg);
|
|
2241
2241
|
}
|
|
2242
|
-
.
|
|
2242
|
+
.global_flex-wrap-lg {
|
|
2243
2243
|
flex-wrap: var(--flex-wrap-lg);
|
|
2244
2244
|
}
|
|
2245
|
-
.
|
|
2245
|
+
.global_justify-content-lg {
|
|
2246
2246
|
justify-content: var(--justify-content-lg);
|
|
2247
2247
|
}
|
|
2248
|
-
.
|
|
2248
|
+
.global_justify-items-lg {
|
|
2249
2249
|
justify-items: var(--justify-items-lg);
|
|
2250
2250
|
}
|
|
2251
|
-
.
|
|
2251
|
+
.global_justify-self-lg {
|
|
2252
2252
|
justify-self: var(--justify-self-lg);
|
|
2253
2253
|
}
|
|
2254
|
-
.
|
|
2254
|
+
.global_align-content-lg {
|
|
2255
2255
|
align-content: var(--align-content-lg);
|
|
2256
2256
|
}
|
|
2257
|
-
.
|
|
2257
|
+
.global_align-items-lg {
|
|
2258
2258
|
align-items: var(--align-items-lg);
|
|
2259
2259
|
}
|
|
2260
|
-
.
|
|
2260
|
+
.global_align-self-lg {
|
|
2261
2261
|
align-self: var(--align-self-lg);
|
|
2262
2262
|
}
|
|
2263
|
-
.
|
|
2263
|
+
.global_grid-template-rows-lg {
|
|
2264
2264
|
grid-template-rows: var(--grid-template-rows-lg);
|
|
2265
2265
|
}
|
|
2266
|
-
.
|
|
2266
|
+
.global_grid-template-columns-lg {
|
|
2267
2267
|
grid-template-columns: var(--grid-template-columns-lg);
|
|
2268
2268
|
}
|
|
2269
|
-
.
|
|
2269
|
+
.global_flex-basis-lg {
|
|
2270
2270
|
flex-basis: var(--flex-basis-lg);
|
|
2271
2271
|
}
|
|
2272
|
-
.
|
|
2272
|
+
.global_flex-grow-lg {
|
|
2273
2273
|
flex-basis: var(--flex-grow-lg);
|
|
2274
2274
|
}
|
|
2275
|
-
.
|
|
2275
|
+
.global_flex-shrink-lg {
|
|
2276
2276
|
flex-basis: var(--flex-shrink-lg);
|
|
2277
2277
|
}
|
|
2278
|
-
.
|
|
2278
|
+
.global_overflow-lg {
|
|
2279
2279
|
overflow: var(--overflow-lg);
|
|
2280
2280
|
}
|
|
2281
|
-
.
|
|
2281
|
+
.global_overflow-x-lg {
|
|
2282
2282
|
overflow: var(--overflow-x-lg);
|
|
2283
2283
|
}
|
|
2284
|
-
.
|
|
2284
|
+
.global_overflow-y-lg {
|
|
2285
2285
|
overflow: var(--overflow-y-lg);
|
|
2286
2286
|
}
|
|
2287
|
-
.
|
|
2287
|
+
.global_order-lg {
|
|
2288
2288
|
order: var(--order-lg);
|
|
2289
2289
|
}
|
|
2290
2290
|
}
|
|
2291
2291
|
@media (min-width: 1640px) {
|
|
2292
|
-
.
|
|
2292
|
+
.global_display-xl {
|
|
2293
2293
|
display: var(--display-xl);
|
|
2294
2294
|
}
|
|
2295
|
-
.
|
|
2295
|
+
.global_position-xl {
|
|
2296
2296
|
position: var(--position-xl);
|
|
2297
2297
|
}
|
|
2298
|
-
.
|
|
2298
|
+
.global_font-size-xl {
|
|
2299
2299
|
font-size: var(--font-size-xl);
|
|
2300
2300
|
}
|
|
2301
|
-
.
|
|
2301
|
+
.global_font-weight-xl {
|
|
2302
2302
|
font-weight: var(--font-weight-xl);
|
|
2303
2303
|
}
|
|
2304
|
-
.
|
|
2304
|
+
.global_border-size-xl {
|
|
2305
2305
|
border: var(--border-size-xl) solid var(--border-color);
|
|
2306
2306
|
}
|
|
2307
|
-
.
|
|
2307
|
+
.global_border-radius-xl {
|
|
2308
2308
|
border-radius: var(--border-radius-xl);
|
|
2309
2309
|
}
|
|
2310
|
-
.
|
|
2310
|
+
.global_shadow-xl {
|
|
2311
2311
|
box-shadow: var(--shadow-xl);
|
|
2312
2312
|
}
|
|
2313
|
-
.
|
|
2313
|
+
.global_background-color-xl {
|
|
2314
2314
|
background-color: var(--background-color-xl);
|
|
2315
2315
|
}
|
|
2316
|
-
.
|
|
2316
|
+
.global_align-xl {
|
|
2317
2317
|
text-align: var(--align-xl);
|
|
2318
2318
|
}
|
|
2319
|
-
.
|
|
2319
|
+
.global_letter-spacing-xl {
|
|
2320
2320
|
letter-spacing: var(--letter-spacing-xl);
|
|
2321
2321
|
}
|
|
2322
|
-
.
|
|
2322
|
+
.global_padding-xl {
|
|
2323
2323
|
padding: var(--padding-xl);
|
|
2324
2324
|
}
|
|
2325
|
-
.
|
|
2325
|
+
.global_padding-x-xl {
|
|
2326
2326
|
padding-left: var(--padding-x-xl);
|
|
2327
2327
|
padding-right: var(--padding-x-xl);
|
|
2328
2328
|
}
|
|
2329
|
-
.
|
|
2329
|
+
.global_padding-y-xl {
|
|
2330
2330
|
padding-top: var(--padding-y-xl);
|
|
2331
2331
|
padding-bottom: var(--padding-y-xl);
|
|
2332
2332
|
}
|
|
2333
|
-
.
|
|
2333
|
+
.global_padding-top-xl {
|
|
2334
2334
|
padding-top: var(--padding-top-xl);
|
|
2335
2335
|
}
|
|
2336
|
-
.
|
|
2336
|
+
.global_padding-right-xl {
|
|
2337
2337
|
padding-right: var(--padding-right-xl);
|
|
2338
2338
|
}
|
|
2339
|
-
.
|
|
2339
|
+
.global_padding-bottom-xl {
|
|
2340
2340
|
padding-bottom: var(--padding-bottom-xl);
|
|
2341
2341
|
}
|
|
2342
|
-
.
|
|
2342
|
+
.global_padding-left-xl {
|
|
2343
2343
|
padding-left: var(--padding-left-xl);
|
|
2344
2344
|
}
|
|
2345
|
-
.
|
|
2345
|
+
.global_margin-xl {
|
|
2346
2346
|
margin: var(--margin-xl);
|
|
2347
2347
|
}
|
|
2348
|
-
.
|
|
2348
|
+
.global_margin-x-xl {
|
|
2349
2349
|
margin-left: var(--margin-x-xl);
|
|
2350
2350
|
margin-right: var(--margin-x-xl);
|
|
2351
2351
|
}
|
|
2352
|
-
.
|
|
2352
|
+
.global_margin-y-xl {
|
|
2353
2353
|
margin-top: var(--margin-y-xl);
|
|
2354
2354
|
margin-bottom: var(--margin-y-xl);
|
|
2355
2355
|
}
|
|
2356
|
-
.
|
|
2356
|
+
.global_margin-top-xl {
|
|
2357
2357
|
margin-top: var(--margin-top-xl);
|
|
2358
2358
|
}
|
|
2359
|
-
.
|
|
2359
|
+
.global_margin-right-xl {
|
|
2360
2360
|
margin-right: var(--margin-right-xl);
|
|
2361
2361
|
}
|
|
2362
|
-
.
|
|
2362
|
+
.global_margin-bottom-xl {
|
|
2363
2363
|
margin-bottom: var(--margin-bottom-xl);
|
|
2364
2364
|
}
|
|
2365
|
-
.
|
|
2365
|
+
.global_margin-left-xl {
|
|
2366
2366
|
margin-left: var(--margin-left-xl);
|
|
2367
2367
|
}
|
|
2368
|
-
.
|
|
2368
|
+
.global_gap-xl {
|
|
2369
2369
|
gap: var(--gap-xl);
|
|
2370
2370
|
}
|
|
2371
|
-
.
|
|
2371
|
+
.global_gap-x-xl {
|
|
2372
2372
|
column-gap: var(--gap-x-xl);
|
|
2373
2373
|
}
|
|
2374
|
-
.
|
|
2374
|
+
.global_gap-y-xl {
|
|
2375
2375
|
row-gap: var(--gap-y-xl);
|
|
2376
2376
|
}
|
|
2377
|
-
.
|
|
2377
|
+
.global_height-xl {
|
|
2378
2378
|
height: var(--height-xl);
|
|
2379
2379
|
}
|
|
2380
|
-
.
|
|
2380
|
+
.global_width-xl {
|
|
2381
2381
|
width: var(--width-xl);
|
|
2382
2382
|
}
|
|
2383
|
-
.
|
|
2383
|
+
.global_min-height-xl {
|
|
2384
2384
|
min-height: var(--min-height-xl);
|
|
2385
2385
|
}
|
|
2386
|
-
.
|
|
2386
|
+
.global_min-width-xl {
|
|
2387
2387
|
max-width: var(--min-width-xl);
|
|
2388
2388
|
}
|
|
2389
|
-
.
|
|
2389
|
+
.global_max-height-xl {
|
|
2390
2390
|
max-height: var(--max-height-xl);
|
|
2391
2391
|
}
|
|
2392
|
-
.
|
|
2392
|
+
.global_flex-direction-xl {
|
|
2393
2393
|
flex-direction: var(--flex-direction-xl);
|
|
2394
2394
|
}
|
|
2395
|
-
.
|
|
2395
|
+
.global_flex-wrap-xl {
|
|
2396
2396
|
flex-wrap: var(--flex-wrap-xl);
|
|
2397
2397
|
}
|
|
2398
|
-
.
|
|
2398
|
+
.global_justify-content-xl {
|
|
2399
2399
|
justify-content: var(--justify-content-xl);
|
|
2400
2400
|
}
|
|
2401
|
-
.
|
|
2401
|
+
.global_justify-items-xl {
|
|
2402
2402
|
justify-items: var(--justify-items-xl);
|
|
2403
2403
|
}
|
|
2404
|
-
.
|
|
2404
|
+
.global_justify-self-xl {
|
|
2405
2405
|
justify-self: var(--justify-self-xl);
|
|
2406
2406
|
}
|
|
2407
|
-
.
|
|
2407
|
+
.global_align-content-xl {
|
|
2408
2408
|
align-content: var(--align-content-xl);
|
|
2409
2409
|
}
|
|
2410
|
-
.
|
|
2410
|
+
.global_align-items-xl {
|
|
2411
2411
|
align-items: var(--align-items-xl);
|
|
2412
2412
|
}
|
|
2413
|
-
.
|
|
2413
|
+
.global_align-self-xl {
|
|
2414
2414
|
align-self: var(--align-self-xl);
|
|
2415
2415
|
}
|
|
2416
|
-
.
|
|
2416
|
+
.global_grid-template-rows-xl {
|
|
2417
2417
|
grid-template-rows: var(--grid-template-rows-xl);
|
|
2418
2418
|
}
|
|
2419
|
-
.
|
|
2419
|
+
.global_grid-template-columns-xl {
|
|
2420
2420
|
grid-template-columns: var(--grid-template-columns-xl);
|
|
2421
2421
|
}
|
|
2422
|
-
.
|
|
2422
|
+
.global_flex-basis-xl {
|
|
2423
2423
|
flex-basis: var(--flex-basis-xl);
|
|
2424
2424
|
}
|
|
2425
|
-
.
|
|
2425
|
+
.global_flex-grow-xl {
|
|
2426
2426
|
flex-basis: var(--flex-grow-xl);
|
|
2427
2427
|
}
|
|
2428
|
-
.
|
|
2428
|
+
.global_flex-shrink-xl {
|
|
2429
2429
|
flex-basis: var(--flex-shrink-xl);
|
|
2430
2430
|
}
|
|
2431
|
-
.
|
|
2431
|
+
.global_overflow-xl {
|
|
2432
2432
|
overflow: var(--overflow-xl);
|
|
2433
2433
|
}
|
|
2434
|
-
.
|
|
2434
|
+
.global_overflow-x-xl {
|
|
2435
2435
|
overflow: var(--overflow-x-xl);
|
|
2436
2436
|
}
|
|
2437
|
-
.
|
|
2437
|
+
.global_overflow-y-xl {
|
|
2438
2438
|
overflow: var(--overflow-y-xl);
|
|
2439
2439
|
}
|
|
2440
|
-
.
|
|
2440
|
+
.global_order-xl {
|
|
2441
2441
|
order: var(--order-xl);
|
|
2442
2442
|
}
|
|
2443
2443
|
}
|
|
2444
2444
|
|
|
2445
|
-
/*
|
|
2446
|
-
.
|
|
2445
|
+
/* src/components/Text.module.css */
|
|
2446
|
+
.Text_text {
|
|
2447
2447
|
color: var(--font-color);
|
|
2448
2448
|
line-height: 1.2em;
|
|
2449
2449
|
}
|
|
2450
|
-
:where(.
|
|
2450
|
+
:where(.Text_text) {
|
|
2451
2451
|
font-size: var(--font-size);
|
|
2452
2452
|
}
|
|
2453
|
-
.
|
|
2453
|
+
.Text_muted {
|
|
2454
2454
|
color: var(--font-muted-color);
|
|
2455
2455
|
}
|
|
2456
|
-
.
|
|
2456
|
+
.Text_faded {
|
|
2457
2457
|
color: var(--font-faded-color);
|
|
2458
2458
|
}
|
|
2459
2459
|
|
|
2460
|
-
/*
|
|
2461
|
-
.
|
|
2460
|
+
/* src/components/forms/Form.module.css */
|
|
2461
|
+
.Form_form {
|
|
2462
2462
|
position: relative;
|
|
2463
2463
|
font-size: var(--font-size);
|
|
2464
2464
|
}
|
|
2465
|
-
.
|
|
2465
|
+
.Form_text {
|
|
2466
2466
|
text-align: center;
|
|
2467
2467
|
margin: auto;
|
|
2468
2468
|
}
|
|
2469
|
-
.
|
|
2469
|
+
.Form_icon {
|
|
2470
2470
|
align-self: flex-start;
|
|
2471
2471
|
}
|
|
2472
|
-
.
|
|
2472
|
+
.Form_error {
|
|
2473
2473
|
margin: 0 auto;
|
|
2474
2474
|
overflow: auto;
|
|
2475
2475
|
}
|
|
2476
2476
|
|
|
2477
|
-
/*
|
|
2478
|
-
.
|
|
2477
|
+
/* src/components/forms/FormField.module.css */
|
|
2478
|
+
.FormField_field {
|
|
2479
2479
|
display: flex;
|
|
2480
2480
|
flex-direction: column;
|
|
2481
2481
|
}
|
|
2482
|
-
.
|
|
2482
|
+
.FormField_description {
|
|
2483
2483
|
line-height: 1.8rem;
|
|
2484
2484
|
font-size: var(--font-size);
|
|
2485
2485
|
}
|
|
2486
|
-
.
|
|
2486
|
+
.FormField_error {
|
|
2487
2487
|
color: var(--danger-color);
|
|
2488
2488
|
line-height: 1.8rem;
|
|
2489
2489
|
font-weight: 600;
|
|
2490
2490
|
}
|
|
2491
2491
|
|
|
2492
|
-
/*
|
|
2493
|
-
.
|
|
2492
|
+
/* src/components/Button.module.css */
|
|
2493
|
+
.Button_button {
|
|
2494
2494
|
display: flex;
|
|
2495
2495
|
align-items: center;
|
|
2496
2496
|
justify-content: center;
|
|
@@ -2508,140 +2508,140 @@ a:hover {
|
|
|
2508
2508
|
cursor: pointer;
|
|
2509
2509
|
line-height: 1;
|
|
2510
2510
|
}
|
|
2511
|
-
.
|
|
2511
|
+
.Button_button:disabled {
|
|
2512
2512
|
color: var(--font-muted-color);
|
|
2513
2513
|
pointer-events: none;
|
|
2514
2514
|
}
|
|
2515
|
-
.
|
|
2515
|
+
.Button_button.Button_primary {
|
|
2516
2516
|
color: var(--primary-font-color);
|
|
2517
2517
|
background: var(--primary-color);
|
|
2518
2518
|
}
|
|
2519
|
-
.
|
|
2519
|
+
.Button_button.Button_primary:hover {
|
|
2520
2520
|
background: color-mix(in srgb, var(--primary-color), 10% var(--background-color));
|
|
2521
2521
|
}
|
|
2522
|
-
.
|
|
2522
|
+
.Button_button.Button_primary:active {
|
|
2523
2523
|
background: color-mix(in srgb, var(--primary-color), 20% var(--background-color));
|
|
2524
2524
|
}
|
|
2525
|
-
.
|
|
2525
|
+
.Button_button.Button_primary:disabled {
|
|
2526
2526
|
color: var(--primary-font-color);
|
|
2527
2527
|
background: var(--base-color-500);
|
|
2528
2528
|
}
|
|
2529
|
-
.
|
|
2529
|
+
.Button_button.Button_secondary {
|
|
2530
2530
|
color: var(--secondary-font-color);
|
|
2531
2531
|
background: var(--secondary-color);
|
|
2532
2532
|
}
|
|
2533
|
-
.
|
|
2533
|
+
.Button_button.Button_secondary:hover {
|
|
2534
2534
|
background: color-mix(in srgb, var(--secondary-color), 5% var(--font-color));
|
|
2535
2535
|
}
|
|
2536
|
-
.
|
|
2536
|
+
.Button_button.Button_secondary:active {
|
|
2537
2537
|
background: color-mix(in srgb, var(--secondary-color), 10% var(--font-color));
|
|
2538
2538
|
}
|
|
2539
|
-
.
|
|
2539
|
+
.Button_button.Button_secondary:disabled {
|
|
2540
2540
|
color: var(--font-faded-color);
|
|
2541
2541
|
}
|
|
2542
|
-
.
|
|
2542
|
+
.Button_button.Button_outline {
|
|
2543
2543
|
background: transparent;
|
|
2544
2544
|
border: var(--border);
|
|
2545
2545
|
box-shadow: var(--box-shadow-1);
|
|
2546
2546
|
}
|
|
2547
|
-
.
|
|
2547
|
+
.Button_button.Button_outline:hover {
|
|
2548
2548
|
background: var(--secondary-color);
|
|
2549
2549
|
}
|
|
2550
|
-
.
|
|
2550
|
+
.Button_button.Button_outline:active {
|
|
2551
2551
|
background: color-mix(in srgb, var(--secondary-color), 5% var(--font-color));
|
|
2552
2552
|
}
|
|
2553
|
-
.
|
|
2553
|
+
.Button_button.Button_quiet {
|
|
2554
2554
|
background: transparent;
|
|
2555
2555
|
}
|
|
2556
|
-
.
|
|
2556
|
+
.Button_button.Button_quiet:hover {
|
|
2557
2557
|
background: var(--secondary-color);
|
|
2558
2558
|
}
|
|
2559
|
-
.
|
|
2559
|
+
.Button_button.Button_quiet:active {
|
|
2560
2560
|
background: color-mix(in srgb, var(--secondary-color), 5% var(--font-color));
|
|
2561
2561
|
}
|
|
2562
|
-
.
|
|
2562
|
+
.Button_button.Button_danger {
|
|
2563
2563
|
color: var(--light-color);
|
|
2564
2564
|
background: var(--danger-color);
|
|
2565
2565
|
}
|
|
2566
|
-
.
|
|
2566
|
+
.Button_button.Button_danger:hover {
|
|
2567
2567
|
background: color-mix(in srgb, var(--danger-color), 6% black);
|
|
2568
2568
|
}
|
|
2569
|
-
.
|
|
2569
|
+
.Button_button.Button_danger:active {
|
|
2570
2570
|
background: color-mix(in srgb, var(--danger-color), 12% black);
|
|
2571
2571
|
}
|
|
2572
|
-
.
|
|
2572
|
+
.Button_button.Button_danger:disabled {
|
|
2573
2573
|
color: var(--primary-font-color);
|
|
2574
2574
|
background: var(--base-color-500);
|
|
2575
2575
|
}
|
|
2576
|
-
.
|
|
2576
|
+
.Button_button.Button_xs {
|
|
2577
2577
|
font-size: .8rem;
|
|
2578
2578
|
padding: 0.5rem 0.75rem;
|
|
2579
2579
|
}
|
|
2580
|
-
.
|
|
2580
|
+
.Button_button.Button_sm {
|
|
2581
2581
|
font-size: .9rem;
|
|
2582
2582
|
padding: 0.5rem 0.75rem;
|
|
2583
2583
|
}
|
|
2584
|
-
.
|
|
2584
|
+
.Button_button.Button_md {
|
|
2585
2585
|
font-size: 1rem;
|
|
2586
2586
|
padding: 0.75rem 1rem;
|
|
2587
2587
|
}
|
|
2588
|
-
.
|
|
2588
|
+
.Button_button.Button_lg {
|
|
2589
2589
|
font-size: 1.1rem;
|
|
2590
2590
|
padding: 1rem 1.25rem;
|
|
2591
2591
|
}
|
|
2592
|
-
.
|
|
2592
|
+
.Button_button.Button_xl {
|
|
2593
2593
|
font-size: 1.3rem;
|
|
2594
2594
|
padding: 1.25rem 1.5rem;
|
|
2595
2595
|
}
|
|
2596
|
-
body a.
|
|
2596
|
+
body a.Button_button {
|
|
2597
2597
|
color: inherit;
|
|
2598
2598
|
text-decoration: none;
|
|
2599
2599
|
}
|
|
2600
2600
|
|
|
2601
|
-
/*
|
|
2602
|
-
.
|
|
2601
|
+
/* src/components/Spinner.module.css */
|
|
2602
|
+
.Spinner_spinner {
|
|
2603
2603
|
position: relative;
|
|
2604
2604
|
display: inline-flex;
|
|
2605
2605
|
justify-content: center;
|
|
2606
2606
|
align-items: center;
|
|
2607
2607
|
}
|
|
2608
|
-
.
|
|
2608
|
+
.Spinner_spinner svg {
|
|
2609
2609
|
fill: none;
|
|
2610
2610
|
font-size: 16px;
|
|
2611
2611
|
stroke-width: 0.15em;
|
|
2612
2612
|
transform-origin: center center;
|
|
2613
|
-
animation:
|
|
2613
|
+
animation: Spinner_spinner-rotate 1.6s linear infinite;
|
|
2614
2614
|
}
|
|
2615
|
-
.
|
|
2615
|
+
.Spinner_track {
|
|
2616
2616
|
stroke: var(--input-background-color);
|
|
2617
2617
|
}
|
|
2618
|
-
.
|
|
2618
|
+
.Spinner_fill {
|
|
2619
2619
|
stroke: var(--primary-color);
|
|
2620
2620
|
stroke-linecap: square;
|
|
2621
2621
|
stroke-dasharray: 1, 200;
|
|
2622
2622
|
stroke-dashoffset: 0;
|
|
2623
|
-
animation:
|
|
2623
|
+
animation: Spinner_spinner-dash 1.2s ease-in-out infinite;
|
|
2624
2624
|
}
|
|
2625
|
-
.
|
|
2625
|
+
.Spinner_size-sm svg {
|
|
2626
2626
|
width: 16px;
|
|
2627
2627
|
height: 16px;
|
|
2628
2628
|
}
|
|
2629
|
-
.
|
|
2629
|
+
.Spinner_size-md svg {
|
|
2630
2630
|
width: 24px;
|
|
2631
2631
|
height: 24px;
|
|
2632
2632
|
}
|
|
2633
|
-
.
|
|
2633
|
+
.Spinner_size-lg svg {
|
|
2634
2634
|
width: 32px;
|
|
2635
2635
|
height: 32px;
|
|
2636
2636
|
}
|
|
2637
|
-
.
|
|
2637
|
+
.Spinner_size-xl svg {
|
|
2638
2638
|
width: 64px;
|
|
2639
2639
|
height: 64px;
|
|
2640
2640
|
}
|
|
2641
|
-
.
|
|
2641
|
+
.Spinner_quiet .Spinner_track {
|
|
2642
2642
|
display: none;
|
|
2643
2643
|
}
|
|
2644
|
-
@keyframes
|
|
2644
|
+
@keyframes Spinner_spinner-rotate {
|
|
2645
2645
|
0% {
|
|
2646
2646
|
transform: rotate(0deg);
|
|
2647
2647
|
}
|
|
@@ -2649,7 +2649,7 @@ body a.Button-module_button__BiD3F {
|
|
|
2649
2649
|
transform: rotate(360deg);
|
|
2650
2650
|
}
|
|
2651
2651
|
}
|
|
2652
|
-
@keyframes
|
|
2652
|
+
@keyframes Spinner_spinner-dash {
|
|
2653
2653
|
0% {
|
|
2654
2654
|
stroke-dasharray: 1, 200;
|
|
2655
2655
|
stroke-dashoffset: 0;
|
|
@@ -2664,8 +2664,8 @@ body a.Button-module_button__BiD3F {
|
|
|
2664
2664
|
}
|
|
2665
2665
|
}
|
|
2666
2666
|
|
|
2667
|
-
/*
|
|
2668
|
-
.
|
|
2667
|
+
/* src/components/Accordion.module.css */
|
|
2668
|
+
.Accordion_accordion {
|
|
2669
2669
|
display: flex;
|
|
2670
2670
|
flex-direction: column;
|
|
2671
2671
|
align-items: flex-start;
|
|
@@ -2674,40 +2674,40 @@ body a.Button-module_button__BiD3F {
|
|
|
2674
2674
|
font-size: var(--font-size);
|
|
2675
2675
|
color: var(--font-color);
|
|
2676
2676
|
}
|
|
2677
|
-
.
|
|
2677
|
+
.Accordion_item {
|
|
2678
2678
|
width: 100%;
|
|
2679
2679
|
cursor: pointer;
|
|
2680
2680
|
}
|
|
2681
|
-
.
|
|
2681
|
+
.Accordion_button {
|
|
2682
2682
|
width: 100%;
|
|
2683
2683
|
display: flex;
|
|
2684
2684
|
align-items: center;
|
|
2685
2685
|
justify-content: space-between;
|
|
2686
2686
|
font-weight: 700;
|
|
2687
2687
|
}
|
|
2688
|
-
.
|
|
2689
|
-
.
|
|
2688
|
+
.Accordion_accordion .Accordion_button,
|
|
2689
|
+
.Accordion_accordion .Accordion_button:hover {
|
|
2690
2690
|
background-color: transparent;
|
|
2691
2691
|
padding: var(--spacing-2) 0;
|
|
2692
2692
|
}
|
|
2693
|
-
.
|
|
2693
|
+
.Accordion_icon {
|
|
2694
2694
|
transition: transform 200ms;
|
|
2695
2695
|
}
|
|
2696
|
-
.
|
|
2696
|
+
.Accordion_item[data-expanded] .Accordion_icon {
|
|
2697
2697
|
transform: rotate(90deg);
|
|
2698
2698
|
}
|
|
2699
|
-
.
|
|
2699
|
+
.Accordion_panel {
|
|
2700
2700
|
overflow: hidden;
|
|
2701
2701
|
max-height: 0;
|
|
2702
2702
|
transition: max-height 0.5s ease-out;
|
|
2703
2703
|
}
|
|
2704
|
-
.
|
|
2704
|
+
.Accordion_panel.Accordion_expanded {
|
|
2705
2705
|
max-height: 500px;
|
|
2706
2706
|
transition: max-height 0.5s ease-out;
|
|
2707
2707
|
}
|
|
2708
2708
|
|
|
2709
|
-
/*
|
|
2710
|
-
.
|
|
2709
|
+
/* src/components/Dialog.module.css */
|
|
2710
|
+
.Dialog_dialog {
|
|
2711
2711
|
position: relative;
|
|
2712
2712
|
padding: var(--spacing-6);
|
|
2713
2713
|
box-shadow: var(--box-shadow-4);
|
|
@@ -2716,87 +2716,87 @@ body a.Button-module_button__BiD3F {
|
|
|
2716
2716
|
border-radius: var(--border-radius);
|
|
2717
2717
|
outline: none;
|
|
2718
2718
|
}
|
|
2719
|
-
.
|
|
2719
|
+
.Dialog_title {
|
|
2720
2720
|
font-size: var(--font-size-lg);
|
|
2721
2721
|
font-weight: 700;
|
|
2722
2722
|
margin-bottom: var(--spacing-3);
|
|
2723
2723
|
}
|
|
2724
2724
|
|
|
2725
|
-
/*
|
|
2726
|
-
.
|
|
2725
|
+
/* src/components/AlertDialog.module.css */
|
|
2726
|
+
.AlertDialog_dialog {
|
|
2727
2727
|
display: grid;
|
|
2728
2728
|
}
|
|
2729
|
-
.
|
|
2729
|
+
.AlertDialog_title {
|
|
2730
2730
|
font-weight: 700;
|
|
2731
2731
|
}
|
|
2732
2732
|
|
|
2733
|
-
/*
|
|
2734
|
-
.
|
|
2733
|
+
/* src/components/Blockquote.module.css */
|
|
2734
|
+
.Blockquote_blockquote {
|
|
2735
2735
|
font-size: var(--font-size);
|
|
2736
2736
|
border-left: 2px solid var(--primary-color);
|
|
2737
2737
|
padding-left: var(--spacing-5);
|
|
2738
2738
|
}
|
|
2739
2739
|
|
|
2740
|
-
/*
|
|
2741
|
-
.
|
|
2740
|
+
/* src/components/Breadcrumbs.module.css */
|
|
2741
|
+
.Breadcrumbs_breadcrumbs {
|
|
2742
2742
|
display: flex;
|
|
2743
2743
|
align-items: center;
|
|
2744
2744
|
gap: var(--gap);
|
|
2745
2745
|
}
|
|
2746
|
-
.
|
|
2746
|
+
.Breadcrumbs_breadcrumb {
|
|
2747
2747
|
display: flex;
|
|
2748
2748
|
align-items: center;
|
|
2749
2749
|
font-size: var(--font-size);
|
|
2750
2750
|
gap: var(--gap);
|
|
2751
2751
|
list-style: none;
|
|
2752
2752
|
}
|
|
2753
|
-
.
|
|
2753
|
+
.Breadcrumbs_breadcrumbs .Breadcrumbs_breadcrumb a {
|
|
2754
2754
|
color: var(--font-muted-color);
|
|
2755
2755
|
text-decoration: none;
|
|
2756
2756
|
font-weight: 400;
|
|
2757
2757
|
padding: var(--padding);
|
|
2758
2758
|
}
|
|
2759
|
-
.
|
|
2759
|
+
.Breadcrumbs_breadcrumbs .Breadcrumbs_breadcrumb a:hover {
|
|
2760
2760
|
color: var(--font-color);
|
|
2761
2761
|
text-decoration: none;
|
|
2762
2762
|
}
|
|
2763
|
-
.
|
|
2763
|
+
.Breadcrumbs_icon {
|
|
2764
2764
|
color: var(--font-muted-color);
|
|
2765
2765
|
}
|
|
2766
|
-
.
|
|
2766
|
+
.Breadcrumbs_breadcrumb:last-child .Breadcrumbs_icon {
|
|
2767
2767
|
display: none;
|
|
2768
2768
|
}
|
|
2769
2769
|
|
|
2770
|
-
/*
|
|
2771
|
-
.
|
|
2770
|
+
/* src/components/Calendar.module.css */
|
|
2771
|
+
.Calendar_calendar {
|
|
2772
2772
|
width: fit-content;
|
|
2773
2773
|
max-width: 100%;
|
|
2774
2774
|
font-size: var(--font-size);
|
|
2775
2775
|
color: var(--font-color);
|
|
2776
2776
|
}
|
|
2777
|
-
.
|
|
2777
|
+
.Calendar_header {
|
|
2778
2778
|
display: flex;
|
|
2779
2779
|
align-items: center;
|
|
2780
2780
|
margin-bottom: var(--spacing-4);
|
|
2781
2781
|
}
|
|
2782
|
-
.
|
|
2782
|
+
.Calendar_calendar .Calendar_heading {
|
|
2783
2783
|
flex: 1;
|
|
2784
2784
|
margin: 0;
|
|
2785
2785
|
text-align: center;
|
|
2786
2786
|
font-size: var(--font-size);
|
|
2787
2787
|
font-weight: 700;
|
|
2788
2788
|
}
|
|
2789
|
-
.
|
|
2789
|
+
.Calendar_button {
|
|
2790
2790
|
display: flex;
|
|
2791
2791
|
align-items: center;
|
|
2792
2792
|
justify-content: center;
|
|
2793
2793
|
border: 0;
|
|
2794
2794
|
background: transparent;
|
|
2795
2795
|
}
|
|
2796
|
-
.
|
|
2796
|
+
.Calendar_headerCell {
|
|
2797
2797
|
font-weight: 700;
|
|
2798
2798
|
}
|
|
2799
|
-
.
|
|
2799
|
+
.Calendar_cell {
|
|
2800
2800
|
width: 3rem;
|
|
2801
2801
|
line-height: 3rem;
|
|
2802
2802
|
text-align: center;
|
|
@@ -2806,25 +2806,25 @@ body a.Button-module_button__BiD3F {
|
|
|
2806
2806
|
margin: var(--gap-xs);
|
|
2807
2807
|
forced-color-adjust: none;
|
|
2808
2808
|
}
|
|
2809
|
-
.
|
|
2809
|
+
.Calendar_cell:hover {
|
|
2810
2810
|
color: var(--highlight-font-color);
|
|
2811
2811
|
background: var(--highlight-color);
|
|
2812
2812
|
}
|
|
2813
|
-
.
|
|
2813
|
+
.Calendar_cell[data-outside-month] {
|
|
2814
2814
|
display: none;
|
|
2815
2815
|
}
|
|
2816
|
-
.
|
|
2816
|
+
.Calendar_cell[data-focus-visible] {
|
|
2817
2817
|
outline: 2px solid var(--font-color);
|
|
2818
2818
|
outline-offset: 2px;
|
|
2819
2819
|
}
|
|
2820
|
-
.
|
|
2820
|
+
.Calendar_cell[data-selected] {
|
|
2821
2821
|
color: var(--primary-font-color);
|
|
2822
2822
|
border-color: var(--primary-color);
|
|
2823
2823
|
background: var(--primary-color);
|
|
2824
2824
|
}
|
|
2825
2825
|
|
|
2826
|
-
/*
|
|
2827
|
-
.
|
|
2826
|
+
/* src/components/Checkbox.module.css */
|
|
2827
|
+
.Checkbox_checkbox {
|
|
2828
2828
|
display: flex;
|
|
2829
2829
|
flex-direction: row;
|
|
2830
2830
|
align-items: center;
|
|
@@ -2832,7 +2832,7 @@ body a.Button-module_button__BiD3F {
|
|
|
2832
2832
|
font-size: var(--font-size);
|
|
2833
2833
|
color: var(--font-color);
|
|
2834
2834
|
}
|
|
2835
|
-
.
|
|
2835
|
+
.Checkbox_box {
|
|
2836
2836
|
display: flex;
|
|
2837
2837
|
align-items: center;
|
|
2838
2838
|
justify-content: center;
|
|
@@ -2845,37 +2845,37 @@ body a.Button-module_button__BiD3F {
|
|
|
2845
2845
|
cursor: pointer;
|
|
2846
2846
|
box-shadow: var(--box-shadow);
|
|
2847
2847
|
}
|
|
2848
|
-
.
|
|
2848
|
+
.Checkbox_icon {
|
|
2849
2849
|
display: none;
|
|
2850
2850
|
}
|
|
2851
|
-
.
|
|
2851
|
+
.Checkbox_checkbox[data-selected] .Checkbox_box {
|
|
2852
2852
|
color: var(--primary-font-color);
|
|
2853
2853
|
background: var(--primary-color);
|
|
2854
2854
|
border-color: var(--primary-color);
|
|
2855
2855
|
}
|
|
2856
|
-
.
|
|
2857
|
-
.
|
|
2856
|
+
.Checkbox_checkbox[data-selected] .Checkbox_icon,
|
|
2857
|
+
.Checkbox_checkbox[data-indeterminate] .Checkbox_icon {
|
|
2858
2858
|
display: block;
|
|
2859
2859
|
}
|
|
2860
|
-
.
|
|
2860
|
+
.Checkbox_checkbox[data-indeterminate] .Checkbox_box {
|
|
2861
2861
|
color: var(--font-color);
|
|
2862
2862
|
background: var(--background-color);
|
|
2863
2863
|
}
|
|
2864
|
-
.
|
|
2864
|
+
.Checkbox_checkbox[data-disabled] {
|
|
2865
2865
|
color: var(--font-muted-color);
|
|
2866
2866
|
}
|
|
2867
|
-
.
|
|
2867
|
+
.Checkbox_checkbox[data-disabled] .Checkbox_box {
|
|
2868
2868
|
background: var(--input-disabled-color);
|
|
2869
2869
|
pointer-events: none;
|
|
2870
2870
|
}
|
|
2871
|
-
.
|
|
2872
|
-
.
|
|
2871
|
+
.Checkbox_checkbox[data-focused] .Checkbox_box,
|
|
2872
|
+
.Checkbox_checkbox[data-focused-visible] .Checkbox_box {
|
|
2873
2873
|
border-color: transparent;
|
|
2874
2874
|
outline: var(--outline);
|
|
2875
2875
|
}
|
|
2876
2876
|
|
|
2877
|
-
/*
|
|
2878
|
-
.
|
|
2877
|
+
/* src/components/Code.module.css */
|
|
2878
|
+
.Code_code {
|
|
2879
2879
|
font-family: var(--font-family-code);
|
|
2880
2880
|
font-size: var(--font-size-2);
|
|
2881
2881
|
font-weight: var(--font-weight-medium);
|
|
@@ -2885,8 +2885,8 @@ body a.Button-module_button__BiD3F {
|
|
|
2885
2885
|
padding: var(--spacing-1);
|
|
2886
2886
|
}
|
|
2887
2887
|
|
|
2888
|
-
/*
|
|
2889
|
-
.
|
|
2888
|
+
/* src/components/ListItem.module.css */
|
|
2889
|
+
.ListItem_item {
|
|
2890
2890
|
display: flex;
|
|
2891
2891
|
align-items: center;
|
|
2892
2892
|
justify-content: space-between;
|
|
@@ -2899,25 +2899,25 @@ body a.Button-module_button__BiD3F {
|
|
|
2899
2899
|
cursor: pointer;
|
|
2900
2900
|
outline: none;
|
|
2901
2901
|
}
|
|
2902
|
-
.
|
|
2903
|
-
.
|
|
2902
|
+
.ListItem_item[data-focus],
|
|
2903
|
+
.ListItem_item[data-focus-visible] {
|
|
2904
2904
|
background: var(--highlight-color);
|
|
2905
2905
|
}
|
|
2906
|
-
.
|
|
2906
|
+
.ListItem_item:hover {
|
|
2907
2907
|
background: var(--highlight-color);
|
|
2908
2908
|
}
|
|
2909
|
-
.
|
|
2909
|
+
.ListItem_item[data-selected] {
|
|
2910
2910
|
font-weight: bold;
|
|
2911
2911
|
}
|
|
2912
|
-
.
|
|
2912
|
+
.ListItem_item[data-selected] .ListItem_check {
|
|
2913
2913
|
display: block;
|
|
2914
2914
|
}
|
|
2915
|
-
.
|
|
2915
|
+
.ListItem_check {
|
|
2916
2916
|
display: none;
|
|
2917
2917
|
}
|
|
2918
2918
|
|
|
2919
|
-
/*
|
|
2920
|
-
.
|
|
2919
|
+
/* src/components/List.module.css */
|
|
2920
|
+
.List_list {
|
|
2921
2921
|
overflow: hidden;
|
|
2922
2922
|
min-width: 100px;
|
|
2923
2923
|
border: var(--border);
|
|
@@ -2925,30 +2925,30 @@ body a.Button-module_button__BiD3F {
|
|
|
2925
2925
|
box-shadow: var(--box-shadow);
|
|
2926
2926
|
outline: none;
|
|
2927
2927
|
}
|
|
2928
|
-
.
|
|
2928
|
+
.List_separator {
|
|
2929
2929
|
border-bottom: var(--border);
|
|
2930
2930
|
}
|
|
2931
2931
|
|
|
2932
|
-
/*
|
|
2933
|
-
.
|
|
2932
|
+
/* src/components/Popover.module.css */
|
|
2933
|
+
.Popover_popover[data-placement=top] {
|
|
2934
2934
|
--origin: translateY(8px);
|
|
2935
2935
|
}
|
|
2936
|
-
.
|
|
2936
|
+
.Popover_popover[data-placement=bottom] {
|
|
2937
2937
|
--origin: translateY(-8px);
|
|
2938
2938
|
}
|
|
2939
|
-
.
|
|
2939
|
+
.Popover_popover[data-placement=right] {
|
|
2940
2940
|
--origin: translateX(-8px);
|
|
2941
2941
|
}
|
|
2942
|
-
.
|
|
2942
|
+
.Popover_popover[data-placement=left] {
|
|
2943
2943
|
--origin: translateX(8px);
|
|
2944
2944
|
}
|
|
2945
|
-
.
|
|
2946
|
-
animation:
|
|
2945
|
+
.Popover_popover[data-entering] {
|
|
2946
|
+
animation: Popover_popover-slide 200ms;
|
|
2947
2947
|
}
|
|
2948
|
-
.
|
|
2949
|
-
animation:
|
|
2948
|
+
.Popover_popover[data-exiting] {
|
|
2949
|
+
animation: Popover_popover-slide 200ms reverse ease-in;
|
|
2950
2950
|
}
|
|
2951
|
-
@keyframes
|
|
2951
|
+
@keyframes Popover_popover-slide {
|
|
2952
2952
|
from {
|
|
2953
2953
|
transform: var(--origin);
|
|
2954
2954
|
opacity: 0;
|
|
@@ -2959,13 +2959,13 @@ body a.Button-module_button__BiD3F {
|
|
|
2959
2959
|
}
|
|
2960
2960
|
}
|
|
2961
2961
|
|
|
2962
|
-
/*
|
|
2963
|
-
.
|
|
2962
|
+
/* src/components/Combobox.module.css */
|
|
2963
|
+
.Combobox_combobox {
|
|
2964
2964
|
display: flex;
|
|
2965
2965
|
align-items: center;
|
|
2966
2966
|
flex-wrap: nowrap;
|
|
2967
2967
|
}
|
|
2968
|
-
.
|
|
2968
|
+
.Combobox_field {
|
|
2969
2969
|
display: flex;
|
|
2970
2970
|
align-items: center;
|
|
2971
2971
|
flex-wrap: nowrap;
|
|
@@ -2974,13 +2974,13 @@ body a.Button-module_button__BiD3F {
|
|
|
2974
2974
|
border-radius: var(--border-radius);
|
|
2975
2975
|
box-shadow: var(--box-shadow);
|
|
2976
2976
|
}
|
|
2977
|
-
.
|
|
2977
|
+
.Combobox_input {
|
|
2978
2978
|
background: none;
|
|
2979
2979
|
border: none;
|
|
2980
2980
|
color: var(--font-color);
|
|
2981
2981
|
padding: var(--padding);
|
|
2982
2982
|
}
|
|
2983
|
-
.
|
|
2983
|
+
.Combobox_button {
|
|
2984
2984
|
display: flex;
|
|
2985
2985
|
align-items: center;
|
|
2986
2986
|
justify-content: center;
|
|
@@ -2988,69 +2988,69 @@ body a.Button-module_button__BiD3F {
|
|
|
2988
2988
|
background: transparent;
|
|
2989
2989
|
color: var(--font-faded-color);
|
|
2990
2990
|
}
|
|
2991
|
-
.
|
|
2991
|
+
.Combobox_list {
|
|
2992
2992
|
box-shadow: var(--box-shadow-3);
|
|
2993
2993
|
}
|
|
2994
|
-
.
|
|
2994
|
+
.Combobox_icon {
|
|
2995
2995
|
color: var(--font-muted-color);
|
|
2996
2996
|
margin-right: var(--spacing-2);
|
|
2997
2997
|
}
|
|
2998
|
-
.
|
|
2998
|
+
.Combobox_icon:hover {
|
|
2999
2999
|
color: var(--font-color);
|
|
3000
3000
|
cursor: pointer;
|
|
3001
3001
|
}
|
|
3002
3002
|
|
|
3003
|
-
/*
|
|
3004
|
-
.
|
|
3003
|
+
/* src/components/Container.module.css */
|
|
3004
|
+
.Container_container {
|
|
3005
3005
|
width: 100%;
|
|
3006
3006
|
padding: 0 1rem;
|
|
3007
3007
|
}
|
|
3008
|
-
.
|
|
3008
|
+
.Container_container.Container_centered {
|
|
3009
3009
|
margin: 0 auto;
|
|
3010
3010
|
}
|
|
3011
|
-
.
|
|
3011
|
+
.Container_container.Container_fluid {
|
|
3012
3012
|
max-width: 100%;
|
|
3013
3013
|
padding: 0;
|
|
3014
3014
|
}
|
|
3015
3015
|
@media (min-width: 520px) {
|
|
3016
|
-
.
|
|
3016
|
+
.Container_container {
|
|
3017
3017
|
max-width: 500px;
|
|
3018
3018
|
}
|
|
3019
3019
|
}
|
|
3020
3020
|
@media (min-width: 768px) {
|
|
3021
|
-
.
|
|
3021
|
+
.Container_container {
|
|
3022
3022
|
max-width: 740px;
|
|
3023
3023
|
}
|
|
3024
3024
|
}
|
|
3025
3025
|
@media (min-width: 1024px) {
|
|
3026
|
-
.
|
|
3026
|
+
.Container_container {
|
|
3027
3027
|
max-width: 1000px;
|
|
3028
3028
|
}
|
|
3029
3029
|
}
|
|
3030
3030
|
@media (min-width: 1280px) {
|
|
3031
|
-
.
|
|
3031
|
+
.Container_container {
|
|
3032
3032
|
max-width: 1240px;
|
|
3033
3033
|
}
|
|
3034
3034
|
}
|
|
3035
3035
|
@media (min-width: 1640px) {
|
|
3036
|
-
.
|
|
3036
|
+
.Container_container {
|
|
3037
3037
|
max-width: 1600px;
|
|
3038
3038
|
}
|
|
3039
3039
|
}
|
|
3040
3040
|
|
|
3041
|
-
/*
|
|
3042
|
-
.
|
|
3041
|
+
/* src/components/Label.module.css */
|
|
3042
|
+
.Label_label {
|
|
3043
3043
|
font-size: var(--font-size);
|
|
3044
3044
|
color: var(--font-color);
|
|
3045
3045
|
font-weight: 700;
|
|
3046
3046
|
line-height: 2;
|
|
3047
3047
|
}
|
|
3048
3048
|
|
|
3049
|
-
/*
|
|
3050
|
-
.
|
|
3051
|
-
animation:
|
|
3049
|
+
/* src/components/CopyButton.module.css */
|
|
3050
|
+
.CopyButton_icon {
|
|
3051
|
+
animation: CopyButton_copy-button 200ms;
|
|
3052
3052
|
}
|
|
3053
|
-
@keyframes
|
|
3053
|
+
@keyframes CopyButton_copy-button {
|
|
3054
3054
|
from {
|
|
3055
3055
|
scale: 0.5;
|
|
3056
3056
|
opacity: 0;
|
|
@@ -3061,19 +3061,19 @@ body a.Button-module_button__BiD3F {
|
|
|
3061
3061
|
}
|
|
3062
3062
|
}
|
|
3063
3063
|
|
|
3064
|
-
/*
|
|
3065
|
-
.
|
|
3064
|
+
/* src/components/styles/input.module.css */
|
|
3065
|
+
.input_field {
|
|
3066
3066
|
min-width: 240px;
|
|
3067
3067
|
}
|
|
3068
|
-
.
|
|
3069
|
-
.
|
|
3068
|
+
.input_field,
|
|
3069
|
+
.input_row {
|
|
3070
3070
|
position: relative;
|
|
3071
3071
|
}
|
|
3072
|
-
.
|
|
3073
|
-
.
|
|
3072
|
+
.input_field[data-readonly] .input_input,
|
|
3073
|
+
.input_field[data-disabled] .input_input {
|
|
3074
3074
|
background: var(--input-disabled-color);
|
|
3075
3075
|
}
|
|
3076
|
-
.
|
|
3076
|
+
.input_input {
|
|
3077
3077
|
font-size: var(--font-size);
|
|
3078
3078
|
color: var(--font-color);
|
|
3079
3079
|
border: var(--border);
|
|
@@ -3084,114 +3084,114 @@ body a.Button-module_button__BiD3F {
|
|
|
3084
3084
|
line-height: 1.5rem;
|
|
3085
3085
|
width: 100%;
|
|
3086
3086
|
}
|
|
3087
|
-
.
|
|
3087
|
+
.input_input:focus {
|
|
3088
3088
|
border-color: transparent;
|
|
3089
3089
|
outline: var(--outline);
|
|
3090
3090
|
}
|
|
3091
|
-
.
|
|
3091
|
+
.input_input::placeholder {
|
|
3092
3092
|
color: var(--font-muted-color);
|
|
3093
3093
|
}
|
|
3094
|
-
.
|
|
3094
|
+
.input_input:disabled {
|
|
3095
3095
|
color: var(--font-muted-color);
|
|
3096
3096
|
}
|
|
3097
|
-
.
|
|
3098
|
-
.
|
|
3097
|
+
.input_input::-webkit-search-cancel-button,
|
|
3098
|
+
.input_input::-webkit-search-decoration {
|
|
3099
3099
|
-webkit-appearance: none;
|
|
3100
3100
|
}
|
|
3101
|
-
.
|
|
3101
|
+
.input_icon {
|
|
3102
3102
|
color: var(--font-muted-color);
|
|
3103
3103
|
background: var(--background-color);
|
|
3104
3104
|
}
|
|
3105
|
-
.
|
|
3105
|
+
.input_icon:hover {
|
|
3106
3106
|
color: var(--font-color);
|
|
3107
3107
|
cursor: pointer;
|
|
3108
3108
|
}
|
|
3109
3109
|
|
|
3110
|
-
/*
|
|
3111
|
-
.
|
|
3110
|
+
/* src/components/TextField.module.css */
|
|
3111
|
+
.TextField_allowCopy {
|
|
3112
3112
|
padding-right: 32px;
|
|
3113
3113
|
}
|
|
3114
|
-
.
|
|
3114
|
+
.TextField_icon {
|
|
3115
3115
|
position: absolute;
|
|
3116
3116
|
top: var(--padding-y);
|
|
3117
3117
|
right: var(--padding-x);
|
|
3118
3118
|
}
|
|
3119
3119
|
|
|
3120
|
-
/*
|
|
3121
|
-
.
|
|
3120
|
+
/* src/components/ConfirmationDialog.module.css */
|
|
3121
|
+
.ConfirmationDialog_dialog {
|
|
3122
3122
|
position: relative;
|
|
3123
3123
|
}
|
|
3124
|
-
.
|
|
3124
|
+
.ConfirmationDialog_value {
|
|
3125
3125
|
font-size: var(--font-size-lg);
|
|
3126
3126
|
font-weight: 700;
|
|
3127
3127
|
}
|
|
3128
3128
|
|
|
3129
|
-
/*
|
|
3130
|
-
.
|
|
3129
|
+
/* src/components/Table.module.css */
|
|
3130
|
+
.Table_table {
|
|
3131
3131
|
font-size: var(--font-size);
|
|
3132
3132
|
color: var(--font-color);
|
|
3133
3133
|
border-collapse: collapse;
|
|
3134
3134
|
width: 100%;
|
|
3135
3135
|
position: relative;
|
|
3136
3136
|
}
|
|
3137
|
-
.
|
|
3138
|
-
.
|
|
3137
|
+
.Table_table th,
|
|
3138
|
+
.Table_table td {
|
|
3139
3139
|
min-width: 0;
|
|
3140
3140
|
}
|
|
3141
|
-
.
|
|
3142
|
-
.
|
|
3141
|
+
.Table_header,
|
|
3142
|
+
.Table_body {
|
|
3143
3143
|
display: contents;
|
|
3144
3144
|
}
|
|
3145
|
-
.
|
|
3145
|
+
.Table_header tr {
|
|
3146
3146
|
display: flex;
|
|
3147
3147
|
border-bottom: 1px solid var(--border-color);
|
|
3148
3148
|
}
|
|
3149
|
-
.
|
|
3149
|
+
.Table_row {
|
|
3150
3150
|
display: flex;
|
|
3151
3151
|
border-bottom: 1px solid color-mix(in srgb, var(--border-color), 50% transparent);
|
|
3152
3152
|
}
|
|
3153
|
-
.
|
|
3154
|
-
.
|
|
3153
|
+
.Table_header .Table_column:first-child,
|
|
3154
|
+
.Table_row .Table_cell:first-child {
|
|
3155
3155
|
padding-left: 0;
|
|
3156
3156
|
}
|
|
3157
|
-
.
|
|
3158
|
-
.
|
|
3157
|
+
.Table_header .Table_column:last-child,
|
|
3158
|
+
.Table_row .Table_cell:last-child {
|
|
3159
3159
|
padding-right: 0;
|
|
3160
3160
|
}
|
|
3161
|
-
.
|
|
3161
|
+
.Table_column {
|
|
3162
3162
|
display: flex;
|
|
3163
3163
|
padding: var(--padding);
|
|
3164
3164
|
text-align: left;
|
|
3165
3165
|
font-weight: 700;
|
|
3166
3166
|
flex: 1;
|
|
3167
3167
|
}
|
|
3168
|
-
.
|
|
3168
|
+
.Table_cell {
|
|
3169
3169
|
display: flex;
|
|
3170
3170
|
padding: var(--padding);
|
|
3171
3171
|
flex: 1;
|
|
3172
3172
|
}
|
|
3173
|
-
.
|
|
3173
|
+
.Table_start {
|
|
3174
3174
|
justify-content: flex-start;
|
|
3175
3175
|
}
|
|
3176
|
-
.
|
|
3176
|
+
.Table_center {
|
|
3177
3177
|
justify-content: center;
|
|
3178
3178
|
}
|
|
3179
|
-
.
|
|
3179
|
+
.Table_end {
|
|
3180
3180
|
justify-content: flex-end;
|
|
3181
3181
|
}
|
|
3182
3182
|
|
|
3183
|
-
/*
|
|
3184
|
-
.
|
|
3183
|
+
/* src/components/DataTable.module.css */
|
|
3184
|
+
.DataTable_datatable {
|
|
3185
3185
|
position: relative;
|
|
3186
3186
|
font-size: var(--font-size);
|
|
3187
3187
|
color: var(--font-color);
|
|
3188
3188
|
}
|
|
3189
|
-
.
|
|
3189
|
+
.DataTable_cell {
|
|
3190
3190
|
align-items: center;
|
|
3191
3191
|
}
|
|
3192
3192
|
|
|
3193
|
-
/*
|
|
3194
|
-
.
|
|
3193
|
+
/* src/components/Dots.module.css */
|
|
3194
|
+
.Dots_dots {
|
|
3195
3195
|
position: relative;
|
|
3196
3196
|
display: inline-flex;
|
|
3197
3197
|
justify-content: center;
|
|
@@ -3199,21 +3199,21 @@ body a.Button-module_button__BiD3F {
|
|
|
3199
3199
|
min-height: 50px;
|
|
3200
3200
|
gap: 8px;
|
|
3201
3201
|
}
|
|
3202
|
-
.
|
|
3202
|
+
.Dots_dot {
|
|
3203
3203
|
width: 10px;
|
|
3204
3204
|
height: 10px;
|
|
3205
3205
|
border-radius: 100%;
|
|
3206
3206
|
background: color-mix(in srgb, var(--font-color), 50% transparent);
|
|
3207
|
-
animation:
|
|
3207
|
+
animation: Dots_dots-blink 1.2s infinite;
|
|
3208
3208
|
animation-fill-mode: both;
|
|
3209
3209
|
}
|
|
3210
|
-
.
|
|
3210
|
+
.Dots_dot:nth-child(2) {
|
|
3211
3211
|
animation-delay: 0.2s;
|
|
3212
3212
|
}
|
|
3213
|
-
.
|
|
3213
|
+
.Dots_dot:nth-child(3) {
|
|
3214
3214
|
animation-delay: 0.4s;
|
|
3215
3215
|
}
|
|
3216
|
-
@keyframes
|
|
3216
|
+
@keyframes Dots_dots-blink {
|
|
3217
3217
|
0% {
|
|
3218
3218
|
opacity: 0.2;
|
|
3219
3219
|
}
|
|
@@ -3225,20 +3225,20 @@ body a.Button-module_button__BiD3F {
|
|
|
3225
3225
|
}
|
|
3226
3226
|
}
|
|
3227
3227
|
|
|
3228
|
-
/*
|
|
3229
|
-
.
|
|
3228
|
+
/* src/components/Heading.module.css */
|
|
3229
|
+
.Heading_heading {
|
|
3230
3230
|
color: var(--font-color);
|
|
3231
3231
|
font-weight: var(--font-weight-bold);
|
|
3232
3232
|
}
|
|
3233
3233
|
|
|
3234
|
-
/*
|
|
3235
|
-
.
|
|
3234
|
+
/* src/components/HoverTrigger.module.css */
|
|
3235
|
+
.HoverTrigger_wrapper {
|
|
3236
3236
|
transform: translateY(-10px);
|
|
3237
3237
|
border-top: 10px solid transparent;
|
|
3238
3238
|
}
|
|
3239
3239
|
|
|
3240
|
-
/*
|
|
3241
|
-
.
|
|
3240
|
+
/* src/components/InlineEditField.module.css */
|
|
3241
|
+
.InlineEditField_edit {
|
|
3242
3242
|
font-size: var(--font-size);
|
|
3243
3243
|
color: var(--font-color);
|
|
3244
3244
|
display: flex;
|
|
@@ -3246,17 +3246,17 @@ body a.Button-module_button__BiD3F {
|
|
|
3246
3246
|
position: relative;
|
|
3247
3247
|
cursor: pointer;
|
|
3248
3248
|
}
|
|
3249
|
-
.
|
|
3249
|
+
.InlineEditField_edit:hover .InlineEditField_icon {
|
|
3250
3250
|
display: block;
|
|
3251
3251
|
}
|
|
3252
|
-
.
|
|
3252
|
+
.InlineEditField_icon {
|
|
3253
3253
|
display: none;
|
|
3254
3254
|
right: calc(-1 * var(--spacing-5));
|
|
3255
3255
|
position: absolute;
|
|
3256
3256
|
}
|
|
3257
3257
|
|
|
3258
|
-
/*
|
|
3259
|
-
.
|
|
3258
|
+
/* src/components/Loading.module.css */
|
|
3259
|
+
.Loading_loading {
|
|
3260
3260
|
position: relative;
|
|
3261
3261
|
display: flex;
|
|
3262
3262
|
justify-content: center;
|
|
@@ -3264,7 +3264,7 @@ body a.Button-module_button__BiD3F {
|
|
|
3264
3264
|
flex: 1;
|
|
3265
3265
|
pointer-events: none;
|
|
3266
3266
|
}
|
|
3267
|
-
.
|
|
3267
|
+
.Loading_page {
|
|
3268
3268
|
position: absolute;
|
|
3269
3269
|
top: 0;
|
|
3270
3270
|
left: 0;
|
|
@@ -3272,15 +3272,15 @@ body a.Button-module_button__BiD3F {
|
|
|
3272
3272
|
bottom: 0;
|
|
3273
3273
|
margin: auto;
|
|
3274
3274
|
}
|
|
3275
|
-
.
|
|
3275
|
+
.Loading_center {
|
|
3276
3276
|
margin: auto;
|
|
3277
3277
|
}
|
|
3278
|
-
.
|
|
3278
|
+
.Loading_inline {
|
|
3279
3279
|
display: inline-flex;
|
|
3280
3280
|
}
|
|
3281
3281
|
|
|
3282
|
-
/*
|
|
3283
|
-
.
|
|
3282
|
+
/* src/components/MenuItem.module.css */
|
|
3283
|
+
.MenuItem_item {
|
|
3284
3284
|
display: flex;
|
|
3285
3285
|
align-items: center;
|
|
3286
3286
|
justify-content: space-between;
|
|
@@ -3293,21 +3293,21 @@ body a.Button-module_button__BiD3F {
|
|
|
3293
3293
|
cursor: pointer;
|
|
3294
3294
|
outline: none;
|
|
3295
3295
|
}
|
|
3296
|
-
.
|
|
3296
|
+
.MenuItem_item:hover {
|
|
3297
3297
|
background: var(--highlight-color);
|
|
3298
3298
|
}
|
|
3299
|
-
.
|
|
3299
|
+
.MenuItem_item[data-selected] {
|
|
3300
3300
|
font-weight: bold;
|
|
3301
3301
|
}
|
|
3302
|
-
.
|
|
3302
|
+
.MenuItem_item[data-selected] .MenuItem_check {
|
|
3303
3303
|
display: block;
|
|
3304
3304
|
}
|
|
3305
|
-
.
|
|
3305
|
+
.MenuItem_check {
|
|
3306
3306
|
display: none;
|
|
3307
3307
|
}
|
|
3308
3308
|
|
|
3309
|
-
/*
|
|
3310
|
-
.
|
|
3309
|
+
/* src/components/Menu.module.css */
|
|
3310
|
+
.Menu_menu {
|
|
3311
3311
|
overflow: hidden;
|
|
3312
3312
|
min-width: 200px;
|
|
3313
3313
|
border: var(--border);
|
|
@@ -3316,12 +3316,12 @@ body a.Button-module_button__BiD3F {
|
|
|
3316
3316
|
box-shadow: var(--box-shadow);
|
|
3317
3317
|
background: var(--background-color);
|
|
3318
3318
|
}
|
|
3319
|
-
.
|
|
3319
|
+
.Menu_separator {
|
|
3320
3320
|
border-bottom: var(--border);
|
|
3321
3321
|
}
|
|
3322
3322
|
|
|
3323
|
-
/*
|
|
3324
|
-
.
|
|
3323
|
+
/* src/components/Modal.module.css */
|
|
3324
|
+
.Modal_overlay {
|
|
3325
3325
|
position: fixed;
|
|
3326
3326
|
top: 0;
|
|
3327
3327
|
left: 0;
|
|
@@ -3332,19 +3332,19 @@ body a.Button-module_button__BiD3F {
|
|
|
3332
3332
|
align-items: center;
|
|
3333
3333
|
justify-content: center;
|
|
3334
3334
|
}
|
|
3335
|
-
.
|
|
3336
|
-
animation:
|
|
3335
|
+
.Modal_overlay[data-entering] {
|
|
3336
|
+
animation: Modal_modal-fade 200ms;
|
|
3337
3337
|
}
|
|
3338
|
-
.
|
|
3339
|
-
animation:
|
|
3338
|
+
.Modal_overlay[data-exiting] {
|
|
3339
|
+
animation: Modal_modal-fade 150ms reverse ease-in;
|
|
3340
3340
|
}
|
|
3341
|
-
.
|
|
3341
|
+
.Modal_modal {
|
|
3342
3342
|
position: relative;
|
|
3343
3343
|
}
|
|
3344
|
-
.
|
|
3345
|
-
animation:
|
|
3344
|
+
.Modal_modal[data-entering] {
|
|
3345
|
+
animation: Modal_modal-zoom 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
3346
3346
|
}
|
|
3347
|
-
@keyframes
|
|
3347
|
+
@keyframes Modal_modal-fade {
|
|
3348
3348
|
from {
|
|
3349
3349
|
opacity: 0;
|
|
3350
3350
|
}
|
|
@@ -3352,7 +3352,7 @@ body a.Button-module_button__BiD3F {
|
|
|
3352
3352
|
opacity: 1;
|
|
3353
3353
|
}
|
|
3354
3354
|
}
|
|
3355
|
-
@keyframes
|
|
3355
|
+
@keyframes Modal_modal-zoom {
|
|
3356
3356
|
from {
|
|
3357
3357
|
transform: scale(0.8);
|
|
3358
3358
|
}
|
|
@@ -3361,15 +3361,15 @@ body a.Button-module_button__BiD3F {
|
|
|
3361
3361
|
}
|
|
3362
3362
|
}
|
|
3363
3363
|
|
|
3364
|
-
/*
|
|
3365
|
-
.
|
|
3364
|
+
/* src/components/NavigationMenu.module.css */
|
|
3365
|
+
.NavigationMenu_nav {
|
|
3366
3366
|
display: flex;
|
|
3367
3367
|
align-items: center;
|
|
3368
3368
|
font-size: var(--font-size);
|
|
3369
3369
|
color: var(--font-color);
|
|
3370
3370
|
gap: var(--gap-lg);
|
|
3371
3371
|
}
|
|
3372
|
-
.
|
|
3372
|
+
.NavigationMenu_item {
|
|
3373
3373
|
display: flex;
|
|
3374
3374
|
align-items: center;
|
|
3375
3375
|
gap: var(--gap);
|
|
@@ -3378,33 +3378,33 @@ body a.Button-module_button__BiD3F {
|
|
|
3378
3378
|
font-weight: 700;
|
|
3379
3379
|
cursor: default;
|
|
3380
3380
|
}
|
|
3381
|
-
.
|
|
3381
|
+
.NavigationMenu_item:hover {
|
|
3382
3382
|
background: var(--highlight-color);
|
|
3383
3383
|
}
|
|
3384
|
-
.
|
|
3385
|
-
.
|
|
3384
|
+
.NavigationMenu_nav .NavigationMenu_item > a,
|
|
3385
|
+
.NavigationMenu_nav .NavigationMenu_item > a:hover {
|
|
3386
3386
|
color: var(--font-color);
|
|
3387
3387
|
text-decoration: none;
|
|
3388
3388
|
}
|
|
3389
|
-
.
|
|
3389
|
+
.NavigationMenu_icon {
|
|
3390
3390
|
color: var(--font-muted-color);
|
|
3391
3391
|
}
|
|
3392
3392
|
|
|
3393
|
-
/*
|
|
3394
|
-
.
|
|
3393
|
+
/* src/components/PasswordField.module.css */
|
|
3394
|
+
.PasswordField_icon {
|
|
3395
3395
|
position: absolute;
|
|
3396
3396
|
top: 12px;
|
|
3397
3397
|
right: 9px;
|
|
3398
3398
|
}
|
|
3399
3399
|
|
|
3400
|
-
/*
|
|
3401
|
-
.
|
|
3400
|
+
/* src/components/ProgressBar.module.css */
|
|
3401
|
+
.ProgressBar_progressbar {
|
|
3402
3402
|
display: flex;
|
|
3403
3403
|
align-items: center;
|
|
3404
3404
|
justify-content: space-between;
|
|
3405
3405
|
gap: var(--spacing-3);
|
|
3406
3406
|
}
|
|
3407
|
-
.
|
|
3407
|
+
.ProgressBar_track {
|
|
3408
3408
|
height: 10px;
|
|
3409
3409
|
background: var(--input-background-color);
|
|
3410
3410
|
flex-basis: 100%;
|
|
@@ -3413,35 +3413,35 @@ body a.Button-module_button__BiD3F {
|
|
|
3413
3413
|
overflow: hidden;
|
|
3414
3414
|
min-width: 100px;
|
|
3415
3415
|
}
|
|
3416
|
-
.
|
|
3416
|
+
.ProgressBar_fill {
|
|
3417
3417
|
background: var(--primary-color);
|
|
3418
3418
|
height: 10px;
|
|
3419
3419
|
}
|
|
3420
|
-
.
|
|
3420
|
+
.ProgressBar_value {
|
|
3421
3421
|
font-weight: 700;
|
|
3422
3422
|
}
|
|
3423
3423
|
|
|
3424
|
-
/*
|
|
3425
|
-
.
|
|
3424
|
+
/* src/components/ProgressCircle.module.css */
|
|
3425
|
+
.ProgressCircle_progresscircle {
|
|
3426
3426
|
position: relative;
|
|
3427
3427
|
display: flex;
|
|
3428
3428
|
justify-content: center;
|
|
3429
3429
|
align-items: center;
|
|
3430
3430
|
}
|
|
3431
|
-
.
|
|
3431
|
+
.ProgressCircle_progresscircle svg {
|
|
3432
3432
|
fill: none;
|
|
3433
3433
|
stroke-width: 8px;
|
|
3434
3434
|
transform: rotate(-90deg);
|
|
3435
3435
|
width: 96px;
|
|
3436
3436
|
height: 96px;
|
|
3437
3437
|
}
|
|
3438
|
-
.
|
|
3438
|
+
.ProgressCircle_track {
|
|
3439
3439
|
stroke: var(--input-background-color);
|
|
3440
3440
|
}
|
|
3441
|
-
.
|
|
3441
|
+
.ProgressCircle_fill {
|
|
3442
3442
|
stroke: var(--primary-color);
|
|
3443
3443
|
}
|
|
3444
|
-
.
|
|
3444
|
+
.ProgressCircle_value {
|
|
3445
3445
|
font-size: var(--font-size);
|
|
3446
3446
|
color: var(--font-color);
|
|
3447
3447
|
font-weight: 700;
|
|
@@ -3451,27 +3451,27 @@ body a.Button-module_button__BiD3F {
|
|
|
3451
3451
|
transform: translate(-50%, -50%);
|
|
3452
3452
|
}
|
|
3453
3453
|
|
|
3454
|
-
/*
|
|
3455
|
-
.
|
|
3454
|
+
/* src/components/RadioGroup.module.css */
|
|
3455
|
+
.RadioGroup_radiogroup {
|
|
3456
3456
|
display: flex;
|
|
3457
3457
|
flex-direction: column;
|
|
3458
3458
|
gap: var(--spacing-4);
|
|
3459
3459
|
font-size: var(--font-size);
|
|
3460
3460
|
color: var(--font-color);
|
|
3461
3461
|
}
|
|
3462
|
-
.
|
|
3462
|
+
.RadioGroup_radiogroup[data-orientation=vertical] {
|
|
3463
3463
|
flex-direction: column;
|
|
3464
3464
|
}
|
|
3465
|
-
.
|
|
3465
|
+
.RadioGroup_radiogroup[data-orientation=horizontal] {
|
|
3466
3466
|
flex-direction: row;
|
|
3467
3467
|
}
|
|
3468
|
-
.
|
|
3468
|
+
.RadioGroup_radio {
|
|
3469
3469
|
display: flex;
|
|
3470
3470
|
align-items: center;
|
|
3471
3471
|
gap: var(--spacing-3);
|
|
3472
3472
|
forced-color-adjust: none;
|
|
3473
3473
|
}
|
|
3474
|
-
.
|
|
3474
|
+
.RadioGroup_radio:before {
|
|
3475
3475
|
content: "";
|
|
3476
3476
|
display: block;
|
|
3477
3477
|
width: 20px;
|
|
@@ -3483,34 +3483,34 @@ body a.Button-module_button__BiD3F {
|
|
|
3483
3483
|
transition: all 200ms;
|
|
3484
3484
|
box-shadow: var(--box-shadow);
|
|
3485
3485
|
}
|
|
3486
|
-
.
|
|
3486
|
+
.RadioGroup_radio[data-pressed]:before {
|
|
3487
3487
|
border-color: var(--border-color);
|
|
3488
3488
|
}
|
|
3489
|
-
.
|
|
3489
|
+
.RadioGroup_radio[data-selected]:before {
|
|
3490
3490
|
border-color: var(--primary-color);
|
|
3491
3491
|
border-width: 7px;
|
|
3492
3492
|
}
|
|
3493
|
-
.
|
|
3493
|
+
.RadioGroup_radio[data-selected][data-pressed]:before {
|
|
3494
3494
|
border-color: var(--primary-color);
|
|
3495
3495
|
}
|
|
3496
|
-
.
|
|
3496
|
+
.RadioGroup_radio[data-disabled] {
|
|
3497
3497
|
color: var(--font-muted-color);
|
|
3498
3498
|
}
|
|
3499
|
-
.
|
|
3499
|
+
.RadioGroup_radio[data-disabled]:before {
|
|
3500
3500
|
background-color: var(--input-disabled-color);
|
|
3501
3501
|
}
|
|
3502
3502
|
|
|
3503
|
-
/*
|
|
3504
|
-
.
|
|
3503
|
+
/* src/components/SearchField.module.css */
|
|
3504
|
+
.SearchField_search {
|
|
3505
3505
|
position: absolute;
|
|
3506
3506
|
top: 12px;
|
|
3507
3507
|
left: 9px;
|
|
3508
3508
|
}
|
|
3509
|
-
.
|
|
3509
|
+
.SearchField_input {
|
|
3510
3510
|
padding-left: 28px;
|
|
3511
3511
|
padding-right: 24px;
|
|
3512
3512
|
}
|
|
3513
|
-
.
|
|
3513
|
+
.SearchField_close {
|
|
3514
3514
|
position: absolute;
|
|
3515
3515
|
top: 9px;
|
|
3516
3516
|
right: 0;
|
|
@@ -3521,8 +3521,8 @@ body a.Button-module_button__BiD3F {
|
|
|
3521
3521
|
margin: 0 var(--spacing-2);
|
|
3522
3522
|
}
|
|
3523
3523
|
|
|
3524
|
-
/*
|
|
3525
|
-
.
|
|
3524
|
+
/* src/components/Select.module.css */
|
|
3525
|
+
.Select_button {
|
|
3526
3526
|
display: flex;
|
|
3527
3527
|
align-items: center;
|
|
3528
3528
|
font-size: var(--font-size);
|
|
@@ -3534,38 +3534,38 @@ body a.Button-module_button__BiD3F {
|
|
|
3534
3534
|
background: var(--background-color);
|
|
3535
3535
|
cursor: pointer;
|
|
3536
3536
|
}
|
|
3537
|
-
.
|
|
3537
|
+
.Select_list {
|
|
3538
3538
|
min-width: 200px;
|
|
3539
3539
|
box-shadow: var(--box-shadow-3);
|
|
3540
3540
|
}
|
|
3541
|
-
.
|
|
3541
|
+
.Select_icon {
|
|
3542
3542
|
color: var(--font-faded-color);
|
|
3543
3543
|
}
|
|
3544
|
-
.
|
|
3544
|
+
.Select_icon:hover {
|
|
3545
3545
|
color: var(--font-color);
|
|
3546
3546
|
cursor: pointer;
|
|
3547
3547
|
}
|
|
3548
3548
|
|
|
3549
|
-
/*
|
|
3550
|
-
.
|
|
3549
|
+
/* src/components/Slider.module.css */
|
|
3550
|
+
.Slider_slider {
|
|
3551
3551
|
font-size: var(--font-size);
|
|
3552
3552
|
color: var(--font-color);
|
|
3553
3553
|
}
|
|
3554
|
-
.
|
|
3554
|
+
.Slider_header {
|
|
3555
3555
|
display: flex;
|
|
3556
3556
|
align-items: center;
|
|
3557
3557
|
justify-content: space-between;
|
|
3558
3558
|
}
|
|
3559
|
-
.
|
|
3559
|
+
.Slider_track {
|
|
3560
3560
|
position: relative;
|
|
3561
3561
|
}
|
|
3562
|
-
.
|
|
3562
|
+
.Slider_track:before {
|
|
3563
3563
|
content: "";
|
|
3564
3564
|
display: block;
|
|
3565
3565
|
position: absolute;
|
|
3566
3566
|
background: var(--border-color);
|
|
3567
3567
|
}
|
|
3568
|
-
.
|
|
3568
|
+
.Slider_fill {
|
|
3569
3569
|
content: "";
|
|
3570
3570
|
display: block;
|
|
3571
3571
|
position: absolute;
|
|
@@ -3574,7 +3574,7 @@ body a.Button-module_button__BiD3F {
|
|
|
3574
3574
|
top: 50%;
|
|
3575
3575
|
transform: translateY(-50%);
|
|
3576
3576
|
}
|
|
3577
|
-
.
|
|
3577
|
+
.Slider_thumb {
|
|
3578
3578
|
width: 20px;
|
|
3579
3579
|
height: 20px;
|
|
3580
3580
|
border-radius: 100%;
|
|
@@ -3582,34 +3582,34 @@ body a.Button-module_button__BiD3F {
|
|
|
3582
3582
|
border: 2px solid var(--primary-color);
|
|
3583
3583
|
forced-color-adjust: none;
|
|
3584
3584
|
}
|
|
3585
|
-
.
|
|
3585
|
+
.Slider_thumb[data-dragging] {
|
|
3586
3586
|
background: var(--highlight-color);
|
|
3587
3587
|
}
|
|
3588
|
-
.
|
|
3588
|
+
.Slider_thumb[data-focus-visible] {
|
|
3589
3589
|
outline: 2px solid var(--font-color);
|
|
3590
3590
|
}
|
|
3591
|
-
.
|
|
3591
|
+
.Slider_slider[data-orientation=horizontal] {
|
|
3592
3592
|
flex-direction: column;
|
|
3593
3593
|
width: 100%;
|
|
3594
3594
|
}
|
|
3595
|
-
.
|
|
3595
|
+
.Slider_slider[data-orientation=horizontal] .Slider_track {
|
|
3596
3596
|
height: 30px;
|
|
3597
3597
|
margin: 0 10px;
|
|
3598
3598
|
}
|
|
3599
|
-
.
|
|
3599
|
+
.Slider_slider[data-orientation=horizontal] .Slider_track:before {
|
|
3600
3600
|
height: 3px;
|
|
3601
3601
|
width: 100%;
|
|
3602
3602
|
top: 50%;
|
|
3603
3603
|
transform: translateY(-50%);
|
|
3604
3604
|
}
|
|
3605
|
-
.
|
|
3605
|
+
.Slider_slider[data-orientation=horizontal] .Slider_thumb {
|
|
3606
3606
|
top: 50%;
|
|
3607
3607
|
}
|
|
3608
|
-
.
|
|
3608
|
+
.Slider_slider[data-orientation=vertical] {
|
|
3609
3609
|
height: 150px;
|
|
3610
3610
|
display: block;
|
|
3611
3611
|
}
|
|
3612
|
-
.
|
|
3612
|
+
.Slider_slider[data-orientation=vertical] .Slider_fill {
|
|
3613
3613
|
content: "";
|
|
3614
3614
|
display: block;
|
|
3615
3615
|
position: absolute;
|
|
@@ -3619,58 +3619,58 @@ body a.Button-module_button__BiD3F {
|
|
|
3619
3619
|
transform: translateX(-50%);
|
|
3620
3620
|
top: 0;
|
|
3621
3621
|
}
|
|
3622
|
-
.
|
|
3622
|
+
.Slider_slider[data-orientation=vertical] .Slider_header {
|
|
3623
3623
|
display: none;
|
|
3624
3624
|
}
|
|
3625
|
-
.
|
|
3625
|
+
.Slider_slider[data-orientation=vertical] .Slider_track {
|
|
3626
3626
|
width: 30px;
|
|
3627
3627
|
height: 100%;
|
|
3628
3628
|
}
|
|
3629
|
-
.
|
|
3629
|
+
.Slider_slider[data-orientation=vertical] .Slider_track:before {
|
|
3630
3630
|
width: 3px;
|
|
3631
3631
|
height: 100%;
|
|
3632
3632
|
background-color: var(--primary-color);
|
|
3633
3633
|
left: 50%;
|
|
3634
3634
|
transform: translateX(-50%);
|
|
3635
3635
|
}
|
|
3636
|
-
.
|
|
3636
|
+
.Slider_slider[data-orientation=vertical] .Slider_thumb {
|
|
3637
3637
|
left: 50%;
|
|
3638
3638
|
}
|
|
3639
3639
|
|
|
3640
|
-
/*
|
|
3641
|
-
.
|
|
3640
|
+
/* src/components/StatusLight.module.css */
|
|
3641
|
+
.StatusLight_statuslight {
|
|
3642
3642
|
font-size: var(--font-size);
|
|
3643
3643
|
color: var(--font-color);
|
|
3644
3644
|
display: inline-flex;
|
|
3645
3645
|
align-items: center;
|
|
3646
3646
|
gap: 12px;
|
|
3647
3647
|
}
|
|
3648
|
-
.
|
|
3649
|
-
.
|
|
3648
|
+
.StatusLight_status,
|
|
3649
|
+
.StatusLight_bg {
|
|
3650
3650
|
width: 10px;
|
|
3651
3651
|
height: 10px;
|
|
3652
3652
|
border-radius: 100%;
|
|
3653
3653
|
background: #fff;
|
|
3654
3654
|
position: relative;
|
|
3655
3655
|
}
|
|
3656
|
-
.
|
|
3656
|
+
.StatusLight_status.StatusLight_success {
|
|
3657
3657
|
background: var(--success-color);
|
|
3658
3658
|
}
|
|
3659
|
-
.
|
|
3659
|
+
.StatusLight_status.StatusLight_warning {
|
|
3660
3660
|
background: var(--warning-color);
|
|
3661
3661
|
}
|
|
3662
|
-
.
|
|
3662
|
+
.StatusLight_status.StatusLight_error {
|
|
3663
3663
|
background: var(--danger-color);
|
|
3664
3664
|
}
|
|
3665
|
-
.
|
|
3665
|
+
.StatusLight_status.StatusLight_active {
|
|
3666
3666
|
background: var(--active-color);
|
|
3667
3667
|
}
|
|
3668
|
-
.
|
|
3668
|
+
.StatusLight_status.StatusLight_inactive {
|
|
3669
3669
|
background: var(--inactive-color);
|
|
3670
3670
|
}
|
|
3671
3671
|
|
|
3672
|
-
/*
|
|
3673
|
-
.
|
|
3672
|
+
/* src/components/Switch.module.css */
|
|
3673
|
+
.Switch_switch {
|
|
3674
3674
|
position: relative;
|
|
3675
3675
|
display: flex;
|
|
3676
3676
|
align-items: center;
|
|
@@ -3680,7 +3680,7 @@ body a.Button-module_button__BiD3F {
|
|
|
3680
3680
|
--knob-size: 16px;
|
|
3681
3681
|
--knob-border-size: 3px;
|
|
3682
3682
|
}
|
|
3683
|
-
.
|
|
3683
|
+
.Switch_track {
|
|
3684
3684
|
position: relative;
|
|
3685
3685
|
display: flex;
|
|
3686
3686
|
align-items: center;
|
|
@@ -3692,7 +3692,7 @@ body a.Button-module_button__BiD3F {
|
|
|
3692
3692
|
transition: background-color 0.2s;
|
|
3693
3693
|
cursor: pointer;
|
|
3694
3694
|
}
|
|
3695
|
-
.
|
|
3695
|
+
.Switch_knob {
|
|
3696
3696
|
width: var(--knob-size);
|
|
3697
3697
|
height: var(--knob-size);
|
|
3698
3698
|
border-radius: 100%;
|
|
@@ -3700,44 +3700,44 @@ body a.Button-module_button__BiD3F {
|
|
|
3700
3700
|
transition: all 0.2s;
|
|
3701
3701
|
box-shadow: var(--box-shadow-2);
|
|
3702
3702
|
}
|
|
3703
|
-
.
|
|
3703
|
+
.Switch_switch[data-selected] .Switch_track {
|
|
3704
3704
|
border-color: var(--primary-color);
|
|
3705
3705
|
background: var(--primary-color);
|
|
3706
3706
|
}
|
|
3707
|
-
.
|
|
3707
|
+
.Switch_switch[data-selected] .Switch_knob {
|
|
3708
3708
|
margin-left: var(--knob-size);
|
|
3709
3709
|
border-color: var(--primary-color);
|
|
3710
3710
|
}
|
|
3711
|
-
.
|
|
3711
|
+
.Switch_switch[data-disabled] {
|
|
3712
3712
|
color: var(--font-faded-color);
|
|
3713
3713
|
pointer-events: none;
|
|
3714
3714
|
}
|
|
3715
|
-
.
|
|
3715
|
+
.Switch_switch[data-disabled] .Switch_track {
|
|
3716
3716
|
border-color: var(--input-disabled-color);
|
|
3717
3717
|
background: var(--input-disabled-color);
|
|
3718
3718
|
}
|
|
3719
|
-
.
|
|
3719
|
+
.Switch_switch[data-disabled] .Switch_knob {
|
|
3720
3720
|
border-color: var(--input-disabled-color);
|
|
3721
3721
|
}
|
|
3722
3722
|
|
|
3723
|
-
/*
|
|
3724
|
-
.
|
|
3723
|
+
/* src/components/Tabs.module.css */
|
|
3724
|
+
.Tabs_tabs {
|
|
3725
3725
|
font-size: var(--font-size);
|
|
3726
3726
|
color: var(--font-color);
|
|
3727
3727
|
position: relative;
|
|
3728
3728
|
width: 100%;
|
|
3729
3729
|
}
|
|
3730
|
-
.
|
|
3730
|
+
.Tabs_list {
|
|
3731
3731
|
display: flex;
|
|
3732
3732
|
align-items: center;
|
|
3733
3733
|
border-bottom: 2px solid var(--border-color);
|
|
3734
3734
|
gap: var(--gap);
|
|
3735
3735
|
margin-bottom: var(--spacing-6);
|
|
3736
3736
|
}
|
|
3737
|
-
.
|
|
3737
|
+
.Tabs_list.Tabs_quiet {
|
|
3738
3738
|
border: 0;
|
|
3739
3739
|
}
|
|
3740
|
-
.
|
|
3740
|
+
.Tabs_tab {
|
|
3741
3741
|
display: flex;
|
|
3742
3742
|
align-items: center;
|
|
3743
3743
|
justify-content: center;
|
|
@@ -3748,46 +3748,46 @@ body a.Button-module_button__BiD3F {
|
|
|
3748
3748
|
margin: 0 0 -2px 0;
|
|
3749
3749
|
cursor: pointer;
|
|
3750
3750
|
}
|
|
3751
|
-
.
|
|
3751
|
+
.Tabs_tab:hover {
|
|
3752
3752
|
color: var(--font-color);
|
|
3753
3753
|
}
|
|
3754
|
-
.
|
|
3754
|
+
.Tabs_tab[data-selected] {
|
|
3755
3755
|
color: var(--font-color);
|
|
3756
3756
|
border-bottom: 2px solid var(--primary-color);
|
|
3757
3757
|
}
|
|
3758
|
-
.
|
|
3758
|
+
.Tabs_tab[data-disabled] {
|
|
3759
3759
|
color: var(--font-faded-color);
|
|
3760
3760
|
cursor: default;
|
|
3761
3761
|
}
|
|
3762
3762
|
|
|
3763
|
-
/*
|
|
3764
|
-
.
|
|
3763
|
+
/* src/components/TextOverflow.module.css */
|
|
3764
|
+
.TextOverflow_wrapper {
|
|
3765
3765
|
flex-basis: 100%;
|
|
3766
3766
|
min-width: 0;
|
|
3767
3767
|
}
|
|
3768
|
-
.
|
|
3768
|
+
.TextOverflow_overflow {
|
|
3769
3769
|
display: block;
|
|
3770
3770
|
text-overflow: ellipsis;
|
|
3771
3771
|
overflow: hidden;
|
|
3772
3772
|
white-space: nowrap;
|
|
3773
3773
|
}
|
|
3774
3774
|
|
|
3775
|
-
/*
|
|
3776
|
-
.
|
|
3775
|
+
/* src/components/TextArea.module.css */
|
|
3776
|
+
.TextArea_textarea {
|
|
3777
3777
|
font-family: inherit;
|
|
3778
3778
|
}
|
|
3779
|
-
.
|
|
3779
|
+
.TextArea_resize-none textarea {
|
|
3780
3780
|
resize: none;
|
|
3781
3781
|
}
|
|
3782
|
-
.
|
|
3782
|
+
.TextArea_resize-horizontal textarea {
|
|
3783
3783
|
resize: horizontal;
|
|
3784
3784
|
}
|
|
3785
|
-
.
|
|
3785
|
+
.TextArea_resize-vertical textarea {
|
|
3786
3786
|
resize: vertical;
|
|
3787
3787
|
}
|
|
3788
3788
|
|
|
3789
|
-
/*
|
|
3790
|
-
.
|
|
3789
|
+
/* src/components/Toast.module.css */
|
|
3790
|
+
.Toast_viewport {
|
|
3791
3791
|
--viewport-padding: 25px;
|
|
3792
3792
|
position: fixed;
|
|
3793
3793
|
bottom: 0;
|
|
@@ -3803,7 +3803,7 @@ body a.Button-module_button__BiD3F {
|
|
|
3803
3803
|
z-index: 2147483647;
|
|
3804
3804
|
outline: none;
|
|
3805
3805
|
}
|
|
3806
|
-
.
|
|
3806
|
+
.Toast_toast {
|
|
3807
3807
|
display: grid;
|
|
3808
3808
|
grid-template-areas: "icon title action" "icon description action";
|
|
3809
3809
|
grid-template-columns: auto 1fr auto;
|
|
@@ -3816,46 +3816,46 @@ body a.Button-module_button__BiD3F {
|
|
|
3816
3816
|
border: var(--border);
|
|
3817
3817
|
position: relative;
|
|
3818
3818
|
}
|
|
3819
|
-
.
|
|
3820
|
-
animation:
|
|
3819
|
+
.Toast_toast[data-state=open] {
|
|
3820
|
+
animation: Toast_slide-in 150ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
3821
3821
|
}
|
|
3822
|
-
.
|
|
3823
|
-
animation:
|
|
3822
|
+
.Toast_toast[data-state=closed] {
|
|
3823
|
+
animation: Toast_hide 100ms ease-in;
|
|
3824
3824
|
}
|
|
3825
|
-
.
|
|
3825
|
+
.Toast_toast[data-swipe=move] {
|
|
3826
3826
|
transform: translateX(0);
|
|
3827
3827
|
}
|
|
3828
|
-
.
|
|
3828
|
+
.Toast_toast[data-swipe=cancel] {
|
|
3829
3829
|
transform: translateX(0);
|
|
3830
3830
|
transition: transform 200ms ease-out;
|
|
3831
3831
|
}
|
|
3832
|
-
.
|
|
3833
|
-
animation:
|
|
3832
|
+
.Toast_toast[data-swipe=end] {
|
|
3833
|
+
animation: Toast_swipe-out 100ms ease-out;
|
|
3834
3834
|
}
|
|
3835
|
-
.
|
|
3835
|
+
.Toast_toast:has(.Toast_icon) {
|
|
3836
3836
|
grid-template-columns: auto 1fr auto;
|
|
3837
3837
|
column-gap: var(--gap);
|
|
3838
3838
|
}
|
|
3839
|
-
.
|
|
3839
|
+
.Toast_icon {
|
|
3840
3840
|
grid-area: icon;
|
|
3841
3841
|
}
|
|
3842
|
-
.
|
|
3842
|
+
.Toast_icon:empty {
|
|
3843
3843
|
display: none;
|
|
3844
3844
|
}
|
|
3845
|
-
.
|
|
3845
|
+
.Toast_title {
|
|
3846
3846
|
grid-area: title;
|
|
3847
3847
|
color: var(--font-color);
|
|
3848
3848
|
font-weight: 700;
|
|
3849
3849
|
}
|
|
3850
|
-
.
|
|
3850
|
+
.Toast_description {
|
|
3851
3851
|
grid-area: description;
|
|
3852
3852
|
}
|
|
3853
|
-
.
|
|
3853
|
+
.Toast_action {
|
|
3854
3854
|
grid-area: action;
|
|
3855
3855
|
border: 0;
|
|
3856
3856
|
background: transparent;
|
|
3857
3857
|
}
|
|
3858
|
-
.
|
|
3858
|
+
.Toast_close {
|
|
3859
3859
|
color: currentColor;
|
|
3860
3860
|
position: absolute;
|
|
3861
3861
|
right: 10px;
|
|
@@ -3864,21 +3864,21 @@ body a.Button-module_button__BiD3F {
|
|
|
3864
3864
|
border: 0;
|
|
3865
3865
|
background: transparent;
|
|
3866
3866
|
}
|
|
3867
|
-
.
|
|
3867
|
+
.Toast_toast:hover .Toast_close {
|
|
3868
3868
|
display: block;
|
|
3869
3869
|
cursor: pointer;
|
|
3870
3870
|
}
|
|
3871
|
-
.
|
|
3871
|
+
.Toast_toast.Toast_info {
|
|
3872
3872
|
color: var(--primary-font-color);
|
|
3873
3873
|
background: var(--primary-color);
|
|
3874
3874
|
border: 0;
|
|
3875
3875
|
}
|
|
3876
|
-
.
|
|
3876
|
+
.Toast_toast.Toast_error {
|
|
3877
3877
|
color: var(--danger-font-color);
|
|
3878
3878
|
background: var(--danger-color);
|
|
3879
3879
|
border: 0;
|
|
3880
3880
|
}
|
|
3881
|
-
@keyframes
|
|
3881
|
+
@keyframes Toast_hide {
|
|
3882
3882
|
from {
|
|
3883
3883
|
opacity: 1;
|
|
3884
3884
|
transform: translateY(0);
|
|
@@ -3888,7 +3888,7 @@ body a.Button-module_button__BiD3F {
|
|
|
3888
3888
|
transform: translateY(50px);
|
|
3889
3889
|
}
|
|
3890
3890
|
}
|
|
3891
|
-
@keyframes
|
|
3891
|
+
@keyframes Toast_slide-in {
|
|
3892
3892
|
from {
|
|
3893
3893
|
transform: translateX(calc(100% + var(--viewport-padding)));
|
|
3894
3894
|
}
|
|
@@ -3896,7 +3896,7 @@ body a.Button-module_button__BiD3F {
|
|
|
3896
3896
|
transform: translateX(0);
|
|
3897
3897
|
}
|
|
3898
3898
|
}
|
|
3899
|
-
@keyframes
|
|
3899
|
+
@keyframes Toast_swipe-out {
|
|
3900
3900
|
from {
|
|
3901
3901
|
transform: translateX(0);
|
|
3902
3902
|
}
|
|
@@ -3905,8 +3905,8 @@ body a.Button-module_button__BiD3F {
|
|
|
3905
3905
|
}
|
|
3906
3906
|
}
|
|
3907
3907
|
|
|
3908
|
-
/*
|
|
3909
|
-
.
|
|
3908
|
+
/* src/components/Toggle.module.css */
|
|
3909
|
+
.Toggle_toggle {
|
|
3910
3910
|
font-size: var(--font-size);
|
|
3911
3911
|
color: var(--font-color);
|
|
3912
3912
|
display: flex;
|
|
@@ -3922,20 +3922,20 @@ body a.Button-module_button__BiD3F {
|
|
|
3922
3922
|
position: relative;
|
|
3923
3923
|
cursor: pointer;
|
|
3924
3924
|
}
|
|
3925
|
-
.
|
|
3925
|
+
.Toggle_toggle:hover {
|
|
3926
3926
|
background: var(--highlight-color);
|
|
3927
3927
|
}
|
|
3928
|
-
.
|
|
3928
|
+
.Toggle_toggle[data-selected] {
|
|
3929
3929
|
color: var(--primary-font-color);
|
|
3930
3930
|
background: var(--primary-color);
|
|
3931
3931
|
}
|
|
3932
|
-
.
|
|
3932
|
+
.Toggle_toggle:focus {
|
|
3933
3933
|
border-color: transparent;
|
|
3934
3934
|
outline: var(--outline);
|
|
3935
3935
|
}
|
|
3936
3936
|
|
|
3937
|
-
/*
|
|
3938
|
-
.
|
|
3937
|
+
/* src/components/ToggleGroup.module.css */
|
|
3938
|
+
.ToggleGroup_group {
|
|
3939
3939
|
font-size: var(--font-size);
|
|
3940
3940
|
color: var(--font-color);
|
|
3941
3941
|
background-color: var(--background-color);
|
|
@@ -3944,12 +3944,12 @@ body a.Button-module_button__BiD3F {
|
|
|
3944
3944
|
border-radius: var(--border-radius);
|
|
3945
3945
|
overflow: hidden;
|
|
3946
3946
|
}
|
|
3947
|
-
.
|
|
3947
|
+
.ToggleGroup_list {
|
|
3948
3948
|
display: flex;
|
|
3949
3949
|
flex-direction: row;
|
|
3950
3950
|
align-items: center;
|
|
3951
3951
|
}
|
|
3952
|
-
.
|
|
3952
|
+
.ToggleGroup_item {
|
|
3953
3953
|
background-color: var(--background-color);
|
|
3954
3954
|
display: flex;
|
|
3955
3955
|
align-items: center;
|
|
@@ -3958,20 +3958,20 @@ body a.Button-module_button__BiD3F {
|
|
|
3958
3958
|
cursor: pointer;
|
|
3959
3959
|
outline: none;
|
|
3960
3960
|
}
|
|
3961
|
-
.
|
|
3961
|
+
.ToggleGroup_item:not(:first-child) {
|
|
3962
3962
|
border-left: var(--border);
|
|
3963
3963
|
}
|
|
3964
|
-
.
|
|
3964
|
+
.ToggleGroup_item:hover {
|
|
3965
3965
|
background-color: var(--highlight-color);
|
|
3966
3966
|
}
|
|
3967
|
-
.
|
|
3967
|
+
.ToggleGroup_item[data-selected] {
|
|
3968
3968
|
font-weight: 700;
|
|
3969
3969
|
background-color: var(--highlight-color);
|
|
3970
3970
|
font-size-adjust: 0.5;
|
|
3971
3971
|
}
|
|
3972
3972
|
|
|
3973
|
-
/*
|
|
3974
|
-
.
|
|
3973
|
+
/* src/components/Tooltip.module.css */
|
|
3974
|
+
.Tooltip_tooltip {
|
|
3975
3975
|
font-size: var(--font-size);
|
|
3976
3976
|
color: var(--light-color);
|
|
3977
3977
|
background: rgba(0, 0, 0, 0.8);
|
|
@@ -3982,42 +3982,42 @@ body a.Button-module_button__BiD3F {
|
|
|
3982
3982
|
max-width: 150px;
|
|
3983
3983
|
transform: translate3d(0, 0, 0);
|
|
3984
3984
|
}
|
|
3985
|
-
.
|
|
3985
|
+
.Tooltip_tooltip[data-placement=top] {
|
|
3986
3986
|
margin-bottom: 8px;
|
|
3987
3987
|
--origin: translateY(4px);
|
|
3988
3988
|
}
|
|
3989
|
-
.
|
|
3989
|
+
.Tooltip_tooltip[data-placement=bottom] {
|
|
3990
3990
|
margin-top: 8px;
|
|
3991
3991
|
--origin: translateY(-4px);
|
|
3992
3992
|
}
|
|
3993
|
-
.
|
|
3993
|
+
.Tooltip_tooltip[data-placement=bottom] .Tooltip_arrow svg {
|
|
3994
3994
|
transform: rotate(180deg);
|
|
3995
3995
|
}
|
|
3996
|
-
.
|
|
3996
|
+
.Tooltip_tooltip[data-placement=right] {
|
|
3997
3997
|
margin-left: 8px;
|
|
3998
3998
|
--origin: translateX(-4px);
|
|
3999
3999
|
}
|
|
4000
|
-
.
|
|
4000
|
+
.Tooltip_tooltip[data-placement=right] .Tooltip_arrow svg {
|
|
4001
4001
|
transform: rotate(90deg);
|
|
4002
4002
|
}
|
|
4003
|
-
.
|
|
4003
|
+
.Tooltip_tooltip[data-placement=left] {
|
|
4004
4004
|
margin-right: 8px;
|
|
4005
4005
|
--origin: translateX(4px);
|
|
4006
4006
|
}
|
|
4007
|
-
.
|
|
4007
|
+
.Tooltip_tooltip[data-placement=left] .Tooltip_arrow svg {
|
|
4008
4008
|
transform: rotate(-90deg);
|
|
4009
4009
|
}
|
|
4010
|
-
.
|
|
4010
|
+
.Tooltip_tooltip .Tooltip_arrow svg {
|
|
4011
4011
|
display: block;
|
|
4012
4012
|
fill: rgba(0, 0, 0, 0.8);
|
|
4013
4013
|
}
|
|
4014
|
-
.
|
|
4015
|
-
animation:
|
|
4014
|
+
.Tooltip_tooltip[data-entering] {
|
|
4015
|
+
animation: Tooltip_slide 200ms;
|
|
4016
4016
|
}
|
|
4017
|
-
.
|
|
4018
|
-
animation:
|
|
4017
|
+
.Tooltip_tooltip[data-exiting] {
|
|
4018
|
+
animation: Tooltip_slide 200ms reverse ease-in;
|
|
4019
4019
|
}
|
|
4020
|
-
@keyframes
|
|
4020
|
+
@keyframes Tooltip_slide {
|
|
4021
4021
|
from {
|
|
4022
4022
|
transform: var(--origin);
|
|
4023
4023
|
opacity: 0;
|