@unifiedsoftware/styles 2.0.0-alpha.7 → 2.0.0-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/fci.css +73 -41
- package/css/fci.min.css +1 -1
- package/css/styles.css +251 -185
- package/css/styles.min.css +1 -1
- package/package.json +1 -1
- package/scss/_utilities.scss +3 -3
- package/scss/components/_accordion.scss +18 -18
- package/scss/components/_card.scss +22 -20
- package/scss/components/_descriptions.scss +27 -6
- package/scss/components/_input.scss +45 -1
- package/scss/themes/fci/_tokens.scss +2 -2
- package/scss/themes/fci/components/_accordion.scss +11 -3
- package/scss/themes/fci/components/_card.scss +36 -24
- package/scss/themes/fci/components/_descriptions.scss +18 -9
- package/scss/themes/fci/components/_input.scss +5 -2
- package/scss/themes/fci/components/_list.scss +0 -4
package/css/styles.css
CHANGED
|
@@ -744,10 +744,41 @@
|
|
|
744
744
|
.us-input--clearable:hover .us-input__clearable {
|
|
745
745
|
transform: scale(0.75);
|
|
746
746
|
}
|
|
747
|
-
.us-
|
|
747
|
+
.us-input-group {
|
|
748
|
+
display: flex;
|
|
749
|
+
align-items: center;
|
|
750
|
+
}
|
|
751
|
+
.us-input-group .us-input {
|
|
752
|
+
border-radius: 0px;
|
|
753
|
+
}
|
|
754
|
+
.us-input-group .us-input:first-of-type {
|
|
755
|
+
border-top-left-radius: var(--us-input-border-radius);
|
|
756
|
+
border-bottom-left-radius: var(--us-input-border-radius);
|
|
757
|
+
}
|
|
758
|
+
.us-input-group .us-input:last-of-type {
|
|
759
|
+
border-top-right-radius: var(--us-input-border-radius);
|
|
760
|
+
border-bottom-right-radius: var(--us-input-border-radius);
|
|
761
|
+
}
|
|
762
|
+
.us-input__icon {
|
|
763
|
+
padding: 0;
|
|
748
764
|
display: flex;
|
|
749
765
|
justify-content: center;
|
|
750
766
|
align-items: center;
|
|
767
|
+
border: none;
|
|
768
|
+
outline: none;
|
|
769
|
+
background-color: transparent;
|
|
770
|
+
}
|
|
771
|
+
.us-input__icon--opacity {
|
|
772
|
+
opacity: 0;
|
|
773
|
+
}
|
|
774
|
+
.us-input__icon--pointer {
|
|
775
|
+
cursor: pointer;
|
|
776
|
+
}
|
|
777
|
+
.us-input:hover .us-input__icon--opacity-hoverable {
|
|
778
|
+
opacity: 0.5;
|
|
779
|
+
}
|
|
780
|
+
.us-input:hover .us-input__icon--opacity-hoverable:hover {
|
|
781
|
+
opacity: 1;
|
|
751
782
|
}
|
|
752
783
|
.us-input__content {
|
|
753
784
|
flex: 1;
|
|
@@ -814,8 +845,13 @@
|
|
|
814
845
|
}
|
|
815
846
|
.us-input__start-content, .us-input__end-content {
|
|
816
847
|
flex-shrink: 0;
|
|
848
|
+
height: 100%;
|
|
817
849
|
display: flex;
|
|
818
850
|
align-items: center;
|
|
851
|
+
font-size: var(--us-input-font-size);
|
|
852
|
+
font-family: var(--us-input-font-family);
|
|
853
|
+
line-height: var(--us-input-line-height);
|
|
854
|
+
gap: var(--us-input-content-gap);
|
|
819
855
|
}
|
|
820
856
|
.us-input__start-content .us-icon, .us-input__end-content .us-icon {
|
|
821
857
|
font-size: var(--us-input-icon-size);
|
|
@@ -1104,7 +1140,6 @@
|
|
|
1104
1140
|
gap: var(--us-accordion-splitted-gap);
|
|
1105
1141
|
}
|
|
1106
1142
|
.us-accordion--splitted .us-accordion-item {
|
|
1107
|
-
border-radius: var(--us-accordion-border-radius);
|
|
1108
1143
|
overflow: hidden;
|
|
1109
1144
|
}
|
|
1110
1145
|
.us-accordion-item {
|
|
@@ -1142,6 +1177,19 @@
|
|
|
1142
1177
|
display: flex;
|
|
1143
1178
|
flex-direction: column;
|
|
1144
1179
|
}
|
|
1180
|
+
.us-accordion-header--centered .us-accordion-header__start-content, .us-accordion-header--centered .us-accordion-header__end-content {
|
|
1181
|
+
position: absolute;
|
|
1182
|
+
}
|
|
1183
|
+
.us-accordion-header--centered .us-accordion-header__start-content {
|
|
1184
|
+
left: var(--us-accordion-header-padding-x);
|
|
1185
|
+
}
|
|
1186
|
+
.us-accordion-header--centered .us-accordion-header__end-content {
|
|
1187
|
+
right: var(--us-accordion-header-padding-x);
|
|
1188
|
+
}
|
|
1189
|
+
.us-accordion-header--centered .us-accordion-header__content {
|
|
1190
|
+
align-items: center;
|
|
1191
|
+
text-align: center;
|
|
1192
|
+
}
|
|
1145
1193
|
.us-accordion-header__title {
|
|
1146
1194
|
font-size: var(--us-accordion-header-title-font-size);
|
|
1147
1195
|
font-weight: var(--us-accordion-header-title-font-weight);
|
|
@@ -1655,6 +1703,7 @@
|
|
|
1655
1703
|
color: var(--us-card-header-subtitle-color);
|
|
1656
1704
|
}
|
|
1657
1705
|
.us-card-body {
|
|
1706
|
+
position: relative;
|
|
1658
1707
|
padding-block: var(--us-card-body-padding-y);
|
|
1659
1708
|
padding-inline: var(--us-card-body-padding-x);
|
|
1660
1709
|
font-size: var(--us-card-body-font-size);
|
|
@@ -1704,37 +1753,38 @@
|
|
|
1704
1753
|
height: 100%;
|
|
1705
1754
|
object-fit: cover;
|
|
1706
1755
|
}
|
|
1707
|
-
.us-card
|
|
1756
|
+
.us-card--divider .us-card-body {
|
|
1708
1757
|
margin-bottom: var(--us-card-padding-y);
|
|
1758
|
+
margin-top: var(--us-card-padding-y);
|
|
1709
1759
|
}
|
|
1710
|
-
.us-card-
|
|
1760
|
+
.us-card--divider .us-card-body::before {
|
|
1711
1761
|
content: "";
|
|
1712
1762
|
position: absolute;
|
|
1713
|
-
left:
|
|
1714
|
-
right:
|
|
1715
|
-
|
|
1716
|
-
border-
|
|
1717
|
-
}
|
|
1718
|
-
.us-card-footer--underlined {
|
|
1719
|
-
margin-top: var(--us-card-padding-y);
|
|
1763
|
+
left: 0;
|
|
1764
|
+
right: 0;
|
|
1765
|
+
top: 0;
|
|
1766
|
+
border-top: 1px solid var(--us-card-border-color);
|
|
1720
1767
|
}
|
|
1721
|
-
.us-card-
|
|
1768
|
+
.us-card--divider .us-card-body::after {
|
|
1722
1769
|
content: "";
|
|
1723
1770
|
position: absolute;
|
|
1724
|
-
left:
|
|
1725
|
-
right:
|
|
1726
|
-
|
|
1727
|
-
border-
|
|
1771
|
+
left: 0;
|
|
1772
|
+
right: 0;
|
|
1773
|
+
bottom: 0;
|
|
1774
|
+
border-bottom: 1px solid var(--us-card-border-color);
|
|
1775
|
+
}
|
|
1776
|
+
.us-card--divider .us-card__content > .us-card-body:first-child, .us-card--divider .us-card__content :not([hidden]):first-child .us-card-body {
|
|
1777
|
+
margin-top: 0;
|
|
1728
1778
|
}
|
|
1729
|
-
.us-card-
|
|
1779
|
+
.us-card--divider .us-card__content > .us-card-body:first-child::before, .us-card--divider .us-card__content :not([hidden]):first-child .us-card-body::before {
|
|
1780
|
+
border-top: none;
|
|
1781
|
+
}
|
|
1782
|
+
.us-card--divider .us-card__content > .us-card-body:last-child, .us-card--divider .us-card__content :not([hidden]):last-child .us-card-body {
|
|
1730
1783
|
margin-bottom: 0;
|
|
1731
1784
|
}
|
|
1732
|
-
.us-card-
|
|
1785
|
+
.us-card--divider .us-card__content > .us-card-body:last-child::after, .us-card--divider .us-card__content :not([hidden]):last-child .us-card-body::after {
|
|
1733
1786
|
border-bottom: none;
|
|
1734
1787
|
}
|
|
1735
|
-
.us-card-footer--underlined:last-child::before {
|
|
1736
|
-
border-top: none;
|
|
1737
|
-
}
|
|
1738
1788
|
|
|
1739
1789
|
.us-descriptions {
|
|
1740
1790
|
display: grid;
|
|
@@ -1744,18 +1794,33 @@
|
|
|
1744
1794
|
}
|
|
1745
1795
|
|
|
1746
1796
|
.us-description {
|
|
1797
|
+
position: relative;
|
|
1798
|
+
padding-block: var(--us-description-padding-y);
|
|
1799
|
+
padding-inline: var(--us-description-padding-x);
|
|
1800
|
+
}
|
|
1801
|
+
.us-description__container {
|
|
1747
1802
|
display: grid;
|
|
1748
1803
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
1749
1804
|
row-gap: var(--us-description-gap-y);
|
|
1750
1805
|
column-gap: var(--us-description-gap-x);
|
|
1751
1806
|
}
|
|
1807
|
+
.us-description-value {
|
|
1808
|
+
display: flex;
|
|
1809
|
+
align-items: center;
|
|
1810
|
+
}
|
|
1811
|
+
.us-description-value__start-content, .us-description-value__end-content {
|
|
1812
|
+
flex-shrink: 0;
|
|
1813
|
+
}
|
|
1814
|
+
.us-description-value__content {
|
|
1815
|
+
flex-grow: 1;
|
|
1816
|
+
}
|
|
1752
1817
|
.us-descriptions--row .us-description-label {
|
|
1753
1818
|
grid-column: span 6/span 6;
|
|
1754
1819
|
}
|
|
1755
|
-
.us-descriptions--row .us-
|
|
1820
|
+
.us-descriptions--row .us-description-value {
|
|
1756
1821
|
grid-column: span 6/span 6;
|
|
1757
1822
|
}
|
|
1758
|
-
.us-descriptions--col .us-description-label, .us-descriptions--col .us-
|
|
1823
|
+
.us-descriptions--col .us-description-label, .us-descriptions--col .us-description-value {
|
|
1759
1824
|
grid-column: span 12/span 12;
|
|
1760
1825
|
}
|
|
1761
1826
|
.us-description-label {
|
|
@@ -1765,6 +1830,7 @@
|
|
|
1765
1830
|
opacity: var(--us-description-label-opacity);
|
|
1766
1831
|
}
|
|
1767
1832
|
.us-description-text {
|
|
1833
|
+
display: inline;
|
|
1768
1834
|
font-size: var(--us-description-text-font-size);
|
|
1769
1835
|
font-weight: var(--us-description-text-font-weight);
|
|
1770
1836
|
color: var(--us-description-text-color);
|
|
@@ -2160,111 +2226,111 @@
|
|
|
2160
2226
|
font-size: var(--us-fs-5xl);
|
|
2161
2227
|
}
|
|
2162
2228
|
|
|
2163
|
-
.us-
|
|
2229
|
+
.us-gap-0 {
|
|
2164
2230
|
gap: 0;
|
|
2165
2231
|
}
|
|
2166
2232
|
|
|
2167
|
-
.us-
|
|
2233
|
+
.us-gap-1 {
|
|
2168
2234
|
gap: 0.25rem;
|
|
2169
2235
|
}
|
|
2170
2236
|
|
|
2171
|
-
.us-
|
|
2237
|
+
.us-gap-2 {
|
|
2172
2238
|
gap: 0.5rem;
|
|
2173
2239
|
}
|
|
2174
2240
|
|
|
2175
|
-
.us-
|
|
2241
|
+
.us-gap-3 {
|
|
2176
2242
|
gap: 0.75rem;
|
|
2177
2243
|
}
|
|
2178
2244
|
|
|
2179
|
-
.us-
|
|
2245
|
+
.us-gap-4 {
|
|
2180
2246
|
gap: 1rem;
|
|
2181
2247
|
}
|
|
2182
2248
|
|
|
2183
|
-
.us-
|
|
2249
|
+
.us-gap-5 {
|
|
2184
2250
|
gap: 1.25rem;
|
|
2185
2251
|
}
|
|
2186
2252
|
|
|
2187
|
-
.us-
|
|
2253
|
+
.us-gap-6 {
|
|
2188
2254
|
gap: 1.5rem;
|
|
2189
2255
|
}
|
|
2190
2256
|
|
|
2191
|
-
.us-
|
|
2257
|
+
.us-gap-7 {
|
|
2192
2258
|
gap: 1.75rem;
|
|
2193
2259
|
}
|
|
2194
2260
|
|
|
2195
|
-
.us-
|
|
2261
|
+
.us-gap-8 {
|
|
2196
2262
|
gap: 2rem;
|
|
2197
2263
|
}
|
|
2198
2264
|
|
|
2199
|
-
.us-
|
|
2265
|
+
.us-gap-x-0 {
|
|
2200
2266
|
column-gap: 0;
|
|
2201
2267
|
}
|
|
2202
2268
|
|
|
2203
|
-
.us-
|
|
2269
|
+
.us-gap-x-1 {
|
|
2204
2270
|
column-gap: 0.25rem;
|
|
2205
2271
|
}
|
|
2206
2272
|
|
|
2207
|
-
.us-
|
|
2273
|
+
.us-gap-x-2 {
|
|
2208
2274
|
column-gap: 0.5rem;
|
|
2209
2275
|
}
|
|
2210
2276
|
|
|
2211
|
-
.us-
|
|
2277
|
+
.us-gap-x-3 {
|
|
2212
2278
|
column-gap: 0.75rem;
|
|
2213
2279
|
}
|
|
2214
2280
|
|
|
2215
|
-
.us-
|
|
2281
|
+
.us-gap-x-4 {
|
|
2216
2282
|
column-gap: 1rem;
|
|
2217
2283
|
}
|
|
2218
2284
|
|
|
2219
|
-
.us-
|
|
2285
|
+
.us-gap-x-5 {
|
|
2220
2286
|
column-gap: 1.25rem;
|
|
2221
2287
|
}
|
|
2222
2288
|
|
|
2223
|
-
.us-
|
|
2289
|
+
.us-gap-x-6 {
|
|
2224
2290
|
column-gap: 1.5rem;
|
|
2225
2291
|
}
|
|
2226
2292
|
|
|
2227
|
-
.us-
|
|
2293
|
+
.us-gap-x-7 {
|
|
2228
2294
|
column-gap: 1.75rem;
|
|
2229
2295
|
}
|
|
2230
2296
|
|
|
2231
|
-
.us-
|
|
2297
|
+
.us-gap-x-8 {
|
|
2232
2298
|
column-gap: 2rem;
|
|
2233
2299
|
}
|
|
2234
2300
|
|
|
2235
|
-
.us-
|
|
2301
|
+
.us-gap-y-0 {
|
|
2236
2302
|
row-gap: 0;
|
|
2237
2303
|
}
|
|
2238
2304
|
|
|
2239
|
-
.us-
|
|
2305
|
+
.us-gap-y-1 {
|
|
2240
2306
|
row-gap: 0.25rem;
|
|
2241
2307
|
}
|
|
2242
2308
|
|
|
2243
|
-
.us-
|
|
2309
|
+
.us-gap-y-2 {
|
|
2244
2310
|
row-gap: 0.5rem;
|
|
2245
2311
|
}
|
|
2246
2312
|
|
|
2247
|
-
.us-
|
|
2313
|
+
.us-gap-y-3 {
|
|
2248
2314
|
row-gap: 0.75rem;
|
|
2249
2315
|
}
|
|
2250
2316
|
|
|
2251
|
-
.us-
|
|
2317
|
+
.us-gap-y-4 {
|
|
2252
2318
|
row-gap: 1rem;
|
|
2253
2319
|
}
|
|
2254
2320
|
|
|
2255
|
-
.us-
|
|
2321
|
+
.us-gap-y-5 {
|
|
2256
2322
|
row-gap: 1.25rem;
|
|
2257
2323
|
}
|
|
2258
2324
|
|
|
2259
|
-
.us-
|
|
2325
|
+
.us-gap-y-6 {
|
|
2260
2326
|
row-gap: 1.5rem;
|
|
2261
2327
|
}
|
|
2262
2328
|
|
|
2263
|
-
.us-
|
|
2329
|
+
.us-gap-y-7 {
|
|
2264
2330
|
row-gap: 1.75rem;
|
|
2265
2331
|
}
|
|
2266
2332
|
|
|
2267
|
-
.us-
|
|
2333
|
+
.us-gap-y-8 {
|
|
2268
2334
|
row-gap: 2rem;
|
|
2269
2335
|
}
|
|
2270
2336
|
|
|
@@ -2392,85 +2458,85 @@
|
|
|
2392
2458
|
.xs\:us-fs-5xl {
|
|
2393
2459
|
font-size: var(--us-fs-5xl);
|
|
2394
2460
|
}
|
|
2395
|
-
.xs\:us-
|
|
2461
|
+
.xs\:us-gap-0 {
|
|
2396
2462
|
gap: 0;
|
|
2397
2463
|
}
|
|
2398
|
-
.xs\:us-
|
|
2464
|
+
.xs\:us-gap-1 {
|
|
2399
2465
|
gap: 0.25rem;
|
|
2400
2466
|
}
|
|
2401
|
-
.xs\:us-
|
|
2467
|
+
.xs\:us-gap-2 {
|
|
2402
2468
|
gap: 0.5rem;
|
|
2403
2469
|
}
|
|
2404
|
-
.xs\:us-
|
|
2470
|
+
.xs\:us-gap-3 {
|
|
2405
2471
|
gap: 0.75rem;
|
|
2406
2472
|
}
|
|
2407
|
-
.xs\:us-
|
|
2473
|
+
.xs\:us-gap-4 {
|
|
2408
2474
|
gap: 1rem;
|
|
2409
2475
|
}
|
|
2410
|
-
.xs\:us-
|
|
2476
|
+
.xs\:us-gap-5 {
|
|
2411
2477
|
gap: 1.25rem;
|
|
2412
2478
|
}
|
|
2413
|
-
.xs\:us-
|
|
2479
|
+
.xs\:us-gap-6 {
|
|
2414
2480
|
gap: 1.5rem;
|
|
2415
2481
|
}
|
|
2416
|
-
.xs\:us-
|
|
2482
|
+
.xs\:us-gap-7 {
|
|
2417
2483
|
gap: 1.75rem;
|
|
2418
2484
|
}
|
|
2419
|
-
.xs\:us-
|
|
2485
|
+
.xs\:us-gap-8 {
|
|
2420
2486
|
gap: 2rem;
|
|
2421
2487
|
}
|
|
2422
|
-
.xs\:us-
|
|
2488
|
+
.xs\:us-gap-x-0 {
|
|
2423
2489
|
column-gap: 0;
|
|
2424
2490
|
}
|
|
2425
|
-
.xs\:us-
|
|
2491
|
+
.xs\:us-gap-x-1 {
|
|
2426
2492
|
column-gap: 0.25rem;
|
|
2427
2493
|
}
|
|
2428
|
-
.xs\:us-
|
|
2494
|
+
.xs\:us-gap-x-2 {
|
|
2429
2495
|
column-gap: 0.5rem;
|
|
2430
2496
|
}
|
|
2431
|
-
.xs\:us-
|
|
2497
|
+
.xs\:us-gap-x-3 {
|
|
2432
2498
|
column-gap: 0.75rem;
|
|
2433
2499
|
}
|
|
2434
|
-
.xs\:us-
|
|
2500
|
+
.xs\:us-gap-x-4 {
|
|
2435
2501
|
column-gap: 1rem;
|
|
2436
2502
|
}
|
|
2437
|
-
.xs\:us-
|
|
2503
|
+
.xs\:us-gap-x-5 {
|
|
2438
2504
|
column-gap: 1.25rem;
|
|
2439
2505
|
}
|
|
2440
|
-
.xs\:us-
|
|
2506
|
+
.xs\:us-gap-x-6 {
|
|
2441
2507
|
column-gap: 1.5rem;
|
|
2442
2508
|
}
|
|
2443
|
-
.xs\:us-
|
|
2509
|
+
.xs\:us-gap-x-7 {
|
|
2444
2510
|
column-gap: 1.75rem;
|
|
2445
2511
|
}
|
|
2446
|
-
.xs\:us-
|
|
2512
|
+
.xs\:us-gap-x-8 {
|
|
2447
2513
|
column-gap: 2rem;
|
|
2448
2514
|
}
|
|
2449
|
-
.xs\:us-
|
|
2515
|
+
.xs\:us-gap-y-0 {
|
|
2450
2516
|
row-gap: 0;
|
|
2451
2517
|
}
|
|
2452
|
-
.xs\:us-
|
|
2518
|
+
.xs\:us-gap-y-1 {
|
|
2453
2519
|
row-gap: 0.25rem;
|
|
2454
2520
|
}
|
|
2455
|
-
.xs\:us-
|
|
2521
|
+
.xs\:us-gap-y-2 {
|
|
2456
2522
|
row-gap: 0.5rem;
|
|
2457
2523
|
}
|
|
2458
|
-
.xs\:us-
|
|
2524
|
+
.xs\:us-gap-y-3 {
|
|
2459
2525
|
row-gap: 0.75rem;
|
|
2460
2526
|
}
|
|
2461
|
-
.xs\:us-
|
|
2527
|
+
.xs\:us-gap-y-4 {
|
|
2462
2528
|
row-gap: 1rem;
|
|
2463
2529
|
}
|
|
2464
|
-
.xs\:us-
|
|
2530
|
+
.xs\:us-gap-y-5 {
|
|
2465
2531
|
row-gap: 1.25rem;
|
|
2466
2532
|
}
|
|
2467
|
-
.xs\:us-
|
|
2533
|
+
.xs\:us-gap-y-6 {
|
|
2468
2534
|
row-gap: 1.5rem;
|
|
2469
2535
|
}
|
|
2470
|
-
.xs\:us-
|
|
2536
|
+
.xs\:us-gap-y-7 {
|
|
2471
2537
|
row-gap: 1.75rem;
|
|
2472
2538
|
}
|
|
2473
|
-
.xs\:us-
|
|
2539
|
+
.xs\:us-gap-y-8 {
|
|
2474
2540
|
row-gap: 2rem;
|
|
2475
2541
|
}
|
|
2476
2542
|
}
|
|
@@ -2598,85 +2664,85 @@
|
|
|
2598
2664
|
.sm\:us-fs-5xl {
|
|
2599
2665
|
font-size: var(--us-fs-5xl);
|
|
2600
2666
|
}
|
|
2601
|
-
.sm\:us-
|
|
2667
|
+
.sm\:us-gap-0 {
|
|
2602
2668
|
gap: 0;
|
|
2603
2669
|
}
|
|
2604
|
-
.sm\:us-
|
|
2670
|
+
.sm\:us-gap-1 {
|
|
2605
2671
|
gap: 0.25rem;
|
|
2606
2672
|
}
|
|
2607
|
-
.sm\:us-
|
|
2673
|
+
.sm\:us-gap-2 {
|
|
2608
2674
|
gap: 0.5rem;
|
|
2609
2675
|
}
|
|
2610
|
-
.sm\:us-
|
|
2676
|
+
.sm\:us-gap-3 {
|
|
2611
2677
|
gap: 0.75rem;
|
|
2612
2678
|
}
|
|
2613
|
-
.sm\:us-
|
|
2679
|
+
.sm\:us-gap-4 {
|
|
2614
2680
|
gap: 1rem;
|
|
2615
2681
|
}
|
|
2616
|
-
.sm\:us-
|
|
2682
|
+
.sm\:us-gap-5 {
|
|
2617
2683
|
gap: 1.25rem;
|
|
2618
2684
|
}
|
|
2619
|
-
.sm\:us-
|
|
2685
|
+
.sm\:us-gap-6 {
|
|
2620
2686
|
gap: 1.5rem;
|
|
2621
2687
|
}
|
|
2622
|
-
.sm\:us-
|
|
2688
|
+
.sm\:us-gap-7 {
|
|
2623
2689
|
gap: 1.75rem;
|
|
2624
2690
|
}
|
|
2625
|
-
.sm\:us-
|
|
2691
|
+
.sm\:us-gap-8 {
|
|
2626
2692
|
gap: 2rem;
|
|
2627
2693
|
}
|
|
2628
|
-
.sm\:us-
|
|
2694
|
+
.sm\:us-gap-x-0 {
|
|
2629
2695
|
column-gap: 0;
|
|
2630
2696
|
}
|
|
2631
|
-
.sm\:us-
|
|
2697
|
+
.sm\:us-gap-x-1 {
|
|
2632
2698
|
column-gap: 0.25rem;
|
|
2633
2699
|
}
|
|
2634
|
-
.sm\:us-
|
|
2700
|
+
.sm\:us-gap-x-2 {
|
|
2635
2701
|
column-gap: 0.5rem;
|
|
2636
2702
|
}
|
|
2637
|
-
.sm\:us-
|
|
2703
|
+
.sm\:us-gap-x-3 {
|
|
2638
2704
|
column-gap: 0.75rem;
|
|
2639
2705
|
}
|
|
2640
|
-
.sm\:us-
|
|
2706
|
+
.sm\:us-gap-x-4 {
|
|
2641
2707
|
column-gap: 1rem;
|
|
2642
2708
|
}
|
|
2643
|
-
.sm\:us-
|
|
2709
|
+
.sm\:us-gap-x-5 {
|
|
2644
2710
|
column-gap: 1.25rem;
|
|
2645
2711
|
}
|
|
2646
|
-
.sm\:us-
|
|
2712
|
+
.sm\:us-gap-x-6 {
|
|
2647
2713
|
column-gap: 1.5rem;
|
|
2648
2714
|
}
|
|
2649
|
-
.sm\:us-
|
|
2715
|
+
.sm\:us-gap-x-7 {
|
|
2650
2716
|
column-gap: 1.75rem;
|
|
2651
2717
|
}
|
|
2652
|
-
.sm\:us-
|
|
2718
|
+
.sm\:us-gap-x-8 {
|
|
2653
2719
|
column-gap: 2rem;
|
|
2654
2720
|
}
|
|
2655
|
-
.sm\:us-
|
|
2721
|
+
.sm\:us-gap-y-0 {
|
|
2656
2722
|
row-gap: 0;
|
|
2657
2723
|
}
|
|
2658
|
-
.sm\:us-
|
|
2724
|
+
.sm\:us-gap-y-1 {
|
|
2659
2725
|
row-gap: 0.25rem;
|
|
2660
2726
|
}
|
|
2661
|
-
.sm\:us-
|
|
2727
|
+
.sm\:us-gap-y-2 {
|
|
2662
2728
|
row-gap: 0.5rem;
|
|
2663
2729
|
}
|
|
2664
|
-
.sm\:us-
|
|
2730
|
+
.sm\:us-gap-y-3 {
|
|
2665
2731
|
row-gap: 0.75rem;
|
|
2666
2732
|
}
|
|
2667
|
-
.sm\:us-
|
|
2733
|
+
.sm\:us-gap-y-4 {
|
|
2668
2734
|
row-gap: 1rem;
|
|
2669
2735
|
}
|
|
2670
|
-
.sm\:us-
|
|
2736
|
+
.sm\:us-gap-y-5 {
|
|
2671
2737
|
row-gap: 1.25rem;
|
|
2672
2738
|
}
|
|
2673
|
-
.sm\:us-
|
|
2739
|
+
.sm\:us-gap-y-6 {
|
|
2674
2740
|
row-gap: 1.5rem;
|
|
2675
2741
|
}
|
|
2676
|
-
.sm\:us-
|
|
2742
|
+
.sm\:us-gap-y-7 {
|
|
2677
2743
|
row-gap: 1.75rem;
|
|
2678
2744
|
}
|
|
2679
|
-
.sm\:us-
|
|
2745
|
+
.sm\:us-gap-y-8 {
|
|
2680
2746
|
row-gap: 2rem;
|
|
2681
2747
|
}
|
|
2682
2748
|
}
|
|
@@ -2804,85 +2870,85 @@
|
|
|
2804
2870
|
.md\:us-fs-5xl {
|
|
2805
2871
|
font-size: var(--us-fs-5xl);
|
|
2806
2872
|
}
|
|
2807
|
-
.md\:us-
|
|
2873
|
+
.md\:us-gap-0 {
|
|
2808
2874
|
gap: 0;
|
|
2809
2875
|
}
|
|
2810
|
-
.md\:us-
|
|
2876
|
+
.md\:us-gap-1 {
|
|
2811
2877
|
gap: 0.25rem;
|
|
2812
2878
|
}
|
|
2813
|
-
.md\:us-
|
|
2879
|
+
.md\:us-gap-2 {
|
|
2814
2880
|
gap: 0.5rem;
|
|
2815
2881
|
}
|
|
2816
|
-
.md\:us-
|
|
2882
|
+
.md\:us-gap-3 {
|
|
2817
2883
|
gap: 0.75rem;
|
|
2818
2884
|
}
|
|
2819
|
-
.md\:us-
|
|
2885
|
+
.md\:us-gap-4 {
|
|
2820
2886
|
gap: 1rem;
|
|
2821
2887
|
}
|
|
2822
|
-
.md\:us-
|
|
2888
|
+
.md\:us-gap-5 {
|
|
2823
2889
|
gap: 1.25rem;
|
|
2824
2890
|
}
|
|
2825
|
-
.md\:us-
|
|
2891
|
+
.md\:us-gap-6 {
|
|
2826
2892
|
gap: 1.5rem;
|
|
2827
2893
|
}
|
|
2828
|
-
.md\:us-
|
|
2894
|
+
.md\:us-gap-7 {
|
|
2829
2895
|
gap: 1.75rem;
|
|
2830
2896
|
}
|
|
2831
|
-
.md\:us-
|
|
2897
|
+
.md\:us-gap-8 {
|
|
2832
2898
|
gap: 2rem;
|
|
2833
2899
|
}
|
|
2834
|
-
.md\:us-
|
|
2900
|
+
.md\:us-gap-x-0 {
|
|
2835
2901
|
column-gap: 0;
|
|
2836
2902
|
}
|
|
2837
|
-
.md\:us-
|
|
2903
|
+
.md\:us-gap-x-1 {
|
|
2838
2904
|
column-gap: 0.25rem;
|
|
2839
2905
|
}
|
|
2840
|
-
.md\:us-
|
|
2906
|
+
.md\:us-gap-x-2 {
|
|
2841
2907
|
column-gap: 0.5rem;
|
|
2842
2908
|
}
|
|
2843
|
-
.md\:us-
|
|
2909
|
+
.md\:us-gap-x-3 {
|
|
2844
2910
|
column-gap: 0.75rem;
|
|
2845
2911
|
}
|
|
2846
|
-
.md\:us-
|
|
2912
|
+
.md\:us-gap-x-4 {
|
|
2847
2913
|
column-gap: 1rem;
|
|
2848
2914
|
}
|
|
2849
|
-
.md\:us-
|
|
2915
|
+
.md\:us-gap-x-5 {
|
|
2850
2916
|
column-gap: 1.25rem;
|
|
2851
2917
|
}
|
|
2852
|
-
.md\:us-
|
|
2918
|
+
.md\:us-gap-x-6 {
|
|
2853
2919
|
column-gap: 1.5rem;
|
|
2854
2920
|
}
|
|
2855
|
-
.md\:us-
|
|
2921
|
+
.md\:us-gap-x-7 {
|
|
2856
2922
|
column-gap: 1.75rem;
|
|
2857
2923
|
}
|
|
2858
|
-
.md\:us-
|
|
2924
|
+
.md\:us-gap-x-8 {
|
|
2859
2925
|
column-gap: 2rem;
|
|
2860
2926
|
}
|
|
2861
|
-
.md\:us-
|
|
2927
|
+
.md\:us-gap-y-0 {
|
|
2862
2928
|
row-gap: 0;
|
|
2863
2929
|
}
|
|
2864
|
-
.md\:us-
|
|
2930
|
+
.md\:us-gap-y-1 {
|
|
2865
2931
|
row-gap: 0.25rem;
|
|
2866
2932
|
}
|
|
2867
|
-
.md\:us-
|
|
2933
|
+
.md\:us-gap-y-2 {
|
|
2868
2934
|
row-gap: 0.5rem;
|
|
2869
2935
|
}
|
|
2870
|
-
.md\:us-
|
|
2936
|
+
.md\:us-gap-y-3 {
|
|
2871
2937
|
row-gap: 0.75rem;
|
|
2872
2938
|
}
|
|
2873
|
-
.md\:us-
|
|
2939
|
+
.md\:us-gap-y-4 {
|
|
2874
2940
|
row-gap: 1rem;
|
|
2875
2941
|
}
|
|
2876
|
-
.md\:us-
|
|
2942
|
+
.md\:us-gap-y-5 {
|
|
2877
2943
|
row-gap: 1.25rem;
|
|
2878
2944
|
}
|
|
2879
|
-
.md\:us-
|
|
2945
|
+
.md\:us-gap-y-6 {
|
|
2880
2946
|
row-gap: 1.5rem;
|
|
2881
2947
|
}
|
|
2882
|
-
.md\:us-
|
|
2948
|
+
.md\:us-gap-y-7 {
|
|
2883
2949
|
row-gap: 1.75rem;
|
|
2884
2950
|
}
|
|
2885
|
-
.md\:us-
|
|
2951
|
+
.md\:us-gap-y-8 {
|
|
2886
2952
|
row-gap: 2rem;
|
|
2887
2953
|
}
|
|
2888
2954
|
}
|
|
@@ -3010,85 +3076,85 @@
|
|
|
3010
3076
|
.lg\:us-fs-5xl {
|
|
3011
3077
|
font-size: var(--us-fs-5xl);
|
|
3012
3078
|
}
|
|
3013
|
-
.lg\:us-
|
|
3079
|
+
.lg\:us-gap-0 {
|
|
3014
3080
|
gap: 0;
|
|
3015
3081
|
}
|
|
3016
|
-
.lg\:us-
|
|
3082
|
+
.lg\:us-gap-1 {
|
|
3017
3083
|
gap: 0.25rem;
|
|
3018
3084
|
}
|
|
3019
|
-
.lg\:us-
|
|
3085
|
+
.lg\:us-gap-2 {
|
|
3020
3086
|
gap: 0.5rem;
|
|
3021
3087
|
}
|
|
3022
|
-
.lg\:us-
|
|
3088
|
+
.lg\:us-gap-3 {
|
|
3023
3089
|
gap: 0.75rem;
|
|
3024
3090
|
}
|
|
3025
|
-
.lg\:us-
|
|
3091
|
+
.lg\:us-gap-4 {
|
|
3026
3092
|
gap: 1rem;
|
|
3027
3093
|
}
|
|
3028
|
-
.lg\:us-
|
|
3094
|
+
.lg\:us-gap-5 {
|
|
3029
3095
|
gap: 1.25rem;
|
|
3030
3096
|
}
|
|
3031
|
-
.lg\:us-
|
|
3097
|
+
.lg\:us-gap-6 {
|
|
3032
3098
|
gap: 1.5rem;
|
|
3033
3099
|
}
|
|
3034
|
-
.lg\:us-
|
|
3100
|
+
.lg\:us-gap-7 {
|
|
3035
3101
|
gap: 1.75rem;
|
|
3036
3102
|
}
|
|
3037
|
-
.lg\:us-
|
|
3103
|
+
.lg\:us-gap-8 {
|
|
3038
3104
|
gap: 2rem;
|
|
3039
3105
|
}
|
|
3040
|
-
.lg\:us-
|
|
3106
|
+
.lg\:us-gap-x-0 {
|
|
3041
3107
|
column-gap: 0;
|
|
3042
3108
|
}
|
|
3043
|
-
.lg\:us-
|
|
3109
|
+
.lg\:us-gap-x-1 {
|
|
3044
3110
|
column-gap: 0.25rem;
|
|
3045
3111
|
}
|
|
3046
|
-
.lg\:us-
|
|
3112
|
+
.lg\:us-gap-x-2 {
|
|
3047
3113
|
column-gap: 0.5rem;
|
|
3048
3114
|
}
|
|
3049
|
-
.lg\:us-
|
|
3115
|
+
.lg\:us-gap-x-3 {
|
|
3050
3116
|
column-gap: 0.75rem;
|
|
3051
3117
|
}
|
|
3052
|
-
.lg\:us-
|
|
3118
|
+
.lg\:us-gap-x-4 {
|
|
3053
3119
|
column-gap: 1rem;
|
|
3054
3120
|
}
|
|
3055
|
-
.lg\:us-
|
|
3121
|
+
.lg\:us-gap-x-5 {
|
|
3056
3122
|
column-gap: 1.25rem;
|
|
3057
3123
|
}
|
|
3058
|
-
.lg\:us-
|
|
3124
|
+
.lg\:us-gap-x-6 {
|
|
3059
3125
|
column-gap: 1.5rem;
|
|
3060
3126
|
}
|
|
3061
|
-
.lg\:us-
|
|
3127
|
+
.lg\:us-gap-x-7 {
|
|
3062
3128
|
column-gap: 1.75rem;
|
|
3063
3129
|
}
|
|
3064
|
-
.lg\:us-
|
|
3130
|
+
.lg\:us-gap-x-8 {
|
|
3065
3131
|
column-gap: 2rem;
|
|
3066
3132
|
}
|
|
3067
|
-
.lg\:us-
|
|
3133
|
+
.lg\:us-gap-y-0 {
|
|
3068
3134
|
row-gap: 0;
|
|
3069
3135
|
}
|
|
3070
|
-
.lg\:us-
|
|
3136
|
+
.lg\:us-gap-y-1 {
|
|
3071
3137
|
row-gap: 0.25rem;
|
|
3072
3138
|
}
|
|
3073
|
-
.lg\:us-
|
|
3139
|
+
.lg\:us-gap-y-2 {
|
|
3074
3140
|
row-gap: 0.5rem;
|
|
3075
3141
|
}
|
|
3076
|
-
.lg\:us-
|
|
3142
|
+
.lg\:us-gap-y-3 {
|
|
3077
3143
|
row-gap: 0.75rem;
|
|
3078
3144
|
}
|
|
3079
|
-
.lg\:us-
|
|
3145
|
+
.lg\:us-gap-y-4 {
|
|
3080
3146
|
row-gap: 1rem;
|
|
3081
3147
|
}
|
|
3082
|
-
.lg\:us-
|
|
3148
|
+
.lg\:us-gap-y-5 {
|
|
3083
3149
|
row-gap: 1.25rem;
|
|
3084
3150
|
}
|
|
3085
|
-
.lg\:us-
|
|
3151
|
+
.lg\:us-gap-y-6 {
|
|
3086
3152
|
row-gap: 1.5rem;
|
|
3087
3153
|
}
|
|
3088
|
-
.lg\:us-
|
|
3154
|
+
.lg\:us-gap-y-7 {
|
|
3089
3155
|
row-gap: 1.75rem;
|
|
3090
3156
|
}
|
|
3091
|
-
.lg\:us-
|
|
3157
|
+
.lg\:us-gap-y-8 {
|
|
3092
3158
|
row-gap: 2rem;
|
|
3093
3159
|
}
|
|
3094
3160
|
}
|
|
@@ -3216,85 +3282,85 @@
|
|
|
3216
3282
|
.xl\:us-fs-5xl {
|
|
3217
3283
|
font-size: var(--us-fs-5xl);
|
|
3218
3284
|
}
|
|
3219
|
-
.xl\:us-
|
|
3285
|
+
.xl\:us-gap-0 {
|
|
3220
3286
|
gap: 0;
|
|
3221
3287
|
}
|
|
3222
|
-
.xl\:us-
|
|
3288
|
+
.xl\:us-gap-1 {
|
|
3223
3289
|
gap: 0.25rem;
|
|
3224
3290
|
}
|
|
3225
|
-
.xl\:us-
|
|
3291
|
+
.xl\:us-gap-2 {
|
|
3226
3292
|
gap: 0.5rem;
|
|
3227
3293
|
}
|
|
3228
|
-
.xl\:us-
|
|
3294
|
+
.xl\:us-gap-3 {
|
|
3229
3295
|
gap: 0.75rem;
|
|
3230
3296
|
}
|
|
3231
|
-
.xl\:us-
|
|
3297
|
+
.xl\:us-gap-4 {
|
|
3232
3298
|
gap: 1rem;
|
|
3233
3299
|
}
|
|
3234
|
-
.xl\:us-
|
|
3300
|
+
.xl\:us-gap-5 {
|
|
3235
3301
|
gap: 1.25rem;
|
|
3236
3302
|
}
|
|
3237
|
-
.xl\:us-
|
|
3303
|
+
.xl\:us-gap-6 {
|
|
3238
3304
|
gap: 1.5rem;
|
|
3239
3305
|
}
|
|
3240
|
-
.xl\:us-
|
|
3306
|
+
.xl\:us-gap-7 {
|
|
3241
3307
|
gap: 1.75rem;
|
|
3242
3308
|
}
|
|
3243
|
-
.xl\:us-
|
|
3309
|
+
.xl\:us-gap-8 {
|
|
3244
3310
|
gap: 2rem;
|
|
3245
3311
|
}
|
|
3246
|
-
.xl\:us-
|
|
3312
|
+
.xl\:us-gap-x-0 {
|
|
3247
3313
|
column-gap: 0;
|
|
3248
3314
|
}
|
|
3249
|
-
.xl\:us-
|
|
3315
|
+
.xl\:us-gap-x-1 {
|
|
3250
3316
|
column-gap: 0.25rem;
|
|
3251
3317
|
}
|
|
3252
|
-
.xl\:us-
|
|
3318
|
+
.xl\:us-gap-x-2 {
|
|
3253
3319
|
column-gap: 0.5rem;
|
|
3254
3320
|
}
|
|
3255
|
-
.xl\:us-
|
|
3321
|
+
.xl\:us-gap-x-3 {
|
|
3256
3322
|
column-gap: 0.75rem;
|
|
3257
3323
|
}
|
|
3258
|
-
.xl\:us-
|
|
3324
|
+
.xl\:us-gap-x-4 {
|
|
3259
3325
|
column-gap: 1rem;
|
|
3260
3326
|
}
|
|
3261
|
-
.xl\:us-
|
|
3327
|
+
.xl\:us-gap-x-5 {
|
|
3262
3328
|
column-gap: 1.25rem;
|
|
3263
3329
|
}
|
|
3264
|
-
.xl\:us-
|
|
3330
|
+
.xl\:us-gap-x-6 {
|
|
3265
3331
|
column-gap: 1.5rem;
|
|
3266
3332
|
}
|
|
3267
|
-
.xl\:us-
|
|
3333
|
+
.xl\:us-gap-x-7 {
|
|
3268
3334
|
column-gap: 1.75rem;
|
|
3269
3335
|
}
|
|
3270
|
-
.xl\:us-
|
|
3336
|
+
.xl\:us-gap-x-8 {
|
|
3271
3337
|
column-gap: 2rem;
|
|
3272
3338
|
}
|
|
3273
|
-
.xl\:us-
|
|
3339
|
+
.xl\:us-gap-y-0 {
|
|
3274
3340
|
row-gap: 0;
|
|
3275
3341
|
}
|
|
3276
|
-
.xl\:us-
|
|
3342
|
+
.xl\:us-gap-y-1 {
|
|
3277
3343
|
row-gap: 0.25rem;
|
|
3278
3344
|
}
|
|
3279
|
-
.xl\:us-
|
|
3345
|
+
.xl\:us-gap-y-2 {
|
|
3280
3346
|
row-gap: 0.5rem;
|
|
3281
3347
|
}
|
|
3282
|
-
.xl\:us-
|
|
3348
|
+
.xl\:us-gap-y-3 {
|
|
3283
3349
|
row-gap: 0.75rem;
|
|
3284
3350
|
}
|
|
3285
|
-
.xl\:us-
|
|
3351
|
+
.xl\:us-gap-y-4 {
|
|
3286
3352
|
row-gap: 1rem;
|
|
3287
3353
|
}
|
|
3288
|
-
.xl\:us-
|
|
3354
|
+
.xl\:us-gap-y-5 {
|
|
3289
3355
|
row-gap: 1.25rem;
|
|
3290
3356
|
}
|
|
3291
|
-
.xl\:us-
|
|
3357
|
+
.xl\:us-gap-y-6 {
|
|
3292
3358
|
row-gap: 1.5rem;
|
|
3293
3359
|
}
|
|
3294
|
-
.xl\:us-
|
|
3360
|
+
.xl\:us-gap-y-7 {
|
|
3295
3361
|
row-gap: 1.75rem;
|
|
3296
3362
|
}
|
|
3297
|
-
.xl\:us-
|
|
3363
|
+
.xl\:us-gap-y-8 {
|
|
3298
3364
|
row-gap: 2rem;
|
|
3299
3365
|
}
|
|
3300
3366
|
}
|