@omnia/runtime 8.0.270-dev → 8.0.272-dev
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/bundles/omnia.fx.ux.autocomplete_5d79340e-c1ce-4006-b88b-ad101d2e031e.css +4 -0
- package/dist/bundles/omnia.fx.ux.vuetify.alert_c1e2b0f0-2f26-4ae9-b703-1347533c267d.css +5 -1
- package/dist/bundles/omnia.fx.ux.vuetify.bottomnav_2da93f43-df97-43bb-942c-01fa7bbf2898.css +11 -3
- package/dist/bundles/omnia.fx.ux.vuetify.chip_6c32c2f0-cce6-4c71-b376-9fb68d0d508e.css +15 -9
- package/dist/bundles/omnia.fx.ux.vuetify.combobox_0edad567-65c0-433f-a871-a59e460d70f0.css +4 -0
- package/dist/bundles/omnia.fx.ux.vuetify.common_798d6494-70cc-47eb-9054-30b047beab19.css +116 -42
- package/dist/bundles/omnia.fx.ux.vuetify.datepicker_0ab2c44b-d945-40f8-8042-0800a52d7c86.css +6 -2
- package/dist/bundles/omnia.fx.ux.vuetify.dialog_0bf6198c-32c6-4cec-90bd-7988a979c9b0.css +5 -0
- package/dist/bundles/omnia.fx.ux.vuetify.footer_47510593-f34c-487d-83fe-695b59489210.css +12 -4
- package/dist/bundles/omnia.fx.ux.vuetify.menu_2a6bef63-35c8-492b-9035-868016b1da20.css +6 -0
- package/dist/bundles/omnia.fx.ux.vuetify.select_6d5f3edc-0fc0-4765-804b-b6583381f25d.css +4 -0
- package/dist/bundles/omnia.fx.ux.vuetify.shared_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +612 -34
- package/dist/bundles/omnia.fx.ux.vuetify.snackbar_1f46e84f-1223-4080-ab9f-40d1489b71e6.css +2 -0
- package/dist/bundles/omnia.fx.ux.vuetify.stepper_3104db5f-e983-4e06-925e-9b5375276512.css +12 -3
- package/dist/bundles/omnia.fx.ux.vuetify.switch_81d8f551-1b9f-4f75-90c3-2fe5f25e4015.css +2 -0
- package/dist/bundles/omnia.fx.ux.vuetify.timeline_b474da31-7ff2-4f5b-a309-19cb2d300b64.css +2 -0
- package/dist/bundles/omnia.vuetify.colorpicker_4f861c0d-75fb-49ce-913e-17cbafad5ed2.css +2 -0
- package/dist/localizations/bb000000-0000-bbbb-0000-0000000000bb_localized.loc.public.en-us.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_admin_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_docs_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_editor_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_public_manifests.json +1 -1
- package/package.json +5 -5
|
@@ -299,9 +299,6 @@ html.v-overlay-scroll-blocked {
|
|
|
299
299
|
user-select: none;
|
|
300
300
|
vertical-align: middle;
|
|
301
301
|
flex-shrink: 0;
|
|
302
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
303
|
-
border-style: solid;
|
|
304
|
-
border-width: 0;
|
|
305
302
|
}
|
|
306
303
|
.v-btn--size-x-small {
|
|
307
304
|
--v-btn-size: 0.625rem;
|
|
@@ -355,6 +352,11 @@ html.v-overlay-scroll-blocked {
|
|
|
355
352
|
height: calc(var(--v-btn-height) + -12px);
|
|
356
353
|
}
|
|
357
354
|
|
|
355
|
+
.v-btn {
|
|
356
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
357
|
+
border-style: solid;
|
|
358
|
+
border-width: 0;
|
|
359
|
+
}
|
|
358
360
|
.v-btn--border {
|
|
359
361
|
border-width: thin;
|
|
360
362
|
box-shadow: none;
|
|
@@ -433,6 +435,13 @@ html.v-overlay-scroll-blocked {
|
|
|
433
435
|
position: absolute;
|
|
434
436
|
}
|
|
435
437
|
@supports selector(:focus-visible) {
|
|
438
|
+
.v-btn::after {
|
|
439
|
+
pointer-events: none;
|
|
440
|
+
border: 2px solid currentColor;
|
|
441
|
+
border-radius: inherit;
|
|
442
|
+
opacity: 0;
|
|
443
|
+
transition: opacity 0.2s ease-in-out;
|
|
444
|
+
}
|
|
436
445
|
.v-btn::after {
|
|
437
446
|
content: "";
|
|
438
447
|
position: absolute;
|
|
@@ -440,11 +449,6 @@ html.v-overlay-scroll-blocked {
|
|
|
440
449
|
left: 0;
|
|
441
450
|
width: 100%;
|
|
442
451
|
height: 100%;
|
|
443
|
-
pointer-events: none;
|
|
444
|
-
border: 2px solid currentColor;
|
|
445
|
-
border-radius: inherit;
|
|
446
|
-
opacity: 0;
|
|
447
|
-
transition: opacity 0.2s ease-in-out;
|
|
448
452
|
}
|
|
449
453
|
.v-btn:focus-visible::after {
|
|
450
454
|
opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
|
|
@@ -672,6 +676,10 @@ html.v-overlay-scroll-blocked {
|
|
|
672
676
|
transition: opacity 0.2s ease-in-out;
|
|
673
677
|
}
|
|
674
678
|
|
|
679
|
+
.v-btn__overlay,
|
|
680
|
+
.v-btn__underlay {
|
|
681
|
+
pointer-events: none;
|
|
682
|
+
}
|
|
675
683
|
.v-btn__overlay,
|
|
676
684
|
.v-btn__underlay {
|
|
677
685
|
position: absolute;
|
|
@@ -679,11 +687,6 @@ html.v-overlay-scroll-blocked {
|
|
|
679
687
|
left: 0;
|
|
680
688
|
width: 100%;
|
|
681
689
|
height: 100%;
|
|
682
|
-
pointer-events: none;
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
.v-card-actions .v-btn ~ .v-btn:not(.v-btn-toggle .v-btn) {
|
|
686
|
-
margin-inline-start: 0.5rem;
|
|
687
690
|
}
|
|
688
691
|
|
|
689
692
|
.v-pagination .v-btn {
|
|
@@ -719,18 +722,26 @@ html.v-overlay-scroll-blocked {
|
|
|
719
722
|
min-width: 0;
|
|
720
723
|
overflow: hidden;
|
|
721
724
|
vertical-align: middle;
|
|
725
|
+
}
|
|
726
|
+
.v-btn-group {
|
|
722
727
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
723
728
|
border-style: solid;
|
|
724
729
|
border-width: 0;
|
|
725
|
-
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
726
|
-
border-radius: 4px;
|
|
727
|
-
background: transparent;
|
|
728
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
729
730
|
}
|
|
730
731
|
.v-btn-group--border {
|
|
731
732
|
border-width: thin;
|
|
732
733
|
box-shadow: none;
|
|
733
734
|
}
|
|
735
|
+
.v-btn-group {
|
|
736
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
737
|
+
}
|
|
738
|
+
.v-btn-group {
|
|
739
|
+
border-radius: 4px;
|
|
740
|
+
}
|
|
741
|
+
.v-btn-group {
|
|
742
|
+
background: transparent;
|
|
743
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
744
|
+
}
|
|
734
745
|
.v-btn-group--density-default.v-btn-group {
|
|
735
746
|
height: 48px;
|
|
736
747
|
}
|
|
@@ -1260,6 +1271,12 @@ html.v-overlay-scroll-blocked {
|
|
|
1260
1271
|
overflow: hidden;
|
|
1261
1272
|
position: relative;
|
|
1262
1273
|
}
|
|
1274
|
+
.v-skeleton-loader__bone::after {
|
|
1275
|
+
animation: loading 1.5s infinite;
|
|
1276
|
+
background: linear-gradient(90deg, rgba(var(--v-theme-surface), 0), rgba(var(--v-theme-surface), 0.3), rgba(var(--v-theme-surface), 0));
|
|
1277
|
+
transform: translateX(-100%);
|
|
1278
|
+
z-index: 1;
|
|
1279
|
+
}
|
|
1263
1280
|
.v-skeleton-loader__bone::after {
|
|
1264
1281
|
content: "";
|
|
1265
1282
|
position: absolute;
|
|
@@ -1267,10 +1284,6 @@ html.v-overlay-scroll-blocked {
|
|
|
1267
1284
|
left: 0;
|
|
1268
1285
|
width: 100%;
|
|
1269
1286
|
height: 100%;
|
|
1270
|
-
animation: loading 1.5s infinite;
|
|
1271
|
-
background: linear-gradient(90deg, rgba(var(--v-theme-surface), 0), rgba(var(--v-theme-surface), 0.3), rgba(var(--v-theme-surface), 0));
|
|
1272
|
-
transform: translateX(-100%);
|
|
1273
|
-
z-index: 1;
|
|
1274
1287
|
}
|
|
1275
1288
|
.v-skeleton-loader__avatar {
|
|
1276
1289
|
border-radius: 50%;
|
|
@@ -1475,6 +1488,8 @@ html.v-overlay-scroll-blocked {
|
|
|
1475
1488
|
}
|
|
1476
1489
|
.v-main--scrollable {
|
|
1477
1490
|
display: flex;
|
|
1491
|
+
}
|
|
1492
|
+
.v-main--scrollable {
|
|
1478
1493
|
position: absolute;
|
|
1479
1494
|
top: 0;
|
|
1480
1495
|
left: 0;
|
|
@@ -1496,6 +1511,8 @@ html.v-overlay-scroll-blocked {
|
|
|
1496
1511
|
max-height: 0px;
|
|
1497
1512
|
opacity: var(--v-border-opacity);
|
|
1498
1513
|
transition: inherit;
|
|
1514
|
+
}
|
|
1515
|
+
.v-divider {
|
|
1499
1516
|
border-style: solid;
|
|
1500
1517
|
border-width: thin 0 0 0;
|
|
1501
1518
|
}
|
|
@@ -2325,6 +2342,15 @@ html.v-overlay-scroll-blocked {
|
|
|
2325
2342
|
--v-theme-overlay-multiplier: 3;
|
|
2326
2343
|
z-index: 0;
|
|
2327
2344
|
}
|
|
2345
|
+
.v-img.v-img--absolute {
|
|
2346
|
+
height: 100%;
|
|
2347
|
+
left: 0;
|
|
2348
|
+
overflow: hidden;
|
|
2349
|
+
position: absolute;
|
|
2350
|
+
top: 0;
|
|
2351
|
+
width: 100%;
|
|
2352
|
+
z-index: -1;
|
|
2353
|
+
}
|
|
2328
2354
|
.v-img--booting .v-responsive__sizer {
|
|
2329
2355
|
transition: none;
|
|
2330
2356
|
}
|
|
@@ -2338,6 +2364,12 @@ html.v-overlay-scroll-blocked {
|
|
|
2338
2364
|
.v-img__placeholder,
|
|
2339
2365
|
.v-img__error {
|
|
2340
2366
|
z-index: -1;
|
|
2367
|
+
}
|
|
2368
|
+
.v-img__img,
|
|
2369
|
+
.v-img__picture,
|
|
2370
|
+
.v-img__gradient,
|
|
2371
|
+
.v-img__placeholder,
|
|
2372
|
+
.v-img__error {
|
|
2341
2373
|
position: absolute;
|
|
2342
2374
|
top: 0;
|
|
2343
2375
|
left: 0;
|
|
@@ -2409,18 +2441,19 @@ html.v-overlay-scroll-blocked {
|
|
|
2409
2441
|
}
|
|
2410
2442
|
.v-sheet {
|
|
2411
2443
|
display: block;
|
|
2444
|
+
}
|
|
2445
|
+
.v-sheet {
|
|
2412
2446
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2413
2447
|
border-style: solid;
|
|
2414
2448
|
border-width: 0;
|
|
2415
|
-
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
2416
|
-
border-radius: 0;
|
|
2417
|
-
background: rgb(var(--v-theme-surface));
|
|
2418
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2419
2449
|
}
|
|
2420
2450
|
.v-sheet--border {
|
|
2421
2451
|
border-width: thin;
|
|
2422
2452
|
box-shadow: none;
|
|
2423
2453
|
}
|
|
2454
|
+
.v-sheet {
|
|
2455
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
2456
|
+
}
|
|
2424
2457
|
.v-sheet--absolute {
|
|
2425
2458
|
position: absolute;
|
|
2426
2459
|
}
|
|
@@ -2433,6 +2466,13 @@ html.v-overlay-scroll-blocked {
|
|
|
2433
2466
|
.v-sheet--sticky {
|
|
2434
2467
|
position: sticky;
|
|
2435
2468
|
}
|
|
2469
|
+
.v-sheet {
|
|
2470
|
+
border-radius: 0;
|
|
2471
|
+
}
|
|
2472
|
+
.v-sheet {
|
|
2473
|
+
background: rgb(var(--v-theme-surface));
|
|
2474
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2475
|
+
}
|
|
2436
2476
|
.v-sheet--rounded {
|
|
2437
2477
|
border-radius: 4px;
|
|
2438
2478
|
}
|
|
@@ -2642,13 +2682,15 @@ html.v-overlay-scroll-blocked {
|
|
|
2642
2682
|
transition-duration: 150ms;
|
|
2643
2683
|
}
|
|
2644
2684
|
.v-table {
|
|
2645
|
-
background: rgb(var(--v-theme-surface));
|
|
2646
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2647
2685
|
font-size: 0.875rem;
|
|
2648
2686
|
transition-duration: 0.28s;
|
|
2649
2687
|
transition-property: box-shadow, opacity, background, height;
|
|
2650
2688
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2651
2689
|
}
|
|
2690
|
+
.v-table {
|
|
2691
|
+
background: rgb(var(--v-theme-surface));
|
|
2692
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2693
|
+
}
|
|
2652
2694
|
.v-table .v-table-divider {
|
|
2653
2695
|
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2654
2696
|
}
|
|
@@ -2666,6 +2708,10 @@ html.v-overlay-scroll-blocked {
|
|
|
2666
2708
|
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
|
2667
2709
|
position: relative;
|
|
2668
2710
|
}
|
|
2711
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
|
2712
|
+
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
|
2713
|
+
pointer-events: none;
|
|
2714
|
+
}
|
|
2669
2715
|
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
|
2670
2716
|
content: "";
|
|
2671
2717
|
position: absolute;
|
|
@@ -2673,8 +2719,6 @@ html.v-overlay-scroll-blocked {
|
|
|
2673
2719
|
left: 0;
|
|
2674
2720
|
width: 100%;
|
|
2675
2721
|
height: 100%;
|
|
2676
|
-
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
|
2677
|
-
pointer-events: none;
|
|
2678
2722
|
}
|
|
2679
2723
|
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
2680
2724
|
background: rgb(var(--v-theme-surface));
|
|
@@ -2781,7 +2825,6 @@ html.v-overlay-scroll-blocked {
|
|
|
2781
2825
|
}
|
|
2782
2826
|
/* region INPUT */
|
|
2783
2827
|
.v-field {
|
|
2784
|
-
--v-theme-overlay-multiplier: 1;
|
|
2785
2828
|
display: grid;
|
|
2786
2829
|
grid-template-areas: "prepend-inner field clear append-inner";
|
|
2787
2830
|
grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
|
|
@@ -2793,6 +2836,7 @@ html.v-overlay-scroll-blocked {
|
|
|
2793
2836
|
flex: 1 0;
|
|
2794
2837
|
grid-area: control;
|
|
2795
2838
|
position: relative;
|
|
2839
|
+
--v-theme-overlay-multiplier: 1;
|
|
2796
2840
|
--v-field-padding-start: 16px;
|
|
2797
2841
|
--v-field-padding-end: 16px;
|
|
2798
2842
|
--v-field-padding-top: 8px;
|
|
@@ -2820,12 +2864,16 @@ html.v-overlay-scroll-blocked {
|
|
|
2820
2864
|
background: rgb(var(--v-theme-surface));
|
|
2821
2865
|
border-color: transparent;
|
|
2822
2866
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2867
|
+
}
|
|
2868
|
+
.v-field--variant-solo, .v-field--variant-solo-filled {
|
|
2823
2869
|
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
2824
2870
|
}
|
|
2825
2871
|
.v-field--variant-solo-inverted {
|
|
2826
2872
|
background: rgb(var(--v-theme-surface));
|
|
2827
2873
|
border-color: transparent;
|
|
2828
2874
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2875
|
+
}
|
|
2876
|
+
.v-field--variant-solo-inverted {
|
|
2829
2877
|
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
2830
2878
|
}
|
|
2831
2879
|
.v-field--variant-solo-inverted.v-field--focused {
|
|
@@ -3148,6 +3196,8 @@ textarea.v-field__input::placeholder {
|
|
|
3148
3196
|
border-width: 0 0 var(--v-field-border-width);
|
|
3149
3197
|
opacity: var(--v-field-border-opacity);
|
|
3150
3198
|
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3199
|
+
}
|
|
3200
|
+
.v-field--variant-filled .v-field__outline::before, .v-field--variant-underlined .v-field__outline::before {
|
|
3151
3201
|
content: "";
|
|
3152
3202
|
position: absolute;
|
|
3153
3203
|
top: 0;
|
|
@@ -3161,6 +3211,8 @@ textarea.v-field__input::placeholder {
|
|
|
3161
3211
|
border-width: 0 0 2px;
|
|
3162
3212
|
transform: scaleX(0);
|
|
3163
3213
|
transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
3214
|
+
}
|
|
3215
|
+
.v-field--variant-filled .v-field__outline::after, .v-field--variant-underlined .v-field__outline::after {
|
|
3164
3216
|
content: "";
|
|
3165
3217
|
position: absolute;
|
|
3166
3218
|
top: 0;
|
|
@@ -3213,6 +3265,8 @@ textarea.v-field__input::placeholder {
|
|
|
3213
3265
|
.v-field--variant-outlined .v-field__outline__notch::before, .v-field--variant-outlined .v-field__outline__notch::after {
|
|
3214
3266
|
opacity: var(--v-field-border-opacity);
|
|
3215
3267
|
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3268
|
+
}
|
|
3269
|
+
.v-field--variant-outlined .v-field__outline__notch::before, .v-field--variant-outlined .v-field__outline__notch::after {
|
|
3216
3270
|
content: "";
|
|
3217
3271
|
position: absolute;
|
|
3218
3272
|
top: 0;
|
|
@@ -3275,6 +3329,8 @@ textarea.v-field__input::placeholder {
|
|
|
3275
3329
|
.v-field__overlay {
|
|
3276
3330
|
border-radius: inherit;
|
|
3277
3331
|
pointer-events: none;
|
|
3332
|
+
}
|
|
3333
|
+
.v-field__overlay {
|
|
3278
3334
|
position: absolute;
|
|
3279
3335
|
top: 0;
|
|
3280
3336
|
left: 0;
|
|
@@ -3364,1301 +3420,1821 @@ textarea.v-field__input::placeholder {
|
|
|
3364
3420
|
}
|
|
3365
3421
|
.bg-black {
|
|
3366
3422
|
background-color: #000000 !important;
|
|
3423
|
+
}
|
|
3424
|
+
.bg-black {
|
|
3367
3425
|
color: #FFFFFF !important;
|
|
3368
3426
|
}
|
|
3369
3427
|
|
|
3370
3428
|
.bg-white {
|
|
3371
3429
|
background-color: #FFFFFF !important;
|
|
3430
|
+
}
|
|
3431
|
+
.bg-white {
|
|
3372
3432
|
color: #000000 !important;
|
|
3373
3433
|
}
|
|
3374
3434
|
|
|
3375
3435
|
.bg-transparent {
|
|
3376
3436
|
background-color: transparent !important;
|
|
3437
|
+
}
|
|
3438
|
+
.bg-transparent {
|
|
3377
3439
|
color: currentColor !important;
|
|
3378
3440
|
}
|
|
3379
3441
|
|
|
3380
3442
|
.bg-red {
|
|
3381
3443
|
background-color: #F44336 !important;
|
|
3444
|
+
}
|
|
3445
|
+
.bg-red {
|
|
3382
3446
|
color: #FFFFFF !important;
|
|
3383
3447
|
}
|
|
3384
3448
|
|
|
3385
3449
|
.bg-red-lighten-5 {
|
|
3386
3450
|
background-color: #FFEBEE !important;
|
|
3451
|
+
}
|
|
3452
|
+
.bg-red-lighten-5 {
|
|
3387
3453
|
color: #000000 !important;
|
|
3388
3454
|
}
|
|
3389
3455
|
|
|
3390
3456
|
.bg-red-lighten-4 {
|
|
3391
3457
|
background-color: #FFCDD2 !important;
|
|
3458
|
+
}
|
|
3459
|
+
.bg-red-lighten-4 {
|
|
3392
3460
|
color: #000000 !important;
|
|
3393
3461
|
}
|
|
3394
3462
|
|
|
3395
3463
|
.bg-red-lighten-3 {
|
|
3396
3464
|
background-color: #EF9A9A !important;
|
|
3465
|
+
}
|
|
3466
|
+
.bg-red-lighten-3 {
|
|
3397
3467
|
color: #000000 !important;
|
|
3398
3468
|
}
|
|
3399
3469
|
|
|
3400
3470
|
.bg-red-lighten-2 {
|
|
3401
3471
|
background-color: #E57373 !important;
|
|
3472
|
+
}
|
|
3473
|
+
.bg-red-lighten-2 {
|
|
3402
3474
|
color: #FFFFFF !important;
|
|
3403
3475
|
}
|
|
3404
3476
|
|
|
3405
3477
|
.bg-red-lighten-1 {
|
|
3406
3478
|
background-color: #EF5350 !important;
|
|
3479
|
+
}
|
|
3480
|
+
.bg-red-lighten-1 {
|
|
3407
3481
|
color: #FFFFFF !important;
|
|
3408
3482
|
}
|
|
3409
3483
|
|
|
3410
3484
|
.bg-red-darken-1 {
|
|
3411
3485
|
background-color: #E53935 !important;
|
|
3486
|
+
}
|
|
3487
|
+
.bg-red-darken-1 {
|
|
3412
3488
|
color: #FFFFFF !important;
|
|
3413
3489
|
}
|
|
3414
3490
|
|
|
3415
3491
|
.bg-red-darken-2 {
|
|
3416
3492
|
background-color: #D32F2F !important;
|
|
3493
|
+
}
|
|
3494
|
+
.bg-red-darken-2 {
|
|
3417
3495
|
color: #FFFFFF !important;
|
|
3418
3496
|
}
|
|
3419
3497
|
|
|
3420
3498
|
.bg-red-darken-3 {
|
|
3421
3499
|
background-color: #C62828 !important;
|
|
3500
|
+
}
|
|
3501
|
+
.bg-red-darken-3 {
|
|
3422
3502
|
color: #FFFFFF !important;
|
|
3423
3503
|
}
|
|
3424
3504
|
|
|
3425
3505
|
.bg-red-darken-4 {
|
|
3426
3506
|
background-color: #B71C1C !important;
|
|
3507
|
+
}
|
|
3508
|
+
.bg-red-darken-4 {
|
|
3427
3509
|
color: #FFFFFF !important;
|
|
3428
3510
|
}
|
|
3429
3511
|
|
|
3430
3512
|
.bg-red-accent-1 {
|
|
3431
3513
|
background-color: #FF8A80 !important;
|
|
3514
|
+
}
|
|
3515
|
+
.bg-red-accent-1 {
|
|
3432
3516
|
color: #000000 !important;
|
|
3433
3517
|
}
|
|
3434
3518
|
|
|
3435
3519
|
.bg-red-accent-2 {
|
|
3436
3520
|
background-color: #FF5252 !important;
|
|
3521
|
+
}
|
|
3522
|
+
.bg-red-accent-2 {
|
|
3437
3523
|
color: #FFFFFF !important;
|
|
3438
3524
|
}
|
|
3439
3525
|
|
|
3440
3526
|
.bg-red-accent-3 {
|
|
3441
3527
|
background-color: #FF1744 !important;
|
|
3528
|
+
}
|
|
3529
|
+
.bg-red-accent-3 {
|
|
3442
3530
|
color: #FFFFFF !important;
|
|
3443
3531
|
}
|
|
3444
3532
|
|
|
3445
3533
|
.bg-red-accent-4 {
|
|
3446
3534
|
background-color: #D50000 !important;
|
|
3535
|
+
}
|
|
3536
|
+
.bg-red-accent-4 {
|
|
3447
3537
|
color: #FFFFFF !important;
|
|
3448
3538
|
}
|
|
3449
3539
|
|
|
3450
3540
|
.bg-pink {
|
|
3451
3541
|
background-color: #e91e63 !important;
|
|
3542
|
+
}
|
|
3543
|
+
.bg-pink {
|
|
3452
3544
|
color: #FFFFFF !important;
|
|
3453
3545
|
}
|
|
3454
3546
|
|
|
3455
3547
|
.bg-pink-lighten-5 {
|
|
3456
3548
|
background-color: #fce4ec !important;
|
|
3549
|
+
}
|
|
3550
|
+
.bg-pink-lighten-5 {
|
|
3457
3551
|
color: #000000 !important;
|
|
3458
3552
|
}
|
|
3459
3553
|
|
|
3460
3554
|
.bg-pink-lighten-4 {
|
|
3461
3555
|
background-color: #f8bbd0 !important;
|
|
3556
|
+
}
|
|
3557
|
+
.bg-pink-lighten-4 {
|
|
3462
3558
|
color: #000000 !important;
|
|
3463
3559
|
}
|
|
3464
3560
|
|
|
3465
3561
|
.bg-pink-lighten-3 {
|
|
3466
3562
|
background-color: #f48fb1 !important;
|
|
3563
|
+
}
|
|
3564
|
+
.bg-pink-lighten-3 {
|
|
3467
3565
|
color: #000000 !important;
|
|
3468
3566
|
}
|
|
3469
3567
|
|
|
3470
3568
|
.bg-pink-lighten-2 {
|
|
3471
3569
|
background-color: #f06292 !important;
|
|
3570
|
+
}
|
|
3571
|
+
.bg-pink-lighten-2 {
|
|
3472
3572
|
color: #FFFFFF !important;
|
|
3473
3573
|
}
|
|
3474
3574
|
|
|
3475
3575
|
.bg-pink-lighten-1 {
|
|
3476
3576
|
background-color: #ec407a !important;
|
|
3577
|
+
}
|
|
3578
|
+
.bg-pink-lighten-1 {
|
|
3477
3579
|
color: #FFFFFF !important;
|
|
3478
3580
|
}
|
|
3479
3581
|
|
|
3480
3582
|
.bg-pink-darken-1 {
|
|
3481
3583
|
background-color: #d81b60 !important;
|
|
3584
|
+
}
|
|
3585
|
+
.bg-pink-darken-1 {
|
|
3482
3586
|
color: #FFFFFF !important;
|
|
3483
3587
|
}
|
|
3484
3588
|
|
|
3485
3589
|
.bg-pink-darken-2 {
|
|
3486
3590
|
background-color: #c2185b !important;
|
|
3591
|
+
}
|
|
3592
|
+
.bg-pink-darken-2 {
|
|
3487
3593
|
color: #FFFFFF !important;
|
|
3488
3594
|
}
|
|
3489
3595
|
|
|
3490
3596
|
.bg-pink-darken-3 {
|
|
3491
3597
|
background-color: #ad1457 !important;
|
|
3598
|
+
}
|
|
3599
|
+
.bg-pink-darken-3 {
|
|
3492
3600
|
color: #FFFFFF !important;
|
|
3493
3601
|
}
|
|
3494
3602
|
|
|
3495
3603
|
.bg-pink-darken-4 {
|
|
3496
3604
|
background-color: #880e4f !important;
|
|
3605
|
+
}
|
|
3606
|
+
.bg-pink-darken-4 {
|
|
3497
3607
|
color: #FFFFFF !important;
|
|
3498
3608
|
}
|
|
3499
3609
|
|
|
3500
3610
|
.bg-pink-accent-1 {
|
|
3501
3611
|
background-color: #ff80ab !important;
|
|
3612
|
+
}
|
|
3613
|
+
.bg-pink-accent-1 {
|
|
3502
3614
|
color: #FFFFFF !important;
|
|
3503
3615
|
}
|
|
3504
3616
|
|
|
3505
3617
|
.bg-pink-accent-2 {
|
|
3506
3618
|
background-color: #ff4081 !important;
|
|
3619
|
+
}
|
|
3620
|
+
.bg-pink-accent-2 {
|
|
3507
3621
|
color: #FFFFFF !important;
|
|
3508
3622
|
}
|
|
3509
3623
|
|
|
3510
3624
|
.bg-pink-accent-3 {
|
|
3511
3625
|
background-color: #f50057 !important;
|
|
3626
|
+
}
|
|
3627
|
+
.bg-pink-accent-3 {
|
|
3512
3628
|
color: #FFFFFF !important;
|
|
3513
3629
|
}
|
|
3514
3630
|
|
|
3515
3631
|
.bg-pink-accent-4 {
|
|
3516
3632
|
background-color: #c51162 !important;
|
|
3633
|
+
}
|
|
3634
|
+
.bg-pink-accent-4 {
|
|
3517
3635
|
color: #FFFFFF !important;
|
|
3518
3636
|
}
|
|
3519
3637
|
|
|
3520
3638
|
.bg-purple {
|
|
3521
3639
|
background-color: #9c27b0 !important;
|
|
3640
|
+
}
|
|
3641
|
+
.bg-purple {
|
|
3522
3642
|
color: #FFFFFF !important;
|
|
3523
3643
|
}
|
|
3524
3644
|
|
|
3525
3645
|
.bg-purple-lighten-5 {
|
|
3526
3646
|
background-color: #f3e5f5 !important;
|
|
3647
|
+
}
|
|
3648
|
+
.bg-purple-lighten-5 {
|
|
3527
3649
|
color: #000000 !important;
|
|
3528
3650
|
}
|
|
3529
3651
|
|
|
3530
3652
|
.bg-purple-lighten-4 {
|
|
3531
3653
|
background-color: #e1bee7 !important;
|
|
3654
|
+
}
|
|
3655
|
+
.bg-purple-lighten-4 {
|
|
3532
3656
|
color: #000000 !important;
|
|
3533
3657
|
}
|
|
3534
3658
|
|
|
3535
3659
|
.bg-purple-lighten-3 {
|
|
3536
3660
|
background-color: #ce93d8 !important;
|
|
3661
|
+
}
|
|
3662
|
+
.bg-purple-lighten-3 {
|
|
3537
3663
|
color: #FFFFFF !important;
|
|
3538
3664
|
}
|
|
3539
3665
|
|
|
3540
3666
|
.bg-purple-lighten-2 {
|
|
3541
3667
|
background-color: #ba68c8 !important;
|
|
3668
|
+
}
|
|
3669
|
+
.bg-purple-lighten-2 {
|
|
3542
3670
|
color: #FFFFFF !important;
|
|
3543
3671
|
}
|
|
3544
3672
|
|
|
3545
3673
|
.bg-purple-lighten-1 {
|
|
3546
3674
|
background-color: #ab47bc !important;
|
|
3675
|
+
}
|
|
3676
|
+
.bg-purple-lighten-1 {
|
|
3547
3677
|
color: #FFFFFF !important;
|
|
3548
3678
|
}
|
|
3549
3679
|
|
|
3550
3680
|
.bg-purple-darken-1 {
|
|
3551
3681
|
background-color: #8e24aa !important;
|
|
3682
|
+
}
|
|
3683
|
+
.bg-purple-darken-1 {
|
|
3552
3684
|
color: #FFFFFF !important;
|
|
3553
3685
|
}
|
|
3554
3686
|
|
|
3555
3687
|
.bg-purple-darken-2 {
|
|
3556
3688
|
background-color: #7b1fa2 !important;
|
|
3689
|
+
}
|
|
3690
|
+
.bg-purple-darken-2 {
|
|
3557
3691
|
color: #FFFFFF !important;
|
|
3558
3692
|
}
|
|
3559
3693
|
|
|
3560
3694
|
.bg-purple-darken-3 {
|
|
3561
3695
|
background-color: #6a1b9a !important;
|
|
3696
|
+
}
|
|
3697
|
+
.bg-purple-darken-3 {
|
|
3562
3698
|
color: #FFFFFF !important;
|
|
3563
3699
|
}
|
|
3564
3700
|
|
|
3565
3701
|
.bg-purple-darken-4 {
|
|
3566
3702
|
background-color: #4a148c !important;
|
|
3703
|
+
}
|
|
3704
|
+
.bg-purple-darken-4 {
|
|
3567
3705
|
color: #FFFFFF !important;
|
|
3568
3706
|
}
|
|
3569
3707
|
|
|
3570
3708
|
.bg-purple-accent-1 {
|
|
3571
3709
|
background-color: #ea80fc !important;
|
|
3710
|
+
}
|
|
3711
|
+
.bg-purple-accent-1 {
|
|
3572
3712
|
color: #FFFFFF !important;
|
|
3573
3713
|
}
|
|
3574
3714
|
|
|
3575
3715
|
.bg-purple-accent-2 {
|
|
3576
3716
|
background-color: #e040fb !important;
|
|
3717
|
+
}
|
|
3718
|
+
.bg-purple-accent-2 {
|
|
3577
3719
|
color: #FFFFFF !important;
|
|
3578
3720
|
}
|
|
3579
3721
|
|
|
3580
3722
|
.bg-purple-accent-3 {
|
|
3581
3723
|
background-color: #d500f9 !important;
|
|
3724
|
+
}
|
|
3725
|
+
.bg-purple-accent-3 {
|
|
3582
3726
|
color: #FFFFFF !important;
|
|
3583
3727
|
}
|
|
3584
3728
|
|
|
3585
3729
|
.bg-purple-accent-4 {
|
|
3586
3730
|
background-color: #aa00ff !important;
|
|
3731
|
+
}
|
|
3732
|
+
.bg-purple-accent-4 {
|
|
3587
3733
|
color: #FFFFFF !important;
|
|
3588
3734
|
}
|
|
3589
3735
|
|
|
3590
3736
|
.bg-deep-purple {
|
|
3591
3737
|
background-color: #673ab7 !important;
|
|
3738
|
+
}
|
|
3739
|
+
.bg-deep-purple {
|
|
3592
3740
|
color: #FFFFFF !important;
|
|
3593
3741
|
}
|
|
3594
3742
|
|
|
3595
3743
|
.bg-deep-purple-lighten-5 {
|
|
3596
3744
|
background-color: #ede7f6 !important;
|
|
3745
|
+
}
|
|
3746
|
+
.bg-deep-purple-lighten-5 {
|
|
3597
3747
|
color: #000000 !important;
|
|
3598
3748
|
}
|
|
3599
3749
|
|
|
3600
3750
|
.bg-deep-purple-lighten-4 {
|
|
3601
3751
|
background-color: #d1c4e9 !important;
|
|
3752
|
+
}
|
|
3753
|
+
.bg-deep-purple-lighten-4 {
|
|
3602
3754
|
color: #000000 !important;
|
|
3603
3755
|
}
|
|
3604
3756
|
|
|
3605
3757
|
.bg-deep-purple-lighten-3 {
|
|
3606
3758
|
background-color: #b39ddb !important;
|
|
3759
|
+
}
|
|
3760
|
+
.bg-deep-purple-lighten-3 {
|
|
3607
3761
|
color: #FFFFFF !important;
|
|
3608
3762
|
}
|
|
3609
3763
|
|
|
3610
3764
|
.bg-deep-purple-lighten-2 {
|
|
3611
3765
|
background-color: #9575cd !important;
|
|
3766
|
+
}
|
|
3767
|
+
.bg-deep-purple-lighten-2 {
|
|
3612
3768
|
color: #FFFFFF !important;
|
|
3613
3769
|
}
|
|
3614
3770
|
|
|
3615
3771
|
.bg-deep-purple-lighten-1 {
|
|
3616
3772
|
background-color: #7e57c2 !important;
|
|
3773
|
+
}
|
|
3774
|
+
.bg-deep-purple-lighten-1 {
|
|
3617
3775
|
color: #FFFFFF !important;
|
|
3618
3776
|
}
|
|
3619
3777
|
|
|
3620
3778
|
.bg-deep-purple-darken-1 {
|
|
3621
3779
|
background-color: #5e35b1 !important;
|
|
3780
|
+
}
|
|
3781
|
+
.bg-deep-purple-darken-1 {
|
|
3622
3782
|
color: #FFFFFF !important;
|
|
3623
3783
|
}
|
|
3624
3784
|
|
|
3625
3785
|
.bg-deep-purple-darken-2 {
|
|
3626
3786
|
background-color: #512da8 !important;
|
|
3787
|
+
}
|
|
3788
|
+
.bg-deep-purple-darken-2 {
|
|
3627
3789
|
color: #FFFFFF !important;
|
|
3628
3790
|
}
|
|
3629
3791
|
|
|
3630
3792
|
.bg-deep-purple-darken-3 {
|
|
3631
3793
|
background-color: #4527a0 !important;
|
|
3794
|
+
}
|
|
3795
|
+
.bg-deep-purple-darken-3 {
|
|
3632
3796
|
color: #FFFFFF !important;
|
|
3633
3797
|
}
|
|
3634
3798
|
|
|
3635
3799
|
.bg-deep-purple-darken-4 {
|
|
3636
3800
|
background-color: #311b92 !important;
|
|
3801
|
+
}
|
|
3802
|
+
.bg-deep-purple-darken-4 {
|
|
3637
3803
|
color: #FFFFFF !important;
|
|
3638
3804
|
}
|
|
3639
3805
|
|
|
3640
3806
|
.bg-deep-purple-accent-1 {
|
|
3641
3807
|
background-color: #b388ff !important;
|
|
3808
|
+
}
|
|
3809
|
+
.bg-deep-purple-accent-1 {
|
|
3642
3810
|
color: #FFFFFF !important;
|
|
3643
3811
|
}
|
|
3644
3812
|
|
|
3645
3813
|
.bg-deep-purple-accent-2 {
|
|
3646
3814
|
background-color: #7c4dff !important;
|
|
3815
|
+
}
|
|
3816
|
+
.bg-deep-purple-accent-2 {
|
|
3647
3817
|
color: #FFFFFF !important;
|
|
3648
3818
|
}
|
|
3649
3819
|
|
|
3650
3820
|
.bg-deep-purple-accent-3 {
|
|
3651
3821
|
background-color: #651fff !important;
|
|
3822
|
+
}
|
|
3823
|
+
.bg-deep-purple-accent-3 {
|
|
3652
3824
|
color: #FFFFFF !important;
|
|
3653
3825
|
}
|
|
3654
3826
|
|
|
3655
3827
|
.bg-deep-purple-accent-4 {
|
|
3656
3828
|
background-color: #6200ea !important;
|
|
3829
|
+
}
|
|
3830
|
+
.bg-deep-purple-accent-4 {
|
|
3657
3831
|
color: #FFFFFF !important;
|
|
3658
3832
|
}
|
|
3659
3833
|
|
|
3660
3834
|
.bg-indigo {
|
|
3661
3835
|
background-color: #3f51b5 !important;
|
|
3836
|
+
}
|
|
3837
|
+
.bg-indigo {
|
|
3662
3838
|
color: #FFFFFF !important;
|
|
3663
3839
|
}
|
|
3664
3840
|
|
|
3665
3841
|
.bg-indigo-lighten-5 {
|
|
3666
3842
|
background-color: #e8eaf6 !important;
|
|
3843
|
+
}
|
|
3844
|
+
.bg-indigo-lighten-5 {
|
|
3667
3845
|
color: #000000 !important;
|
|
3668
3846
|
}
|
|
3669
3847
|
|
|
3670
3848
|
.bg-indigo-lighten-4 {
|
|
3671
3849
|
background-color: #c5cae9 !important;
|
|
3850
|
+
}
|
|
3851
|
+
.bg-indigo-lighten-4 {
|
|
3672
3852
|
color: #000000 !important;
|
|
3673
3853
|
}
|
|
3674
3854
|
|
|
3675
3855
|
.bg-indigo-lighten-3 {
|
|
3676
3856
|
background-color: #9fa8da !important;
|
|
3857
|
+
}
|
|
3858
|
+
.bg-indigo-lighten-3 {
|
|
3677
3859
|
color: #FFFFFF !important;
|
|
3678
3860
|
}
|
|
3679
3861
|
|
|
3680
3862
|
.bg-indigo-lighten-2 {
|
|
3681
3863
|
background-color: #7986cb !important;
|
|
3864
|
+
}
|
|
3865
|
+
.bg-indigo-lighten-2 {
|
|
3682
3866
|
color: #FFFFFF !important;
|
|
3683
3867
|
}
|
|
3684
3868
|
|
|
3685
3869
|
.bg-indigo-lighten-1 {
|
|
3686
3870
|
background-color: #5c6bc0 !important;
|
|
3871
|
+
}
|
|
3872
|
+
.bg-indigo-lighten-1 {
|
|
3687
3873
|
color: #FFFFFF !important;
|
|
3688
3874
|
}
|
|
3689
3875
|
|
|
3690
3876
|
.bg-indigo-darken-1 {
|
|
3691
3877
|
background-color: #3949ab !important;
|
|
3878
|
+
}
|
|
3879
|
+
.bg-indigo-darken-1 {
|
|
3692
3880
|
color: #FFFFFF !important;
|
|
3693
3881
|
}
|
|
3694
3882
|
|
|
3695
3883
|
.bg-indigo-darken-2 {
|
|
3696
3884
|
background-color: #303f9f !important;
|
|
3885
|
+
}
|
|
3886
|
+
.bg-indigo-darken-2 {
|
|
3697
3887
|
color: #FFFFFF !important;
|
|
3698
3888
|
}
|
|
3699
3889
|
|
|
3700
3890
|
.bg-indigo-darken-3 {
|
|
3701
3891
|
background-color: #283593 !important;
|
|
3892
|
+
}
|
|
3893
|
+
.bg-indigo-darken-3 {
|
|
3702
3894
|
color: #FFFFFF !important;
|
|
3703
3895
|
}
|
|
3704
3896
|
|
|
3705
3897
|
.bg-indigo-darken-4 {
|
|
3706
3898
|
background-color: #1a237e !important;
|
|
3899
|
+
}
|
|
3900
|
+
.bg-indigo-darken-4 {
|
|
3707
3901
|
color: #FFFFFF !important;
|
|
3708
3902
|
}
|
|
3709
3903
|
|
|
3710
3904
|
.bg-indigo-accent-1 {
|
|
3711
3905
|
background-color: #8c9eff !important;
|
|
3906
|
+
}
|
|
3907
|
+
.bg-indigo-accent-1 {
|
|
3712
3908
|
color: #FFFFFF !important;
|
|
3713
3909
|
}
|
|
3714
3910
|
|
|
3715
3911
|
.bg-indigo-accent-2 {
|
|
3716
3912
|
background-color: #536dfe !important;
|
|
3913
|
+
}
|
|
3914
|
+
.bg-indigo-accent-2 {
|
|
3717
3915
|
color: #FFFFFF !important;
|
|
3718
3916
|
}
|
|
3719
3917
|
|
|
3720
3918
|
.bg-indigo-accent-3 {
|
|
3721
3919
|
background-color: #3d5afe !important;
|
|
3920
|
+
}
|
|
3921
|
+
.bg-indigo-accent-3 {
|
|
3722
3922
|
color: #FFFFFF !important;
|
|
3723
3923
|
}
|
|
3724
3924
|
|
|
3725
3925
|
.bg-indigo-accent-4 {
|
|
3726
3926
|
background-color: #304ffe !important;
|
|
3927
|
+
}
|
|
3928
|
+
.bg-indigo-accent-4 {
|
|
3727
3929
|
color: #FFFFFF !important;
|
|
3728
3930
|
}
|
|
3729
3931
|
|
|
3730
3932
|
.bg-blue {
|
|
3731
3933
|
background-color: #2196F3 !important;
|
|
3934
|
+
}
|
|
3935
|
+
.bg-blue {
|
|
3732
3936
|
color: #FFFFFF !important;
|
|
3733
3937
|
}
|
|
3734
3938
|
|
|
3735
3939
|
.bg-blue-lighten-5 {
|
|
3736
3940
|
background-color: #E3F2FD !important;
|
|
3941
|
+
}
|
|
3942
|
+
.bg-blue-lighten-5 {
|
|
3737
3943
|
color: #000000 !important;
|
|
3738
3944
|
}
|
|
3739
3945
|
|
|
3740
3946
|
.bg-blue-lighten-4 {
|
|
3741
3947
|
background-color: #BBDEFB !important;
|
|
3948
|
+
}
|
|
3949
|
+
.bg-blue-lighten-4 {
|
|
3742
3950
|
color: #000000 !important;
|
|
3743
3951
|
}
|
|
3744
3952
|
|
|
3745
3953
|
.bg-blue-lighten-3 {
|
|
3746
3954
|
background-color: #90CAF9 !important;
|
|
3955
|
+
}
|
|
3956
|
+
.bg-blue-lighten-3 {
|
|
3747
3957
|
color: #000000 !important;
|
|
3748
3958
|
}
|
|
3749
3959
|
|
|
3750
3960
|
.bg-blue-lighten-2 {
|
|
3751
3961
|
background-color: #64B5F6 !important;
|
|
3962
|
+
}
|
|
3963
|
+
.bg-blue-lighten-2 {
|
|
3752
3964
|
color: #000000 !important;
|
|
3753
3965
|
}
|
|
3754
3966
|
|
|
3755
3967
|
.bg-blue-lighten-1 {
|
|
3756
3968
|
background-color: #42A5F5 !important;
|
|
3969
|
+
}
|
|
3970
|
+
.bg-blue-lighten-1 {
|
|
3757
3971
|
color: #FFFFFF !important;
|
|
3758
3972
|
}
|
|
3759
3973
|
|
|
3760
3974
|
.bg-blue-darken-1 {
|
|
3761
3975
|
background-color: #1E88E5 !important;
|
|
3976
|
+
}
|
|
3977
|
+
.bg-blue-darken-1 {
|
|
3762
3978
|
color: #FFFFFF !important;
|
|
3763
3979
|
}
|
|
3764
3980
|
|
|
3765
3981
|
.bg-blue-darken-2 {
|
|
3766
3982
|
background-color: #1976D2 !important;
|
|
3983
|
+
}
|
|
3984
|
+
.bg-blue-darken-2 {
|
|
3767
3985
|
color: #FFFFFF !important;
|
|
3768
3986
|
}
|
|
3769
3987
|
|
|
3770
3988
|
.bg-blue-darken-3 {
|
|
3771
3989
|
background-color: #1565C0 !important;
|
|
3990
|
+
}
|
|
3991
|
+
.bg-blue-darken-3 {
|
|
3772
3992
|
color: #FFFFFF !important;
|
|
3773
3993
|
}
|
|
3774
3994
|
|
|
3775
3995
|
.bg-blue-darken-4 {
|
|
3776
3996
|
background-color: #0D47A1 !important;
|
|
3997
|
+
}
|
|
3998
|
+
.bg-blue-darken-4 {
|
|
3777
3999
|
color: #FFFFFF !important;
|
|
3778
4000
|
}
|
|
3779
4001
|
|
|
3780
4002
|
.bg-blue-accent-1 {
|
|
3781
4003
|
background-color: #82B1FF !important;
|
|
4004
|
+
}
|
|
4005
|
+
.bg-blue-accent-1 {
|
|
3782
4006
|
color: #000000 !important;
|
|
3783
4007
|
}
|
|
3784
4008
|
|
|
3785
4009
|
.bg-blue-accent-2 {
|
|
3786
4010
|
background-color: #448AFF !important;
|
|
4011
|
+
}
|
|
4012
|
+
.bg-blue-accent-2 {
|
|
3787
4013
|
color: #FFFFFF !important;
|
|
3788
4014
|
}
|
|
3789
4015
|
|
|
3790
4016
|
.bg-blue-accent-3 {
|
|
3791
4017
|
background-color: #2979FF !important;
|
|
4018
|
+
}
|
|
4019
|
+
.bg-blue-accent-3 {
|
|
3792
4020
|
color: #FFFFFF !important;
|
|
3793
4021
|
}
|
|
3794
4022
|
|
|
3795
4023
|
.bg-blue-accent-4 {
|
|
3796
4024
|
background-color: #2962FF !important;
|
|
4025
|
+
}
|
|
4026
|
+
.bg-blue-accent-4 {
|
|
3797
4027
|
color: #FFFFFF !important;
|
|
3798
4028
|
}
|
|
3799
4029
|
|
|
3800
4030
|
.bg-light-blue {
|
|
3801
4031
|
background-color: #03a9f4 !important;
|
|
4032
|
+
}
|
|
4033
|
+
.bg-light-blue {
|
|
3802
4034
|
color: #FFFFFF !important;
|
|
3803
4035
|
}
|
|
3804
4036
|
|
|
3805
4037
|
.bg-light-blue-lighten-5 {
|
|
3806
4038
|
background-color: #e1f5fe !important;
|
|
4039
|
+
}
|
|
4040
|
+
.bg-light-blue-lighten-5 {
|
|
3807
4041
|
color: #000000 !important;
|
|
3808
4042
|
}
|
|
3809
4043
|
|
|
3810
4044
|
.bg-light-blue-lighten-4 {
|
|
3811
4045
|
background-color: #b3e5fc !important;
|
|
4046
|
+
}
|
|
4047
|
+
.bg-light-blue-lighten-4 {
|
|
3812
4048
|
color: #000000 !important;
|
|
3813
4049
|
}
|
|
3814
4050
|
|
|
3815
4051
|
.bg-light-blue-lighten-3 {
|
|
3816
4052
|
background-color: #81d4fa !important;
|
|
4053
|
+
}
|
|
4054
|
+
.bg-light-blue-lighten-3 {
|
|
3817
4055
|
color: #000000 !important;
|
|
3818
4056
|
}
|
|
3819
4057
|
|
|
3820
4058
|
.bg-light-blue-lighten-2 {
|
|
3821
4059
|
background-color: #4fc3f7 !important;
|
|
4060
|
+
}
|
|
4061
|
+
.bg-light-blue-lighten-2 {
|
|
3822
4062
|
color: #000000 !important;
|
|
3823
4063
|
}
|
|
3824
4064
|
|
|
3825
4065
|
.bg-light-blue-lighten-1 {
|
|
3826
4066
|
background-color: #29b6f6 !important;
|
|
4067
|
+
}
|
|
4068
|
+
.bg-light-blue-lighten-1 {
|
|
3827
4069
|
color: #000000 !important;
|
|
3828
4070
|
}
|
|
3829
4071
|
|
|
3830
4072
|
.bg-light-blue-darken-1 {
|
|
3831
4073
|
background-color: #039be5 !important;
|
|
4074
|
+
}
|
|
4075
|
+
.bg-light-blue-darken-1 {
|
|
3832
4076
|
color: #FFFFFF !important;
|
|
3833
4077
|
}
|
|
3834
4078
|
|
|
3835
4079
|
.bg-light-blue-darken-2 {
|
|
3836
4080
|
background-color: #0288d1 !important;
|
|
4081
|
+
}
|
|
4082
|
+
.bg-light-blue-darken-2 {
|
|
3837
4083
|
color: #FFFFFF !important;
|
|
3838
4084
|
}
|
|
3839
4085
|
|
|
3840
4086
|
.bg-light-blue-darken-3 {
|
|
3841
4087
|
background-color: #0277bd !important;
|
|
4088
|
+
}
|
|
4089
|
+
.bg-light-blue-darken-3 {
|
|
3842
4090
|
color: #FFFFFF !important;
|
|
3843
4091
|
}
|
|
3844
4092
|
|
|
3845
4093
|
.bg-light-blue-darken-4 {
|
|
3846
4094
|
background-color: #01579b !important;
|
|
4095
|
+
}
|
|
4096
|
+
.bg-light-blue-darken-4 {
|
|
3847
4097
|
color: #FFFFFF !important;
|
|
3848
4098
|
}
|
|
3849
4099
|
|
|
3850
4100
|
.bg-light-blue-accent-1 {
|
|
3851
4101
|
background-color: #80d8ff !important;
|
|
4102
|
+
}
|
|
4103
|
+
.bg-light-blue-accent-1 {
|
|
3852
4104
|
color: #000000 !important;
|
|
3853
4105
|
}
|
|
3854
4106
|
|
|
3855
4107
|
.bg-light-blue-accent-2 {
|
|
3856
4108
|
background-color: #40c4ff !important;
|
|
4109
|
+
}
|
|
4110
|
+
.bg-light-blue-accent-2 {
|
|
3857
4111
|
color: #000000 !important;
|
|
3858
4112
|
}
|
|
3859
4113
|
|
|
3860
4114
|
.bg-light-blue-accent-3 {
|
|
3861
4115
|
background-color: #00b0ff !important;
|
|
4116
|
+
}
|
|
4117
|
+
.bg-light-blue-accent-3 {
|
|
3862
4118
|
color: #FFFFFF !important;
|
|
3863
4119
|
}
|
|
3864
4120
|
|
|
3865
4121
|
.bg-light-blue-accent-4 {
|
|
3866
4122
|
background-color: #0091ea !important;
|
|
4123
|
+
}
|
|
4124
|
+
.bg-light-blue-accent-4 {
|
|
3867
4125
|
color: #FFFFFF !important;
|
|
3868
4126
|
}
|
|
3869
4127
|
|
|
3870
4128
|
.bg-cyan {
|
|
3871
4129
|
background-color: #00bcd4 !important;
|
|
4130
|
+
}
|
|
4131
|
+
.bg-cyan {
|
|
3872
4132
|
color: #000000 !important;
|
|
3873
4133
|
}
|
|
3874
4134
|
|
|
3875
4135
|
.bg-cyan-lighten-5 {
|
|
3876
4136
|
background-color: #e0f7fa !important;
|
|
4137
|
+
}
|
|
4138
|
+
.bg-cyan-lighten-5 {
|
|
3877
4139
|
color: #000000 !important;
|
|
3878
4140
|
}
|
|
3879
4141
|
|
|
3880
4142
|
.bg-cyan-lighten-4 {
|
|
3881
4143
|
background-color: #b2ebf2 !important;
|
|
4144
|
+
}
|
|
4145
|
+
.bg-cyan-lighten-4 {
|
|
3882
4146
|
color: #000000 !important;
|
|
3883
4147
|
}
|
|
3884
4148
|
|
|
3885
4149
|
.bg-cyan-lighten-3 {
|
|
3886
4150
|
background-color: #80deea !important;
|
|
4151
|
+
}
|
|
4152
|
+
.bg-cyan-lighten-3 {
|
|
3887
4153
|
color: #000000 !important;
|
|
3888
4154
|
}
|
|
3889
4155
|
|
|
3890
4156
|
.bg-cyan-lighten-2 {
|
|
3891
4157
|
background-color: #4dd0e1 !important;
|
|
4158
|
+
}
|
|
4159
|
+
.bg-cyan-lighten-2 {
|
|
3892
4160
|
color: #000000 !important;
|
|
3893
4161
|
}
|
|
3894
4162
|
|
|
3895
4163
|
.bg-cyan-lighten-1 {
|
|
3896
4164
|
background-color: #26c6da !important;
|
|
4165
|
+
}
|
|
4166
|
+
.bg-cyan-lighten-1 {
|
|
3897
4167
|
color: #000000 !important;
|
|
3898
4168
|
}
|
|
3899
4169
|
|
|
3900
4170
|
.bg-cyan-darken-1 {
|
|
3901
4171
|
background-color: #00acc1 !important;
|
|
4172
|
+
}
|
|
4173
|
+
.bg-cyan-darken-1 {
|
|
3902
4174
|
color: #FFFFFF !important;
|
|
3903
4175
|
}
|
|
3904
4176
|
|
|
3905
4177
|
.bg-cyan-darken-2 {
|
|
3906
4178
|
background-color: #0097a7 !important;
|
|
4179
|
+
}
|
|
4180
|
+
.bg-cyan-darken-2 {
|
|
3907
4181
|
color: #FFFFFF !important;
|
|
3908
4182
|
}
|
|
3909
4183
|
|
|
3910
4184
|
.bg-cyan-darken-3 {
|
|
3911
4185
|
background-color: #00838f !important;
|
|
4186
|
+
}
|
|
4187
|
+
.bg-cyan-darken-3 {
|
|
3912
4188
|
color: #FFFFFF !important;
|
|
3913
4189
|
}
|
|
3914
4190
|
|
|
3915
4191
|
.bg-cyan-darken-4 {
|
|
3916
4192
|
background-color: #006064 !important;
|
|
4193
|
+
}
|
|
4194
|
+
.bg-cyan-darken-4 {
|
|
3917
4195
|
color: #FFFFFF !important;
|
|
3918
4196
|
}
|
|
3919
4197
|
|
|
3920
4198
|
.bg-cyan-accent-1 {
|
|
3921
4199
|
background-color: #84ffff !important;
|
|
4200
|
+
}
|
|
4201
|
+
.bg-cyan-accent-1 {
|
|
3922
4202
|
color: #000000 !important;
|
|
3923
4203
|
}
|
|
3924
4204
|
|
|
3925
4205
|
.bg-cyan-accent-2 {
|
|
3926
4206
|
background-color: #18ffff !important;
|
|
4207
|
+
}
|
|
4208
|
+
.bg-cyan-accent-2 {
|
|
3927
4209
|
color: #000000 !important;
|
|
3928
4210
|
}
|
|
3929
4211
|
|
|
3930
4212
|
.bg-cyan-accent-3 {
|
|
3931
4213
|
background-color: #00e5ff !important;
|
|
4214
|
+
}
|
|
4215
|
+
.bg-cyan-accent-3 {
|
|
3932
4216
|
color: #000000 !important;
|
|
3933
4217
|
}
|
|
3934
4218
|
|
|
3935
4219
|
.bg-cyan-accent-4 {
|
|
3936
4220
|
background-color: #00b8d4 !important;
|
|
4221
|
+
}
|
|
4222
|
+
.bg-cyan-accent-4 {
|
|
3937
4223
|
color: #FFFFFF !important;
|
|
3938
4224
|
}
|
|
3939
4225
|
|
|
3940
4226
|
.bg-teal {
|
|
3941
4227
|
background-color: #009688 !important;
|
|
4228
|
+
}
|
|
4229
|
+
.bg-teal {
|
|
3942
4230
|
color: #FFFFFF !important;
|
|
3943
4231
|
}
|
|
3944
4232
|
|
|
3945
4233
|
.bg-teal-lighten-5 {
|
|
3946
4234
|
background-color: #e0f2f1 !important;
|
|
4235
|
+
}
|
|
4236
|
+
.bg-teal-lighten-5 {
|
|
3947
4237
|
color: #000000 !important;
|
|
3948
4238
|
}
|
|
3949
4239
|
|
|
3950
4240
|
.bg-teal-lighten-4 {
|
|
3951
4241
|
background-color: #b2dfdb !important;
|
|
4242
|
+
}
|
|
4243
|
+
.bg-teal-lighten-4 {
|
|
3952
4244
|
color: #000000 !important;
|
|
3953
4245
|
}
|
|
3954
4246
|
|
|
3955
4247
|
.bg-teal-lighten-3 {
|
|
3956
4248
|
background-color: #80cbc4 !important;
|
|
4249
|
+
}
|
|
4250
|
+
.bg-teal-lighten-3 {
|
|
3957
4251
|
color: #000000 !important;
|
|
3958
4252
|
}
|
|
3959
4253
|
|
|
3960
4254
|
.bg-teal-lighten-2 {
|
|
3961
4255
|
background-color: #4db6ac !important;
|
|
4256
|
+
}
|
|
4257
|
+
.bg-teal-lighten-2 {
|
|
3962
4258
|
color: #FFFFFF !important;
|
|
3963
4259
|
}
|
|
3964
4260
|
|
|
3965
4261
|
.bg-teal-lighten-1 {
|
|
3966
4262
|
background-color: #26a69a !important;
|
|
4263
|
+
}
|
|
4264
|
+
.bg-teal-lighten-1 {
|
|
3967
4265
|
color: #FFFFFF !important;
|
|
3968
4266
|
}
|
|
3969
4267
|
|
|
3970
4268
|
.bg-teal-darken-1 {
|
|
3971
4269
|
background-color: #00897b !important;
|
|
4270
|
+
}
|
|
4271
|
+
.bg-teal-darken-1 {
|
|
3972
4272
|
color: #FFFFFF !important;
|
|
3973
4273
|
}
|
|
3974
4274
|
|
|
3975
4275
|
.bg-teal-darken-2 {
|
|
3976
4276
|
background-color: #00796b !important;
|
|
4277
|
+
}
|
|
4278
|
+
.bg-teal-darken-2 {
|
|
3977
4279
|
color: #FFFFFF !important;
|
|
3978
4280
|
}
|
|
3979
4281
|
|
|
3980
4282
|
.bg-teal-darken-3 {
|
|
3981
4283
|
background-color: #00695c !important;
|
|
4284
|
+
}
|
|
4285
|
+
.bg-teal-darken-3 {
|
|
3982
4286
|
color: #FFFFFF !important;
|
|
3983
4287
|
}
|
|
3984
4288
|
|
|
3985
4289
|
.bg-teal-darken-4 {
|
|
3986
4290
|
background-color: #004d40 !important;
|
|
4291
|
+
}
|
|
4292
|
+
.bg-teal-darken-4 {
|
|
3987
4293
|
color: #FFFFFF !important;
|
|
3988
4294
|
}
|
|
3989
4295
|
|
|
3990
4296
|
.bg-teal-accent-1 {
|
|
3991
4297
|
background-color: #a7ffeb !important;
|
|
4298
|
+
}
|
|
4299
|
+
.bg-teal-accent-1 {
|
|
3992
4300
|
color: #000000 !important;
|
|
3993
4301
|
}
|
|
3994
4302
|
|
|
3995
4303
|
.bg-teal-accent-2 {
|
|
3996
4304
|
background-color: #64ffda !important;
|
|
4305
|
+
}
|
|
4306
|
+
.bg-teal-accent-2 {
|
|
3997
4307
|
color: #000000 !important;
|
|
3998
4308
|
}
|
|
3999
4309
|
|
|
4000
4310
|
.bg-teal-accent-3 {
|
|
4001
4311
|
background-color: #1de9b6 !important;
|
|
4312
|
+
}
|
|
4313
|
+
.bg-teal-accent-3 {
|
|
4002
4314
|
color: #000000 !important;
|
|
4003
4315
|
}
|
|
4004
4316
|
|
|
4005
4317
|
.bg-teal-accent-4 {
|
|
4006
4318
|
background-color: #00bfa5 !important;
|
|
4319
|
+
}
|
|
4320
|
+
.bg-teal-accent-4 {
|
|
4007
4321
|
color: #FFFFFF !important;
|
|
4008
4322
|
}
|
|
4009
4323
|
|
|
4010
4324
|
.bg-green {
|
|
4011
4325
|
background-color: #4CAF50 !important;
|
|
4326
|
+
}
|
|
4327
|
+
.bg-green {
|
|
4012
4328
|
color: #FFFFFF !important;
|
|
4013
4329
|
}
|
|
4014
4330
|
|
|
4015
4331
|
.bg-green-lighten-5 {
|
|
4016
4332
|
background-color: #E8F5E9 !important;
|
|
4333
|
+
}
|
|
4334
|
+
.bg-green-lighten-5 {
|
|
4017
4335
|
color: #000000 !important;
|
|
4018
4336
|
}
|
|
4019
4337
|
|
|
4020
4338
|
.bg-green-lighten-4 {
|
|
4021
4339
|
background-color: #C8E6C9 !important;
|
|
4340
|
+
}
|
|
4341
|
+
.bg-green-lighten-4 {
|
|
4022
4342
|
color: #000000 !important;
|
|
4023
4343
|
}
|
|
4024
4344
|
|
|
4025
4345
|
.bg-green-lighten-3 {
|
|
4026
4346
|
background-color: #A5D6A7 !important;
|
|
4347
|
+
}
|
|
4348
|
+
.bg-green-lighten-3 {
|
|
4027
4349
|
color: #000000 !important;
|
|
4028
4350
|
}
|
|
4029
4351
|
|
|
4030
4352
|
.bg-green-lighten-2 {
|
|
4031
4353
|
background-color: #81C784 !important;
|
|
4354
|
+
}
|
|
4355
|
+
.bg-green-lighten-2 {
|
|
4032
4356
|
color: #000000 !important;
|
|
4033
4357
|
}
|
|
4034
4358
|
|
|
4035
4359
|
.bg-green-lighten-1 {
|
|
4036
4360
|
background-color: #66BB6A !important;
|
|
4361
|
+
}
|
|
4362
|
+
.bg-green-lighten-1 {
|
|
4037
4363
|
color: #FFFFFF !important;
|
|
4038
4364
|
}
|
|
4039
4365
|
|
|
4040
4366
|
.bg-green-darken-1 {
|
|
4041
4367
|
background-color: #43A047 !important;
|
|
4368
|
+
}
|
|
4369
|
+
.bg-green-darken-1 {
|
|
4042
4370
|
color: #FFFFFF !important;
|
|
4043
4371
|
}
|
|
4044
4372
|
|
|
4045
4373
|
.bg-green-darken-2 {
|
|
4046
4374
|
background-color: #388E3C !important;
|
|
4375
|
+
}
|
|
4376
|
+
.bg-green-darken-2 {
|
|
4047
4377
|
color: #FFFFFF !important;
|
|
4048
4378
|
}
|
|
4049
4379
|
|
|
4050
4380
|
.bg-green-darken-3 {
|
|
4051
4381
|
background-color: #2E7D32 !important;
|
|
4382
|
+
}
|
|
4383
|
+
.bg-green-darken-3 {
|
|
4052
4384
|
color: #FFFFFF !important;
|
|
4053
4385
|
}
|
|
4054
4386
|
|
|
4055
4387
|
.bg-green-darken-4 {
|
|
4056
4388
|
background-color: #1B5E20 !important;
|
|
4389
|
+
}
|
|
4390
|
+
.bg-green-darken-4 {
|
|
4057
4391
|
color: #FFFFFF !important;
|
|
4058
4392
|
}
|
|
4059
4393
|
|
|
4060
4394
|
.bg-green-accent-1 {
|
|
4061
4395
|
background-color: #B9F6CA !important;
|
|
4396
|
+
}
|
|
4397
|
+
.bg-green-accent-1 {
|
|
4062
4398
|
color: #000000 !important;
|
|
4063
4399
|
}
|
|
4064
4400
|
|
|
4065
4401
|
.bg-green-accent-2 {
|
|
4066
4402
|
background-color: #69F0AE !important;
|
|
4403
|
+
}
|
|
4404
|
+
.bg-green-accent-2 {
|
|
4067
4405
|
color: #000000 !important;
|
|
4068
4406
|
}
|
|
4069
4407
|
|
|
4070
4408
|
.bg-green-accent-3 {
|
|
4071
4409
|
background-color: #00E676 !important;
|
|
4410
|
+
}
|
|
4411
|
+
.bg-green-accent-3 {
|
|
4072
4412
|
color: #000000 !important;
|
|
4073
4413
|
}
|
|
4074
4414
|
|
|
4075
4415
|
.bg-green-accent-4 {
|
|
4076
4416
|
background-color: #00C853 !important;
|
|
4417
|
+
}
|
|
4418
|
+
.bg-green-accent-4 {
|
|
4077
4419
|
color: #000000 !important;
|
|
4078
4420
|
}
|
|
4079
4421
|
|
|
4080
4422
|
.bg-light-green {
|
|
4081
4423
|
background-color: #8bc34a !important;
|
|
4424
|
+
}
|
|
4425
|
+
.bg-light-green {
|
|
4082
4426
|
color: #000000 !important;
|
|
4083
4427
|
}
|
|
4084
4428
|
|
|
4085
4429
|
.bg-light-green-lighten-5 {
|
|
4086
4430
|
background-color: #f1f8e9 !important;
|
|
4431
|
+
}
|
|
4432
|
+
.bg-light-green-lighten-5 {
|
|
4087
4433
|
color: #000000 !important;
|
|
4088
4434
|
}
|
|
4089
4435
|
|
|
4090
4436
|
.bg-light-green-lighten-4 {
|
|
4091
4437
|
background-color: #dcedc8 !important;
|
|
4438
|
+
}
|
|
4439
|
+
.bg-light-green-lighten-4 {
|
|
4092
4440
|
color: #000000 !important;
|
|
4093
4441
|
}
|
|
4094
4442
|
|
|
4095
4443
|
.bg-light-green-lighten-3 {
|
|
4096
4444
|
background-color: #c5e1a5 !important;
|
|
4445
|
+
}
|
|
4446
|
+
.bg-light-green-lighten-3 {
|
|
4097
4447
|
color: #000000 !important;
|
|
4098
4448
|
}
|
|
4099
4449
|
|
|
4100
4450
|
.bg-light-green-lighten-2 {
|
|
4101
4451
|
background-color: #aed581 !important;
|
|
4452
|
+
}
|
|
4453
|
+
.bg-light-green-lighten-2 {
|
|
4102
4454
|
color: #000000 !important;
|
|
4103
4455
|
}
|
|
4104
4456
|
|
|
4105
4457
|
.bg-light-green-lighten-1 {
|
|
4106
4458
|
background-color: #9ccc65 !important;
|
|
4459
|
+
}
|
|
4460
|
+
.bg-light-green-lighten-1 {
|
|
4107
4461
|
color: #000000 !important;
|
|
4108
4462
|
}
|
|
4109
4463
|
|
|
4110
4464
|
.bg-light-green-darken-1 {
|
|
4111
4465
|
background-color: #7cb342 !important;
|
|
4466
|
+
}
|
|
4467
|
+
.bg-light-green-darken-1 {
|
|
4112
4468
|
color: #FFFFFF !important;
|
|
4113
4469
|
}
|
|
4114
4470
|
|
|
4115
4471
|
.bg-light-green-darken-2 {
|
|
4116
4472
|
background-color: #689f38 !important;
|
|
4473
|
+
}
|
|
4474
|
+
.bg-light-green-darken-2 {
|
|
4117
4475
|
color: #FFFFFF !important;
|
|
4118
4476
|
}
|
|
4119
4477
|
|
|
4120
4478
|
.bg-light-green-darken-3 {
|
|
4121
4479
|
background-color: #558b2f !important;
|
|
4480
|
+
}
|
|
4481
|
+
.bg-light-green-darken-3 {
|
|
4122
4482
|
color: #FFFFFF !important;
|
|
4123
4483
|
}
|
|
4124
4484
|
|
|
4125
4485
|
.bg-light-green-darken-4 {
|
|
4126
4486
|
background-color: #33691e !important;
|
|
4487
|
+
}
|
|
4488
|
+
.bg-light-green-darken-4 {
|
|
4127
4489
|
color: #FFFFFF !important;
|
|
4128
4490
|
}
|
|
4129
4491
|
|
|
4130
4492
|
.bg-light-green-accent-1 {
|
|
4131
4493
|
background-color: #ccff90 !important;
|
|
4494
|
+
}
|
|
4495
|
+
.bg-light-green-accent-1 {
|
|
4132
4496
|
color: #000000 !important;
|
|
4133
4497
|
}
|
|
4134
4498
|
|
|
4135
4499
|
.bg-light-green-accent-2 {
|
|
4136
4500
|
background-color: #b2ff59 !important;
|
|
4501
|
+
}
|
|
4502
|
+
.bg-light-green-accent-2 {
|
|
4137
4503
|
color: #000000 !important;
|
|
4138
4504
|
}
|
|
4139
4505
|
|
|
4140
4506
|
.bg-light-green-accent-3 {
|
|
4141
4507
|
background-color: #76ff03 !important;
|
|
4508
|
+
}
|
|
4509
|
+
.bg-light-green-accent-3 {
|
|
4142
4510
|
color: #000000 !important;
|
|
4143
4511
|
}
|
|
4144
4512
|
|
|
4145
4513
|
.bg-light-green-accent-4 {
|
|
4146
4514
|
background-color: #64dd17 !important;
|
|
4515
|
+
}
|
|
4516
|
+
.bg-light-green-accent-4 {
|
|
4147
4517
|
color: #000000 !important;
|
|
4148
4518
|
}
|
|
4149
4519
|
|
|
4150
4520
|
.bg-lime {
|
|
4151
4521
|
background-color: #cddc39 !important;
|
|
4522
|
+
}
|
|
4523
|
+
.bg-lime {
|
|
4152
4524
|
color: #000000 !important;
|
|
4153
4525
|
}
|
|
4154
4526
|
|
|
4155
4527
|
.bg-lime-lighten-5 {
|
|
4156
4528
|
background-color: #f9fbe7 !important;
|
|
4529
|
+
}
|
|
4530
|
+
.bg-lime-lighten-5 {
|
|
4157
4531
|
color: #000000 !important;
|
|
4158
4532
|
}
|
|
4159
4533
|
|
|
4160
4534
|
.bg-lime-lighten-4 {
|
|
4161
4535
|
background-color: #f0f4c3 !important;
|
|
4536
|
+
}
|
|
4537
|
+
.bg-lime-lighten-4 {
|
|
4162
4538
|
color: #000000 !important;
|
|
4163
4539
|
}
|
|
4164
4540
|
|
|
4165
4541
|
.bg-lime-lighten-3 {
|
|
4166
4542
|
background-color: #e6ee9c !important;
|
|
4543
|
+
}
|
|
4544
|
+
.bg-lime-lighten-3 {
|
|
4167
4545
|
color: #000000 !important;
|
|
4168
4546
|
}
|
|
4169
4547
|
|
|
4170
4548
|
.bg-lime-lighten-2 {
|
|
4171
4549
|
background-color: #dce775 !important;
|
|
4550
|
+
}
|
|
4551
|
+
.bg-lime-lighten-2 {
|
|
4172
4552
|
color: #000000 !important;
|
|
4173
4553
|
}
|
|
4174
4554
|
|
|
4175
4555
|
.bg-lime-lighten-1 {
|
|
4176
4556
|
background-color: #d4e157 !important;
|
|
4557
|
+
}
|
|
4558
|
+
.bg-lime-lighten-1 {
|
|
4177
4559
|
color: #000000 !important;
|
|
4178
4560
|
}
|
|
4179
4561
|
|
|
4180
4562
|
.bg-lime-darken-1 {
|
|
4181
4563
|
background-color: #c0ca33 !important;
|
|
4564
|
+
}
|
|
4565
|
+
.bg-lime-darken-1 {
|
|
4182
4566
|
color: #000000 !important;
|
|
4183
4567
|
}
|
|
4184
4568
|
|
|
4185
4569
|
.bg-lime-darken-2 {
|
|
4186
4570
|
background-color: #afb42b !important;
|
|
4571
|
+
}
|
|
4572
|
+
.bg-lime-darken-2 {
|
|
4187
4573
|
color: #000000 !important;
|
|
4188
4574
|
}
|
|
4189
4575
|
|
|
4190
4576
|
.bg-lime-darken-3 {
|
|
4191
4577
|
background-color: #9e9d24 !important;
|
|
4578
|
+
}
|
|
4579
|
+
.bg-lime-darken-3 {
|
|
4192
4580
|
color: #FFFFFF !important;
|
|
4193
4581
|
}
|
|
4194
4582
|
|
|
4195
4583
|
.bg-lime-darken-4 {
|
|
4196
4584
|
background-color: #827717 !important;
|
|
4585
|
+
}
|
|
4586
|
+
.bg-lime-darken-4 {
|
|
4197
4587
|
color: #FFFFFF !important;
|
|
4198
4588
|
}
|
|
4199
4589
|
|
|
4200
4590
|
.bg-lime-accent-1 {
|
|
4201
4591
|
background-color: #f4ff81 !important;
|
|
4592
|
+
}
|
|
4593
|
+
.bg-lime-accent-1 {
|
|
4202
4594
|
color: #000000 !important;
|
|
4203
4595
|
}
|
|
4204
4596
|
|
|
4205
4597
|
.bg-lime-accent-2 {
|
|
4206
4598
|
background-color: #eeff41 !important;
|
|
4599
|
+
}
|
|
4600
|
+
.bg-lime-accent-2 {
|
|
4207
4601
|
color: #000000 !important;
|
|
4208
4602
|
}
|
|
4209
4603
|
|
|
4210
4604
|
.bg-lime-accent-3 {
|
|
4211
4605
|
background-color: #c6ff00 !important;
|
|
4606
|
+
}
|
|
4607
|
+
.bg-lime-accent-3 {
|
|
4212
4608
|
color: #000000 !important;
|
|
4213
4609
|
}
|
|
4214
4610
|
|
|
4215
4611
|
.bg-lime-accent-4 {
|
|
4216
4612
|
background-color: #aeea00 !important;
|
|
4613
|
+
}
|
|
4614
|
+
.bg-lime-accent-4 {
|
|
4217
4615
|
color: #000000 !important;
|
|
4218
4616
|
}
|
|
4219
4617
|
|
|
4220
4618
|
.bg-yellow {
|
|
4221
4619
|
background-color: #ffeb3b !important;
|
|
4620
|
+
}
|
|
4621
|
+
.bg-yellow {
|
|
4222
4622
|
color: #000000 !important;
|
|
4223
4623
|
}
|
|
4224
4624
|
|
|
4225
4625
|
.bg-yellow-lighten-5 {
|
|
4226
4626
|
background-color: #fffde7 !important;
|
|
4627
|
+
}
|
|
4628
|
+
.bg-yellow-lighten-5 {
|
|
4227
4629
|
color: #000000 !important;
|
|
4228
4630
|
}
|
|
4229
4631
|
|
|
4230
4632
|
.bg-yellow-lighten-4 {
|
|
4231
4633
|
background-color: #fff9c4 !important;
|
|
4634
|
+
}
|
|
4635
|
+
.bg-yellow-lighten-4 {
|
|
4232
4636
|
color: #000000 !important;
|
|
4233
4637
|
}
|
|
4234
4638
|
|
|
4235
4639
|
.bg-yellow-lighten-3 {
|
|
4236
4640
|
background-color: #fff59d !important;
|
|
4641
|
+
}
|
|
4642
|
+
.bg-yellow-lighten-3 {
|
|
4237
4643
|
color: #000000 !important;
|
|
4238
4644
|
}
|
|
4239
4645
|
|
|
4240
4646
|
.bg-yellow-lighten-2 {
|
|
4241
4647
|
background-color: #fff176 !important;
|
|
4648
|
+
}
|
|
4649
|
+
.bg-yellow-lighten-2 {
|
|
4242
4650
|
color: #000000 !important;
|
|
4243
4651
|
}
|
|
4244
4652
|
|
|
4245
4653
|
.bg-yellow-lighten-1 {
|
|
4246
4654
|
background-color: #ffee58 !important;
|
|
4655
|
+
}
|
|
4656
|
+
.bg-yellow-lighten-1 {
|
|
4247
4657
|
color: #000000 !important;
|
|
4248
4658
|
}
|
|
4249
4659
|
|
|
4250
4660
|
.bg-yellow-darken-1 {
|
|
4251
4661
|
background-color: #fdd835 !important;
|
|
4662
|
+
}
|
|
4663
|
+
.bg-yellow-darken-1 {
|
|
4252
4664
|
color: #000000 !important;
|
|
4253
4665
|
}
|
|
4254
4666
|
|
|
4255
4667
|
.bg-yellow-darken-2 {
|
|
4256
4668
|
background-color: #fbc02d !important;
|
|
4669
|
+
}
|
|
4670
|
+
.bg-yellow-darken-2 {
|
|
4257
4671
|
color: #000000 !important;
|
|
4258
4672
|
}
|
|
4259
4673
|
|
|
4260
4674
|
.bg-yellow-darken-3 {
|
|
4261
4675
|
background-color: #f9a825 !important;
|
|
4676
|
+
}
|
|
4677
|
+
.bg-yellow-darken-3 {
|
|
4262
4678
|
color: #000000 !important;
|
|
4263
4679
|
}
|
|
4264
4680
|
|
|
4265
4681
|
.bg-yellow-darken-4 {
|
|
4266
4682
|
background-color: #f57f17 !important;
|
|
4683
|
+
}
|
|
4684
|
+
.bg-yellow-darken-4 {
|
|
4267
4685
|
color: #FFFFFF !important;
|
|
4268
4686
|
}
|
|
4269
4687
|
|
|
4270
4688
|
.bg-yellow-accent-1 {
|
|
4271
4689
|
background-color: #ffff8d !important;
|
|
4690
|
+
}
|
|
4691
|
+
.bg-yellow-accent-1 {
|
|
4272
4692
|
color: #000000 !important;
|
|
4273
4693
|
}
|
|
4274
4694
|
|
|
4275
4695
|
.bg-yellow-accent-2 {
|
|
4276
4696
|
background-color: #ffff00 !important;
|
|
4697
|
+
}
|
|
4698
|
+
.bg-yellow-accent-2 {
|
|
4277
4699
|
color: #000000 !important;
|
|
4278
4700
|
}
|
|
4279
4701
|
|
|
4280
4702
|
.bg-yellow-accent-3 {
|
|
4281
4703
|
background-color: #ffea00 !important;
|
|
4704
|
+
}
|
|
4705
|
+
.bg-yellow-accent-3 {
|
|
4282
4706
|
color: #000000 !important;
|
|
4283
4707
|
}
|
|
4284
4708
|
|
|
4285
4709
|
.bg-yellow-accent-4 {
|
|
4286
4710
|
background-color: #ffd600 !important;
|
|
4711
|
+
}
|
|
4712
|
+
.bg-yellow-accent-4 {
|
|
4287
4713
|
color: #000000 !important;
|
|
4288
4714
|
}
|
|
4289
4715
|
|
|
4290
4716
|
.bg-amber {
|
|
4291
4717
|
background-color: #ffc107 !important;
|
|
4718
|
+
}
|
|
4719
|
+
.bg-amber {
|
|
4292
4720
|
color: #000000 !important;
|
|
4293
4721
|
}
|
|
4294
4722
|
|
|
4295
4723
|
.bg-amber-lighten-5 {
|
|
4296
4724
|
background-color: #fff8e1 !important;
|
|
4725
|
+
}
|
|
4726
|
+
.bg-amber-lighten-5 {
|
|
4297
4727
|
color: #000000 !important;
|
|
4298
4728
|
}
|
|
4299
4729
|
|
|
4300
4730
|
.bg-amber-lighten-4 {
|
|
4301
4731
|
background-color: #ffecb3 !important;
|
|
4732
|
+
}
|
|
4733
|
+
.bg-amber-lighten-4 {
|
|
4302
4734
|
color: #000000 !important;
|
|
4303
4735
|
}
|
|
4304
4736
|
|
|
4305
4737
|
.bg-amber-lighten-3 {
|
|
4306
4738
|
background-color: #ffe082 !important;
|
|
4739
|
+
}
|
|
4740
|
+
.bg-amber-lighten-3 {
|
|
4307
4741
|
color: #000000 !important;
|
|
4308
4742
|
}
|
|
4309
4743
|
|
|
4310
4744
|
.bg-amber-lighten-2 {
|
|
4311
4745
|
background-color: #ffd54f !important;
|
|
4746
|
+
}
|
|
4747
|
+
.bg-amber-lighten-2 {
|
|
4312
4748
|
color: #000000 !important;
|
|
4313
4749
|
}
|
|
4314
4750
|
|
|
4315
4751
|
.bg-amber-lighten-1 {
|
|
4316
4752
|
background-color: #ffca28 !important;
|
|
4753
|
+
}
|
|
4754
|
+
.bg-amber-lighten-1 {
|
|
4317
4755
|
color: #000000 !important;
|
|
4318
4756
|
}
|
|
4319
4757
|
|
|
4320
4758
|
.bg-amber-darken-1 {
|
|
4321
4759
|
background-color: #ffb300 !important;
|
|
4760
|
+
}
|
|
4761
|
+
.bg-amber-darken-1 {
|
|
4322
4762
|
color: #000000 !important;
|
|
4323
4763
|
}
|
|
4324
4764
|
|
|
4325
4765
|
.bg-amber-darken-2 {
|
|
4326
4766
|
background-color: #ffa000 !important;
|
|
4767
|
+
}
|
|
4768
|
+
.bg-amber-darken-2 {
|
|
4327
4769
|
color: #000000 !important;
|
|
4328
4770
|
}
|
|
4329
4771
|
|
|
4330
4772
|
.bg-amber-darken-3 {
|
|
4331
4773
|
background-color: #ff8f00 !important;
|
|
4774
|
+
}
|
|
4775
|
+
.bg-amber-darken-3 {
|
|
4332
4776
|
color: #000000 !important;
|
|
4333
4777
|
}
|
|
4334
4778
|
|
|
4335
4779
|
.bg-amber-darken-4 {
|
|
4336
4780
|
background-color: #ff6f00 !important;
|
|
4781
|
+
}
|
|
4782
|
+
.bg-amber-darken-4 {
|
|
4337
4783
|
color: #FFFFFF !important;
|
|
4338
4784
|
}
|
|
4339
4785
|
|
|
4340
4786
|
.bg-amber-accent-1 {
|
|
4341
4787
|
background-color: #ffe57f !important;
|
|
4788
|
+
}
|
|
4789
|
+
.bg-amber-accent-1 {
|
|
4342
4790
|
color: #000000 !important;
|
|
4343
4791
|
}
|
|
4344
4792
|
|
|
4345
4793
|
.bg-amber-accent-2 {
|
|
4346
4794
|
background-color: #ffd740 !important;
|
|
4795
|
+
}
|
|
4796
|
+
.bg-amber-accent-2 {
|
|
4347
4797
|
color: #000000 !important;
|
|
4348
4798
|
}
|
|
4349
4799
|
|
|
4350
4800
|
.bg-amber-accent-3 {
|
|
4351
4801
|
background-color: #ffc400 !important;
|
|
4802
|
+
}
|
|
4803
|
+
.bg-amber-accent-3 {
|
|
4352
4804
|
color: #000000 !important;
|
|
4353
4805
|
}
|
|
4354
4806
|
|
|
4355
4807
|
.bg-amber-accent-4 {
|
|
4356
4808
|
background-color: #ffab00 !important;
|
|
4809
|
+
}
|
|
4810
|
+
.bg-amber-accent-4 {
|
|
4357
4811
|
color: #000000 !important;
|
|
4358
4812
|
}
|
|
4359
4813
|
|
|
4360
4814
|
.bg-orange {
|
|
4361
4815
|
background-color: #ff9800 !important;
|
|
4816
|
+
}
|
|
4817
|
+
.bg-orange {
|
|
4362
4818
|
color: #000000 !important;
|
|
4363
4819
|
}
|
|
4364
4820
|
|
|
4365
4821
|
.bg-orange-lighten-5 {
|
|
4366
4822
|
background-color: #fff3e0 !important;
|
|
4823
|
+
}
|
|
4824
|
+
.bg-orange-lighten-5 {
|
|
4367
4825
|
color: #000000 !important;
|
|
4368
4826
|
}
|
|
4369
4827
|
|
|
4370
4828
|
.bg-orange-lighten-4 {
|
|
4371
4829
|
background-color: #ffe0b2 !important;
|
|
4830
|
+
}
|
|
4831
|
+
.bg-orange-lighten-4 {
|
|
4372
4832
|
color: #000000 !important;
|
|
4373
4833
|
}
|
|
4374
4834
|
|
|
4375
4835
|
.bg-orange-lighten-3 {
|
|
4376
4836
|
background-color: #ffcc80 !important;
|
|
4837
|
+
}
|
|
4838
|
+
.bg-orange-lighten-3 {
|
|
4377
4839
|
color: #000000 !important;
|
|
4378
4840
|
}
|
|
4379
4841
|
|
|
4380
4842
|
.bg-orange-lighten-2 {
|
|
4381
4843
|
background-color: #ffb74d !important;
|
|
4844
|
+
}
|
|
4845
|
+
.bg-orange-lighten-2 {
|
|
4382
4846
|
color: #000000 !important;
|
|
4383
4847
|
}
|
|
4384
4848
|
|
|
4385
4849
|
.bg-orange-lighten-1 {
|
|
4386
4850
|
background-color: #ffa726 !important;
|
|
4851
|
+
}
|
|
4852
|
+
.bg-orange-lighten-1 {
|
|
4387
4853
|
color: #000000 !important;
|
|
4388
4854
|
}
|
|
4389
4855
|
|
|
4390
4856
|
.bg-orange-darken-1 {
|
|
4391
4857
|
background-color: #fb8c00 !important;
|
|
4858
|
+
}
|
|
4859
|
+
.bg-orange-darken-1 {
|
|
4392
4860
|
color: #FFFFFF !important;
|
|
4393
4861
|
}
|
|
4394
4862
|
|
|
4395
4863
|
.bg-orange-darken-2 {
|
|
4396
4864
|
background-color: #f57c00 !important;
|
|
4865
|
+
}
|
|
4866
|
+
.bg-orange-darken-2 {
|
|
4397
4867
|
color: #FFFFFF !important;
|
|
4398
4868
|
}
|
|
4399
4869
|
|
|
4400
4870
|
.bg-orange-darken-3 {
|
|
4401
4871
|
background-color: #ef6c00 !important;
|
|
4872
|
+
}
|
|
4873
|
+
.bg-orange-darken-3 {
|
|
4402
4874
|
color: #FFFFFF !important;
|
|
4403
4875
|
}
|
|
4404
4876
|
|
|
4405
4877
|
.bg-orange-darken-4 {
|
|
4406
4878
|
background-color: #e65100 !important;
|
|
4879
|
+
}
|
|
4880
|
+
.bg-orange-darken-4 {
|
|
4407
4881
|
color: #FFFFFF !important;
|
|
4408
4882
|
}
|
|
4409
4883
|
|
|
4410
4884
|
.bg-orange-accent-1 {
|
|
4411
4885
|
background-color: #ffd180 !important;
|
|
4886
|
+
}
|
|
4887
|
+
.bg-orange-accent-1 {
|
|
4412
4888
|
color: #000000 !important;
|
|
4413
4889
|
}
|
|
4414
4890
|
|
|
4415
4891
|
.bg-orange-accent-2 {
|
|
4416
4892
|
background-color: #ffab40 !important;
|
|
4893
|
+
}
|
|
4894
|
+
.bg-orange-accent-2 {
|
|
4417
4895
|
color: #000000 !important;
|
|
4418
4896
|
}
|
|
4419
4897
|
|
|
4420
4898
|
.bg-orange-accent-3 {
|
|
4421
4899
|
background-color: #ff9100 !important;
|
|
4900
|
+
}
|
|
4901
|
+
.bg-orange-accent-3 {
|
|
4422
4902
|
color: #000000 !important;
|
|
4423
4903
|
}
|
|
4424
4904
|
|
|
4425
4905
|
.bg-orange-accent-4 {
|
|
4426
4906
|
background-color: #ff6d00 !important;
|
|
4907
|
+
}
|
|
4908
|
+
.bg-orange-accent-4 {
|
|
4427
4909
|
color: #FFFFFF !important;
|
|
4428
4910
|
}
|
|
4429
4911
|
|
|
4430
4912
|
.bg-deep-orange {
|
|
4431
4913
|
background-color: #ff5722 !important;
|
|
4914
|
+
}
|
|
4915
|
+
.bg-deep-orange {
|
|
4432
4916
|
color: #FFFFFF !important;
|
|
4433
4917
|
}
|
|
4434
4918
|
|
|
4435
4919
|
.bg-deep-orange-lighten-5 {
|
|
4436
4920
|
background-color: #fbe9e7 !important;
|
|
4921
|
+
}
|
|
4922
|
+
.bg-deep-orange-lighten-5 {
|
|
4437
4923
|
color: #000000 !important;
|
|
4438
4924
|
}
|
|
4439
4925
|
|
|
4440
4926
|
.bg-deep-orange-lighten-4 {
|
|
4441
4927
|
background-color: #ffccbc !important;
|
|
4928
|
+
}
|
|
4929
|
+
.bg-deep-orange-lighten-4 {
|
|
4442
4930
|
color: #000000 !important;
|
|
4443
4931
|
}
|
|
4444
4932
|
|
|
4445
4933
|
.bg-deep-orange-lighten-3 {
|
|
4446
4934
|
background-color: #ffab91 !important;
|
|
4935
|
+
}
|
|
4936
|
+
.bg-deep-orange-lighten-3 {
|
|
4447
4937
|
color: #000000 !important;
|
|
4448
4938
|
}
|
|
4449
4939
|
|
|
4450
4940
|
.bg-deep-orange-lighten-2 {
|
|
4451
4941
|
background-color: #ff8a65 !important;
|
|
4942
|
+
}
|
|
4943
|
+
.bg-deep-orange-lighten-2 {
|
|
4452
4944
|
color: #000000 !important;
|
|
4453
4945
|
}
|
|
4454
4946
|
|
|
4455
4947
|
.bg-deep-orange-lighten-1 {
|
|
4456
4948
|
background-color: #ff7043 !important;
|
|
4949
|
+
}
|
|
4950
|
+
.bg-deep-orange-lighten-1 {
|
|
4457
4951
|
color: #FFFFFF !important;
|
|
4458
4952
|
}
|
|
4459
4953
|
|
|
4460
4954
|
.bg-deep-orange-darken-1 {
|
|
4461
4955
|
background-color: #f4511e !important;
|
|
4956
|
+
}
|
|
4957
|
+
.bg-deep-orange-darken-1 {
|
|
4462
4958
|
color: #FFFFFF !important;
|
|
4463
4959
|
}
|
|
4464
4960
|
|
|
4465
4961
|
.bg-deep-orange-darken-2 {
|
|
4466
4962
|
background-color: #e64a19 !important;
|
|
4963
|
+
}
|
|
4964
|
+
.bg-deep-orange-darken-2 {
|
|
4467
4965
|
color: #FFFFFF !important;
|
|
4468
4966
|
}
|
|
4469
4967
|
|
|
4470
4968
|
.bg-deep-orange-darken-3 {
|
|
4471
4969
|
background-color: #d84315 !important;
|
|
4970
|
+
}
|
|
4971
|
+
.bg-deep-orange-darken-3 {
|
|
4472
4972
|
color: #FFFFFF !important;
|
|
4473
4973
|
}
|
|
4474
4974
|
|
|
4475
4975
|
.bg-deep-orange-darken-4 {
|
|
4476
4976
|
background-color: #bf360c !important;
|
|
4977
|
+
}
|
|
4978
|
+
.bg-deep-orange-darken-4 {
|
|
4477
4979
|
color: #FFFFFF !important;
|
|
4478
4980
|
}
|
|
4479
4981
|
|
|
4480
4982
|
.bg-deep-orange-accent-1 {
|
|
4481
4983
|
background-color: #ff9e80 !important;
|
|
4984
|
+
}
|
|
4985
|
+
.bg-deep-orange-accent-1 {
|
|
4482
4986
|
color: #000000 !important;
|
|
4483
4987
|
}
|
|
4484
4988
|
|
|
4485
4989
|
.bg-deep-orange-accent-2 {
|
|
4486
4990
|
background-color: #ff6e40 !important;
|
|
4991
|
+
}
|
|
4992
|
+
.bg-deep-orange-accent-2 {
|
|
4487
4993
|
color: #FFFFFF !important;
|
|
4488
4994
|
}
|
|
4489
4995
|
|
|
4490
4996
|
.bg-deep-orange-accent-3 {
|
|
4491
4997
|
background-color: #ff3d00 !important;
|
|
4998
|
+
}
|
|
4999
|
+
.bg-deep-orange-accent-3 {
|
|
4492
5000
|
color: #FFFFFF !important;
|
|
4493
5001
|
}
|
|
4494
5002
|
|
|
4495
5003
|
.bg-deep-orange-accent-4 {
|
|
4496
5004
|
background-color: #dd2c00 !important;
|
|
5005
|
+
}
|
|
5006
|
+
.bg-deep-orange-accent-4 {
|
|
4497
5007
|
color: #FFFFFF !important;
|
|
4498
5008
|
}
|
|
4499
5009
|
|
|
4500
5010
|
.bg-brown {
|
|
4501
5011
|
background-color: #795548 !important;
|
|
5012
|
+
}
|
|
5013
|
+
.bg-brown {
|
|
4502
5014
|
color: #FFFFFF !important;
|
|
4503
5015
|
}
|
|
4504
5016
|
|
|
4505
5017
|
.bg-brown-lighten-5 {
|
|
4506
5018
|
background-color: #efebe9 !important;
|
|
5019
|
+
}
|
|
5020
|
+
.bg-brown-lighten-5 {
|
|
4507
5021
|
color: #000000 !important;
|
|
4508
5022
|
}
|
|
4509
5023
|
|
|
4510
5024
|
.bg-brown-lighten-4 {
|
|
4511
5025
|
background-color: #d7ccc8 !important;
|
|
5026
|
+
}
|
|
5027
|
+
.bg-brown-lighten-4 {
|
|
4512
5028
|
color: #000000 !important;
|
|
4513
5029
|
}
|
|
4514
5030
|
|
|
4515
5031
|
.bg-brown-lighten-3 {
|
|
4516
5032
|
background-color: #bcaaa4 !important;
|
|
5033
|
+
}
|
|
5034
|
+
.bg-brown-lighten-3 {
|
|
4517
5035
|
color: #000000 !important;
|
|
4518
5036
|
}
|
|
4519
5037
|
|
|
4520
5038
|
.bg-brown-lighten-2 {
|
|
4521
5039
|
background-color: #a1887f !important;
|
|
5040
|
+
}
|
|
5041
|
+
.bg-brown-lighten-2 {
|
|
4522
5042
|
color: #FFFFFF !important;
|
|
4523
5043
|
}
|
|
4524
5044
|
|
|
4525
5045
|
.bg-brown-lighten-1 {
|
|
4526
5046
|
background-color: #8d6e63 !important;
|
|
5047
|
+
}
|
|
5048
|
+
.bg-brown-lighten-1 {
|
|
4527
5049
|
color: #FFFFFF !important;
|
|
4528
5050
|
}
|
|
4529
5051
|
|
|
4530
5052
|
.bg-brown-darken-1 {
|
|
4531
5053
|
background-color: #6d4c41 !important;
|
|
5054
|
+
}
|
|
5055
|
+
.bg-brown-darken-1 {
|
|
4532
5056
|
color: #FFFFFF !important;
|
|
4533
5057
|
}
|
|
4534
5058
|
|
|
4535
5059
|
.bg-brown-darken-2 {
|
|
4536
5060
|
background-color: #5d4037 !important;
|
|
5061
|
+
}
|
|
5062
|
+
.bg-brown-darken-2 {
|
|
4537
5063
|
color: #FFFFFF !important;
|
|
4538
5064
|
}
|
|
4539
5065
|
|
|
4540
5066
|
.bg-brown-darken-3 {
|
|
4541
5067
|
background-color: #4e342e !important;
|
|
5068
|
+
}
|
|
5069
|
+
.bg-brown-darken-3 {
|
|
4542
5070
|
color: #FFFFFF !important;
|
|
4543
5071
|
}
|
|
4544
5072
|
|
|
4545
5073
|
.bg-brown-darken-4 {
|
|
4546
5074
|
background-color: #3e2723 !important;
|
|
5075
|
+
}
|
|
5076
|
+
.bg-brown-darken-4 {
|
|
4547
5077
|
color: #FFFFFF !important;
|
|
4548
5078
|
}
|
|
4549
5079
|
|
|
4550
5080
|
.bg-blue-grey {
|
|
4551
5081
|
background-color: #607d8b !important;
|
|
5082
|
+
}
|
|
5083
|
+
.bg-blue-grey {
|
|
4552
5084
|
color: #FFFFFF !important;
|
|
4553
5085
|
}
|
|
4554
5086
|
|
|
4555
5087
|
.bg-blue-grey-lighten-5 {
|
|
4556
5088
|
background-color: #eceff1 !important;
|
|
5089
|
+
}
|
|
5090
|
+
.bg-blue-grey-lighten-5 {
|
|
4557
5091
|
color: #000000 !important;
|
|
4558
5092
|
}
|
|
4559
5093
|
|
|
4560
5094
|
.bg-blue-grey-lighten-4 {
|
|
4561
5095
|
background-color: #cfd8dc !important;
|
|
5096
|
+
}
|
|
5097
|
+
.bg-blue-grey-lighten-4 {
|
|
4562
5098
|
color: #000000 !important;
|
|
4563
5099
|
}
|
|
4564
5100
|
|
|
4565
5101
|
.bg-blue-grey-lighten-3 {
|
|
4566
5102
|
background-color: #b0bec5 !important;
|
|
5103
|
+
}
|
|
5104
|
+
.bg-blue-grey-lighten-3 {
|
|
4567
5105
|
color: #000000 !important;
|
|
4568
5106
|
}
|
|
4569
5107
|
|
|
4570
5108
|
.bg-blue-grey-lighten-2 {
|
|
4571
5109
|
background-color: #90a4ae !important;
|
|
5110
|
+
}
|
|
5111
|
+
.bg-blue-grey-lighten-2 {
|
|
4572
5112
|
color: #FFFFFF !important;
|
|
4573
5113
|
}
|
|
4574
5114
|
|
|
4575
5115
|
.bg-blue-grey-lighten-1 {
|
|
4576
5116
|
background-color: #78909c !important;
|
|
5117
|
+
}
|
|
5118
|
+
.bg-blue-grey-lighten-1 {
|
|
4577
5119
|
color: #FFFFFF !important;
|
|
4578
5120
|
}
|
|
4579
5121
|
|
|
4580
5122
|
.bg-blue-grey-darken-1 {
|
|
4581
5123
|
background-color: #546e7a !important;
|
|
5124
|
+
}
|
|
5125
|
+
.bg-blue-grey-darken-1 {
|
|
4582
5126
|
color: #FFFFFF !important;
|
|
4583
5127
|
}
|
|
4584
5128
|
|
|
4585
5129
|
.bg-blue-grey-darken-2 {
|
|
4586
5130
|
background-color: #455a64 !important;
|
|
5131
|
+
}
|
|
5132
|
+
.bg-blue-grey-darken-2 {
|
|
4587
5133
|
color: #FFFFFF !important;
|
|
4588
5134
|
}
|
|
4589
5135
|
|
|
4590
5136
|
.bg-blue-grey-darken-3 {
|
|
4591
5137
|
background-color: #37474f !important;
|
|
5138
|
+
}
|
|
5139
|
+
.bg-blue-grey-darken-3 {
|
|
4592
5140
|
color: #FFFFFF !important;
|
|
4593
5141
|
}
|
|
4594
5142
|
|
|
4595
5143
|
.bg-blue-grey-darken-4 {
|
|
4596
5144
|
background-color: #263238 !important;
|
|
5145
|
+
}
|
|
5146
|
+
.bg-blue-grey-darken-4 {
|
|
4597
5147
|
color: #FFFFFF !important;
|
|
4598
5148
|
}
|
|
4599
5149
|
|
|
4600
5150
|
.bg-grey {
|
|
4601
5151
|
background-color: #9e9e9e !important;
|
|
5152
|
+
}
|
|
5153
|
+
.bg-grey {
|
|
4602
5154
|
color: #FFFFFF !important;
|
|
4603
5155
|
}
|
|
4604
5156
|
|
|
4605
5157
|
.bg-grey-lighten-5 {
|
|
4606
5158
|
background-color: #fafafa !important;
|
|
5159
|
+
}
|
|
5160
|
+
.bg-grey-lighten-5 {
|
|
4607
5161
|
color: #000000 !important;
|
|
4608
5162
|
}
|
|
4609
5163
|
|
|
4610
5164
|
.bg-grey-lighten-4 {
|
|
4611
5165
|
background-color: #f5f5f5 !important;
|
|
5166
|
+
}
|
|
5167
|
+
.bg-grey-lighten-4 {
|
|
4612
5168
|
color: #000000 !important;
|
|
4613
5169
|
}
|
|
4614
5170
|
|
|
4615
5171
|
.bg-grey-lighten-3 {
|
|
4616
5172
|
background-color: #eeeeee !important;
|
|
5173
|
+
}
|
|
5174
|
+
.bg-grey-lighten-3 {
|
|
4617
5175
|
color: #000000 !important;
|
|
4618
5176
|
}
|
|
4619
5177
|
|
|
4620
5178
|
.bg-grey-lighten-2 {
|
|
4621
5179
|
background-color: #e0e0e0 !important;
|
|
5180
|
+
}
|
|
5181
|
+
.bg-grey-lighten-2 {
|
|
4622
5182
|
color: #000000 !important;
|
|
4623
5183
|
}
|
|
4624
5184
|
|
|
4625
5185
|
.bg-grey-lighten-1 {
|
|
4626
5186
|
background-color: #bdbdbd !important;
|
|
5187
|
+
}
|
|
5188
|
+
.bg-grey-lighten-1 {
|
|
4627
5189
|
color: #000000 !important;
|
|
4628
5190
|
}
|
|
4629
5191
|
|
|
4630
5192
|
.bg-grey-darken-1 {
|
|
4631
5193
|
background-color: #757575 !important;
|
|
5194
|
+
}
|
|
5195
|
+
.bg-grey-darken-1 {
|
|
4632
5196
|
color: #FFFFFF !important;
|
|
4633
5197
|
}
|
|
4634
5198
|
|
|
4635
5199
|
.bg-grey-darken-2 {
|
|
4636
5200
|
background-color: #616161 !important;
|
|
5201
|
+
}
|
|
5202
|
+
.bg-grey-darken-2 {
|
|
4637
5203
|
color: #FFFFFF !important;
|
|
4638
5204
|
}
|
|
4639
5205
|
|
|
4640
5206
|
.bg-grey-darken-3 {
|
|
4641
5207
|
background-color: #424242 !important;
|
|
5208
|
+
}
|
|
5209
|
+
.bg-grey-darken-3 {
|
|
4642
5210
|
color: #FFFFFF !important;
|
|
4643
5211
|
}
|
|
4644
5212
|
|
|
4645
5213
|
.bg-grey-darken-4 {
|
|
4646
5214
|
background-color: #212121 !important;
|
|
5215
|
+
}
|
|
5216
|
+
.bg-grey-darken-4 {
|
|
4647
5217
|
color: #FFFFFF !important;
|
|
4648
5218
|
}
|
|
4649
5219
|
|
|
4650
5220
|
.bg-shades-black {
|
|
4651
5221
|
background-color: #000000 !important;
|
|
5222
|
+
}
|
|
5223
|
+
.bg-shades-black {
|
|
4652
5224
|
color: #FFFFFF !important;
|
|
4653
5225
|
}
|
|
4654
5226
|
|
|
4655
5227
|
.bg-shades-white {
|
|
4656
5228
|
background-color: #FFFFFF !important;
|
|
5229
|
+
}
|
|
5230
|
+
.bg-shades-white {
|
|
4657
5231
|
color: #000000 !important;
|
|
4658
5232
|
}
|
|
4659
5233
|
|
|
4660
5234
|
.bg-shades-transparent {
|
|
4661
5235
|
background-color: transparent !important;
|
|
5236
|
+
}
|
|
5237
|
+
.bg-shades-transparent {
|
|
4662
5238
|
color: currentColor !important;
|
|
4663
5239
|
}
|
|
4664
5240
|
|
|
@@ -20825,6 +21401,12 @@ html.overflow-y-hidden {
|
|
|
20825
21401
|
height: 100%;
|
|
20826
21402
|
opacity: 0;
|
|
20827
21403
|
}
|
|
21404
|
+
.v-selection-control__input::before {
|
|
21405
|
+
border-radius: 100%;
|
|
21406
|
+
background-color: currentColor;
|
|
21407
|
+
opacity: 0;
|
|
21408
|
+
pointer-events: none;
|
|
21409
|
+
}
|
|
20828
21410
|
.v-selection-control__input::before {
|
|
20829
21411
|
content: "";
|
|
20830
21412
|
position: absolute;
|
|
@@ -20832,10 +21414,6 @@ html.overflow-y-hidden {
|
|
|
20832
21414
|
left: 0;
|
|
20833
21415
|
width: 100%;
|
|
20834
21416
|
height: 100%;
|
|
20835
|
-
border-radius: 100%;
|
|
20836
|
-
background-color: currentColor;
|
|
20837
|
-
opacity: 0;
|
|
20838
|
-
pointer-events: none;
|
|
20839
21417
|
}
|
|
20840
21418
|
.v-selection-control__input:hover::before {
|
|
20841
21419
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|