hds-web 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +1 -1
- package/dist/index.es.css +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/src/HDS/assets/hasura 2.svg +4 -0
- package/src/HDS/assets/hasura.svg +4 -0
- package/src/HDS/assets/icons/chevron-right.svg +1 -1
- package/src/HDS/assets/icons/hasura.svg +10 -3
- package/src/HDS/assets/icons/minus-01.svg +1 -1
- package/src/HDS/components/Avatars/hasConAv.js +3 -3
- package/src/HDS/components/Buttons/button.js +9 -9
- package/src/HDS/components/Carousels/carousel.js +1 -1
- package/src/HDS/components/Carousels/carouselCard.js +12 -11
- package/src/HDS/foundation/ColorPalette/color.js +197 -14
- package/src/HDS/foundation/Typography/Typography.js +35 -35
- package/src/HDS/helpers/Time/index.js +1 -0
- package/src/HDS/helpers/Time/time.js +97 -0
- package/src/styles/tailwind.css +881 -139
- package/tailwind.config.js +22 -6
package/src/styles/tailwind.css
CHANGED
@@ -42,7 +42,7 @@ html {
|
|
42
42
|
/* 3 */
|
43
43
|
tab-size: 4;
|
44
44
|
/* 3 */
|
45
|
-
font-family:
|
45
|
+
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
46
46
|
/* 4 */
|
47
47
|
-webkit-font-feature-settings: normal;
|
48
48
|
font-feature-settings: normal;
|
@@ -747,6 +747,12 @@ select {
|
|
747
747
|
}
|
748
748
|
}
|
749
749
|
|
750
|
+
@media (min-width: 905px) {
|
751
|
+
.container {
|
752
|
+
max-width: 905px;
|
753
|
+
}
|
754
|
+
}
|
755
|
+
|
750
756
|
@media (min-width: 1024px) {
|
751
757
|
.container {
|
752
758
|
max-width: 1024px;
|
@@ -771,6 +777,12 @@ select {
|
|
771
777
|
}
|
772
778
|
}
|
773
779
|
|
780
|
+
@media (min-width: 2560px) {
|
781
|
+
.container {
|
782
|
+
max-width: 2560px;
|
783
|
+
}
|
784
|
+
}
|
785
|
+
|
774
786
|
.sr-only {
|
775
787
|
position: absolute;
|
776
788
|
width: 1px;
|
@@ -1184,6 +1196,10 @@ select {
|
|
1184
1196
|
margin-top: 0.5rem;
|
1185
1197
|
}
|
1186
1198
|
|
1199
|
+
.mt-20 {
|
1200
|
+
margin-top: 5rem;
|
1201
|
+
}
|
1202
|
+
|
1187
1203
|
.mt-3 {
|
1188
1204
|
margin-top: 0.75rem;
|
1189
1205
|
}
|
@@ -1204,10 +1220,6 @@ select {
|
|
1204
1220
|
margin-top: 2rem;
|
1205
1221
|
}
|
1206
1222
|
|
1207
|
-
.mt-20 {
|
1208
|
-
margin-top: 5rem;
|
1209
|
-
}
|
1210
|
-
|
1211
1223
|
.block {
|
1212
1224
|
display: block;
|
1213
1225
|
}
|
@@ -1248,6 +1260,10 @@ select {
|
|
1248
1260
|
aspect-ratio: 2/1;
|
1249
1261
|
}
|
1250
1262
|
|
1263
|
+
.h-1 {
|
1264
|
+
height: 0.25rem;
|
1265
|
+
}
|
1266
|
+
|
1251
1267
|
.h-10 {
|
1252
1268
|
height: 2.5rem;
|
1253
1269
|
}
|
@@ -1284,6 +1300,10 @@ select {
|
|
1284
1300
|
height: 1.25rem;
|
1285
1301
|
}
|
1286
1302
|
|
1303
|
+
.h-52 {
|
1304
|
+
height: 13rem;
|
1305
|
+
}
|
1306
|
+
|
1287
1307
|
.h-6 {
|
1288
1308
|
height: 1.5rem;
|
1289
1309
|
}
|
@@ -1312,10 +1332,6 @@ select {
|
|
1312
1332
|
height: 100%;
|
1313
1333
|
}
|
1314
1334
|
|
1315
|
-
.h-1 {
|
1316
|
-
height: 0.25rem;
|
1317
|
-
}
|
1318
|
-
|
1319
1335
|
.w-1\/2 {
|
1320
1336
|
width: 50%;
|
1321
1337
|
}
|
@@ -2013,11 +2029,61 @@ select {
|
|
2013
2029
|
background-color: rgb(51 51 51 / var(--tw-bg-opacity));
|
2014
2030
|
}
|
2015
2031
|
|
2032
|
+
.bg-amber-100 {
|
2033
|
+
--tw-bg-opacity: 1;
|
2034
|
+
background-color: rgb(255 243 212 / var(--tw-bg-opacity));
|
2035
|
+
}
|
2036
|
+
|
2037
|
+
.bg-amber-200 {
|
2038
|
+
--tw-bg-opacity: 1;
|
2039
|
+
background-color: rgb(255 228 176 / var(--tw-bg-opacity));
|
2040
|
+
}
|
2041
|
+
|
2042
|
+
.bg-amber-300 {
|
2043
|
+
--tw-bg-opacity: 1;
|
2044
|
+
background-color: rgb(255 206 112 / var(--tw-bg-opacity));
|
2045
|
+
}
|
2046
|
+
|
2047
|
+
.bg-amber-400 {
|
2048
|
+
--tw-bg-opacity: 1;
|
2049
|
+
background-color: rgb(255 168 27 / var(--tw-bg-opacity));
|
2050
|
+
}
|
2051
|
+
|
2052
|
+
.bg-amber-500 {
|
2053
|
+
--tw-bg-opacity: 1;
|
2054
|
+
background-color: rgb(224 121 0 / var(--tw-bg-opacity));
|
2055
|
+
}
|
2056
|
+
|
2016
2057
|
.bg-amber-600 {
|
2017
2058
|
--tw-bg-opacity: 1;
|
2018
2059
|
background-color: rgb(184 88 0 / var(--tw-bg-opacity));
|
2019
2060
|
}
|
2020
2061
|
|
2062
|
+
.bg-amber-700 {
|
2063
|
+
--tw-bg-opacity: 1;
|
2064
|
+
background-color: rgb(153 55 0 / var(--tw-bg-opacity));
|
2065
|
+
}
|
2066
|
+
|
2067
|
+
.bg-amber-800 {
|
2068
|
+
--tw-bg-opacity: 1;
|
2069
|
+
background-color: rgb(120 36 0 / var(--tw-bg-opacity));
|
2070
|
+
}
|
2071
|
+
|
2072
|
+
.bg-amber-900 {
|
2073
|
+
--tw-bg-opacity: 1;
|
2074
|
+
background-color: rgb(71 21 0 / var(--tw-bg-opacity));
|
2075
|
+
}
|
2076
|
+
|
2077
|
+
.bg-base-0 {
|
2078
|
+
--tw-bg-opacity: 1;
|
2079
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
2080
|
+
}
|
2081
|
+
|
2082
|
+
.bg-base-1000 {
|
2083
|
+
--tw-bg-opacity: 1;
|
2084
|
+
background-color: rgb(0 6 21 / var(--tw-bg-opacity));
|
2085
|
+
}
|
2086
|
+
|
2021
2087
|
.bg-blue-100 {
|
2022
2088
|
--tw-bg-opacity: 1;
|
2023
2089
|
background-color: rgb(240 244 255 / var(--tw-bg-opacity));
|
@@ -2028,6 +2094,11 @@ select {
|
|
2028
2094
|
background-color: rgb(223 232 255 / var(--tw-bg-opacity));
|
2029
2095
|
}
|
2030
2096
|
|
2097
|
+
.bg-blue-300 {
|
2098
|
+
--tw-bg-opacity: 1;
|
2099
|
+
background-color: rgb(198 214 255 / var(--tw-bg-opacity));
|
2100
|
+
}
|
2101
|
+
|
2031
2102
|
.bg-blue-400 {
|
2032
2103
|
--tw-bg-opacity: 1;
|
2033
2104
|
background-color: rgb(128 163 255 / var(--tw-bg-opacity));
|
@@ -2043,31 +2114,111 @@ select {
|
|
2043
2114
|
background-color: rgb(30 86 227 / var(--tw-bg-opacity));
|
2044
2115
|
}
|
2045
2116
|
|
2117
|
+
.bg-blue-700 {
|
2118
|
+
--tw-bg-opacity: 1;
|
2119
|
+
background-color: rgb(13 65 198 / var(--tw-bg-opacity));
|
2120
|
+
}
|
2121
|
+
|
2046
2122
|
.bg-blue-800 {
|
2047
2123
|
--tw-bg-opacity: 1;
|
2048
2124
|
background-color: rgb(0 40 142 / var(--tw-bg-opacity));
|
2049
2125
|
}
|
2050
2126
|
|
2127
|
+
.bg-blue-900 {
|
2128
|
+
--tw-bg-opacity: 1;
|
2129
|
+
background-color: rgb(0 28 99 / var(--tw-bg-opacity));
|
2130
|
+
}
|
2131
|
+
|
2132
|
+
.bg-cyan-100 {
|
2133
|
+
--tw-bg-opacity: 1;
|
2134
|
+
background-color: rgb(227 250 255 / var(--tw-bg-opacity));
|
2135
|
+
}
|
2136
|
+
|
2137
|
+
.bg-cyan-200 {
|
2138
|
+
--tw-bg-opacity: 1;
|
2139
|
+
background-color: rgb(194 244 255 / var(--tw-bg-opacity));
|
2140
|
+
}
|
2141
|
+
|
2142
|
+
.bg-cyan-300 {
|
2143
|
+
--tw-bg-opacity: 1;
|
2144
|
+
background-color: rgb(147 236 255 / var(--tw-bg-opacity));
|
2145
|
+
}
|
2146
|
+
|
2147
|
+
.bg-cyan-400 {
|
2148
|
+
--tw-bg-opacity: 1;
|
2149
|
+
background-color: rgb(62 202 232 / var(--tw-bg-opacity));
|
2150
|
+
}
|
2151
|
+
|
2152
|
+
.bg-cyan-500 {
|
2153
|
+
--tw-bg-opacity: 1;
|
2154
|
+
background-color: rgb(14 150 178 / var(--tw-bg-opacity));
|
2155
|
+
}
|
2156
|
+
|
2051
2157
|
.bg-cyan-600 {
|
2052
2158
|
--tw-bg-opacity: 1;
|
2053
2159
|
background-color: rgb(4 117 141 / var(--tw-bg-opacity));
|
2054
2160
|
}
|
2055
2161
|
|
2162
|
+
.bg-cyan-700 {
|
2163
|
+
--tw-bg-opacity: 1;
|
2164
|
+
background-color: rgb(0 90 108 / var(--tw-bg-opacity));
|
2165
|
+
}
|
2166
|
+
|
2167
|
+
.bg-cyan-800 {
|
2168
|
+
--tw-bg-opacity: 1;
|
2169
|
+
background-color: rgb(0 57 69 / var(--tw-bg-opacity));
|
2170
|
+
}
|
2171
|
+
|
2172
|
+
.bg-cyan-900 {
|
2173
|
+
--tw-bg-opacity: 1;
|
2174
|
+
background-color: rgb(0 35 43 / var(--tw-bg-opacity));
|
2175
|
+
}
|
2176
|
+
|
2056
2177
|
.bg-green-100 {
|
2057
2178
|
--tw-bg-opacity: 1;
|
2058
2179
|
background-color: rgb(218 255 244 / var(--tw-bg-opacity));
|
2059
2180
|
}
|
2060
2181
|
|
2182
|
+
.bg-green-200 {
|
2183
|
+
--tw-bg-opacity: 1;
|
2184
|
+
background-color: rgb(184 251 231 / var(--tw-bg-opacity));
|
2185
|
+
}
|
2186
|
+
|
2187
|
+
.bg-green-300 {
|
2188
|
+
--tw-bg-opacity: 1;
|
2189
|
+
background-color: rgb(145 245 215 / var(--tw-bg-opacity));
|
2190
|
+
}
|
2191
|
+
|
2061
2192
|
.bg-green-400 {
|
2062
2193
|
--tw-bg-opacity: 1;
|
2063
2194
|
background-color: rgb(57 218 170 / var(--tw-bg-opacity));
|
2064
2195
|
}
|
2065
2196
|
|
2197
|
+
.bg-green-500 {
|
2198
|
+
--tw-bg-opacity: 1;
|
2199
|
+
background-color: rgb(14 165 120 / var(--tw-bg-opacity));
|
2200
|
+
}
|
2201
|
+
|
2066
2202
|
.bg-green-600 {
|
2067
2203
|
--tw-bg-opacity: 1;
|
2068
2204
|
background-color: rgb(2 125 89 / var(--tw-bg-opacity));
|
2069
2205
|
}
|
2070
2206
|
|
2207
|
+
.bg-green-700 {
|
2208
|
+
--tw-bg-opacity: 1;
|
2209
|
+
background-color: rgb(0 96 67 / var(--tw-bg-opacity));
|
2210
|
+
}
|
2211
|
+
|
2212
|
+
.bg-green-800 {
|
2213
|
+
--tw-bg-opacity: 1;
|
2214
|
+
background-color: rgb(0 60 43 / var(--tw-bg-opacity));
|
2215
|
+
}
|
2216
|
+
|
2217
|
+
.bg-green-900 {
|
2218
|
+
--tw-bg-opacity: 1;
|
2219
|
+
background-color: rgb(0 40 29 / var(--tw-bg-opacity));
|
2220
|
+
}
|
2221
|
+
|
2071
2222
|
.bg-neutral-0 {
|
2072
2223
|
--tw-bg-opacity: 1;
|
2073
2224
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
@@ -2078,11 +2229,31 @@ select {
|
|
2078
2229
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
2079
2230
|
}
|
2080
2231
|
|
2232
|
+
.bg-neutral-1000 {
|
2233
|
+
--tw-bg-opacity: 1;
|
2234
|
+
background-color: rgb(0 6 21 / var(--tw-bg-opacity));
|
2235
|
+
}
|
2236
|
+
|
2237
|
+
.bg-neutral-150 {
|
2238
|
+
--tw-bg-opacity: 1;
|
2239
|
+
background-color: rgb(236 237 240 / var(--tw-bg-opacity));
|
2240
|
+
}
|
2241
|
+
|
2081
2242
|
.bg-neutral-200 {
|
2082
2243
|
--tw-bg-opacity: 1;
|
2083
2244
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
2084
2245
|
}
|
2085
2246
|
|
2247
|
+
.bg-neutral-300 {
|
2248
|
+
--tw-bg-opacity: 1;
|
2249
|
+
background-color: rgb(210 214 219 / var(--tw-bg-opacity));
|
2250
|
+
}
|
2251
|
+
|
2252
|
+
.bg-neutral-400 {
|
2253
|
+
--tw-bg-opacity: 1;
|
2254
|
+
background-color: rgb(157 164 174 / var(--tw-bg-opacity));
|
2255
|
+
}
|
2256
|
+
|
2086
2257
|
.bg-neutral-50 {
|
2087
2258
|
--tw-bg-opacity: 1;
|
2088
2259
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
@@ -2098,21 +2269,136 @@ select {
|
|
2098
2269
|
background-color: rgb(77 87 97 / var(--tw-bg-opacity));
|
2099
2270
|
}
|
2100
2271
|
|
2272
|
+
.bg-neutral-700 {
|
2273
|
+
--tw-bg-opacity: 1;
|
2274
|
+
background-color: rgb(56 66 80 / var(--tw-bg-opacity));
|
2275
|
+
}
|
2276
|
+
|
2277
|
+
.bg-neutral-800 {
|
2278
|
+
--tw-bg-opacity: 1;
|
2279
|
+
background-color: rgb(31 42 55 / var(--tw-bg-opacity));
|
2280
|
+
}
|
2281
|
+
|
2282
|
+
.bg-neutral-850 {
|
2283
|
+
--tw-bg-opacity: 1;
|
2284
|
+
background-color: rgb(24 34 47 / var(--tw-bg-opacity));
|
2285
|
+
}
|
2286
|
+
|
2101
2287
|
.bg-neutral-900 {
|
2102
2288
|
--tw-bg-opacity: 1;
|
2103
2289
|
background-color: rgb(17 25 39 / var(--tw-bg-opacity));
|
2104
2290
|
}
|
2105
2291
|
|
2292
|
+
.bg-neutral-950 {
|
2293
|
+
--tw-bg-opacity: 1;
|
2294
|
+
background-color: rgb(13 20 32 / var(--tw-bg-opacity));
|
2295
|
+
}
|
2296
|
+
|
2297
|
+
.bg-orange-100 {
|
2298
|
+
--tw-bg-opacity: 1;
|
2299
|
+
background-color: rgb(255 237 215 / var(--tw-bg-opacity));
|
2300
|
+
}
|
2301
|
+
|
2302
|
+
.bg-orange-200 {
|
2303
|
+
--tw-bg-opacity: 1;
|
2304
|
+
background-color: rgb(254 215 173 / var(--tw-bg-opacity));
|
2305
|
+
}
|
2306
|
+
|
2307
|
+
.bg-orange-300 {
|
2308
|
+
--tw-bg-opacity: 1;
|
2309
|
+
background-color: rgb(253 185 122 / var(--tw-bg-opacity));
|
2310
|
+
}
|
2311
|
+
|
2312
|
+
.bg-orange-400 {
|
2313
|
+
--tw-bg-opacity: 1;
|
2314
|
+
background-color: rgb(251 145 71 / var(--tw-bg-opacity));
|
2315
|
+
}
|
2316
|
+
|
2317
|
+
.bg-orange-500 {
|
2318
|
+
--tw-bg-opacity: 1;
|
2319
|
+
background-color: rgb(248 114 41 / var(--tw-bg-opacity));
|
2320
|
+
}
|
2321
|
+
|
2322
|
+
.bg-orange-600 {
|
2323
|
+
--tw-bg-opacity: 1;
|
2324
|
+
background-color: rgb(233 87 31 / var(--tw-bg-opacity));
|
2325
|
+
}
|
2326
|
+
|
2327
|
+
.bg-orange-700 {
|
2328
|
+
--tw-bg-opacity: 1;
|
2329
|
+
background-color: rgb(193 64 24 / var(--tw-bg-opacity));
|
2330
|
+
}
|
2331
|
+
|
2332
|
+
.bg-orange-800 {
|
2333
|
+
--tw-bg-opacity: 1;
|
2334
|
+
background-color: rgb(153 52 24 / var(--tw-bg-opacity));
|
2335
|
+
}
|
2336
|
+
|
2337
|
+
.bg-pink-100 {
|
2338
|
+
--tw-bg-opacity: 1;
|
2339
|
+
background-color: rgb(255 237 244 / var(--tw-bg-opacity));
|
2340
|
+
}
|
2341
|
+
|
2342
|
+
.bg-pink-200 {
|
2343
|
+
--tw-bg-opacity: 1;
|
2344
|
+
background-color: rgb(255 217 231 / var(--tw-bg-opacity));
|
2345
|
+
}
|
2346
|
+
|
2347
|
+
.bg-pink-300 {
|
2348
|
+
--tw-bg-opacity: 1;
|
2349
|
+
background-color: rgb(255 188 214 / var(--tw-bg-opacity));
|
2350
|
+
}
|
2351
|
+
|
2106
2352
|
.bg-pink-400 {
|
2107
2353
|
--tw-bg-opacity: 1;
|
2108
2354
|
background-color: rgb(246 119 170 / var(--tw-bg-opacity));
|
2109
2355
|
}
|
2110
2356
|
|
2357
|
+
.bg-pink-500 {
|
2358
|
+
--tw-bg-opacity: 1;
|
2359
|
+
background-color: rgb(225 58 124 / var(--tw-bg-opacity));
|
2360
|
+
}
|
2361
|
+
|
2111
2362
|
.bg-pink-600 {
|
2112
2363
|
--tw-bg-opacity: 1;
|
2113
2364
|
background-color: rgb(194 30 95 / var(--tw-bg-opacity));
|
2114
2365
|
}
|
2115
2366
|
|
2367
|
+
.bg-pink-700 {
|
2368
|
+
--tw-bg-opacity: 1;
|
2369
|
+
background-color: rgb(165 10 72 / var(--tw-bg-opacity));
|
2370
|
+
}
|
2371
|
+
|
2372
|
+
.bg-pink-800 {
|
2373
|
+
--tw-bg-opacity: 1;
|
2374
|
+
background-color: rgb(113 0 44 / var(--tw-bg-opacity));
|
2375
|
+
}
|
2376
|
+
|
2377
|
+
.bg-pink-900 {
|
2378
|
+
--tw-bg-opacity: 1;
|
2379
|
+
background-color: rgb(73 0 29 / var(--tw-bg-opacity));
|
2380
|
+
}
|
2381
|
+
|
2382
|
+
.bg-purple-100 {
|
2383
|
+
--tw-bg-opacity: 1;
|
2384
|
+
background-color: rgb(247 242 255 / var(--tw-bg-opacity));
|
2385
|
+
}
|
2386
|
+
|
2387
|
+
.bg-purple-200 {
|
2388
|
+
--tw-bg-opacity: 1;
|
2389
|
+
background-color: rgb(237 225 255 / var(--tw-bg-opacity));
|
2390
|
+
}
|
2391
|
+
|
2392
|
+
.bg-purple-300 {
|
2393
|
+
--tw-bg-opacity: 1;
|
2394
|
+
background-color: rgb(219 198 255 / var(--tw-bg-opacity));
|
2395
|
+
}
|
2396
|
+
|
2397
|
+
.bg-purple-400 {
|
2398
|
+
--tw-bg-opacity: 1;
|
2399
|
+
background-color: rgb(180 135 255 / var(--tw-bg-opacity));
|
2400
|
+
}
|
2401
|
+
|
2116
2402
|
.bg-purple-500 {
|
2117
2403
|
--tw-bg-opacity: 1;
|
2118
2404
|
background-color: rgb(140 73 250 / var(--tw-bg-opacity));
|
@@ -2123,11 +2409,110 @@ select {
|
|
2123
2409
|
background-color: rgb(113 43 227 / var(--tw-bg-opacity));
|
2124
2410
|
}
|
2125
2411
|
|
2412
|
+
.bg-purple-700 {
|
2413
|
+
--tw-bg-opacity: 1;
|
2414
|
+
background-color: rgb(94 19 215 / var(--tw-bg-opacity));
|
2415
|
+
}
|
2416
|
+
|
2417
|
+
.bg-purple-800 {
|
2418
|
+
--tw-bg-opacity: 1;
|
2419
|
+
background-color: rgb(63 1 166 / var(--tw-bg-opacity));
|
2420
|
+
}
|
2421
|
+
|
2422
|
+
.bg-purple-900 {
|
2423
|
+
--tw-bg-opacity: 1;
|
2424
|
+
background-color: rgb(41 0 107 / var(--tw-bg-opacity));
|
2425
|
+
}
|
2426
|
+
|
2427
|
+
.bg-red-100 {
|
2428
|
+
--tw-bg-opacity: 1;
|
2429
|
+
background-color: rgb(254 226 226 / var(--tw-bg-opacity));
|
2430
|
+
}
|
2431
|
+
|
2432
|
+
.bg-red-200 {
|
2433
|
+
--tw-bg-opacity: 1;
|
2434
|
+
background-color: rgb(254 202 203 / var(--tw-bg-opacity));
|
2435
|
+
}
|
2436
|
+
|
2437
|
+
.bg-red-300 {
|
2438
|
+
--tw-bg-opacity: 1;
|
2439
|
+
background-color: rgb(251 165 166 / var(--tw-bg-opacity));
|
2440
|
+
}
|
2441
|
+
|
2442
|
+
.bg-red-400 {
|
2443
|
+
--tw-bg-opacity: 1;
|
2444
|
+
background-color: rgb(247 113 115 / var(--tw-bg-opacity));
|
2445
|
+
}
|
2446
|
+
|
2447
|
+
.bg-red-500 {
|
2448
|
+
--tw-bg-opacity: 1;
|
2449
|
+
background-color: rgb(238 68 71 / var(--tw-bg-opacity));
|
2450
|
+
}
|
2451
|
+
|
2452
|
+
.bg-red-600 {
|
2453
|
+
--tw-bg-opacity: 1;
|
2454
|
+
background-color: rgb(219 37 43 / var(--tw-bg-opacity));
|
2455
|
+
}
|
2456
|
+
|
2457
|
+
.bg-red-700 {
|
2458
|
+
--tw-bg-opacity: 1;
|
2459
|
+
background-color: rgb(184 27 32 / var(--tw-bg-opacity));
|
2460
|
+
}
|
2461
|
+
|
2462
|
+
.bg-red-800 {
|
2463
|
+
--tw-bg-opacity: 1;
|
2464
|
+
background-color: rgb(152 26 30 / var(--tw-bg-opacity));
|
2465
|
+
}
|
2466
|
+
|
2126
2467
|
.bg-storybook-default-heading {
|
2127
2468
|
--tw-bg-opacity: 1;
|
2128
2469
|
background-color: rgb(17 27 41 / var(--tw-bg-opacity));
|
2129
2470
|
}
|
2130
2471
|
|
2472
|
+
.bg-yellow-100 {
|
2473
|
+
--tw-bg-opacity: 1;
|
2474
|
+
background-color: rgb(255 249 199 / var(--tw-bg-opacity));
|
2475
|
+
}
|
2476
|
+
|
2477
|
+
.bg-yellow-200 {
|
2478
|
+
--tw-bg-opacity: 1;
|
2479
|
+
background-color: rgb(255 239 147 / var(--tw-bg-opacity));
|
2480
|
+
}
|
2481
|
+
|
2482
|
+
.bg-yellow-300 {
|
2483
|
+
--tw-bg-opacity: 1;
|
2484
|
+
background-color: rgb(255 223 90 / var(--tw-bg-opacity));
|
2485
|
+
}
|
2486
|
+
|
2487
|
+
.bg-yellow-400 {
|
2488
|
+
--tw-bg-opacity: 1;
|
2489
|
+
background-color: rgb(251 203 58 / var(--tw-bg-opacity));
|
2490
|
+
}
|
2491
|
+
|
2492
|
+
.bg-yellow-500 {
|
2493
|
+
--tw-bg-opacity: 1;
|
2494
|
+
background-color: rgb(235 178 48 / var(--tw-bg-opacity));
|
2495
|
+
}
|
2496
|
+
|
2497
|
+
.bg-yellow-600 {
|
2498
|
+
--tw-bg-opacity: 1;
|
2499
|
+
background-color: rgb(202 137 36 / var(--tw-bg-opacity));
|
2500
|
+
}
|
2501
|
+
|
2502
|
+
.bg-yellow-700 {
|
2503
|
+
--tw-bg-opacity: 1;
|
2504
|
+
background-color: rgb(161 97 26 / var(--tw-bg-opacity));
|
2505
|
+
}
|
2506
|
+
|
2507
|
+
.bg-yellow-800 {
|
2508
|
+
--tw-bg-opacity: 1;
|
2509
|
+
background-color: rgb(133 77 24 / var(--tw-bg-opacity));
|
2510
|
+
}
|
2511
|
+
|
2512
|
+
.stroke-2 {
|
2513
|
+
stroke-width: 2;
|
2514
|
+
}
|
2515
|
+
|
2131
2516
|
.object-contain {
|
2132
2517
|
object-fit: contain;
|
2133
2518
|
}
|
@@ -2632,30 +3017,95 @@ select {
|
|
2632
3017
|
line-height: 1.75rem;
|
2633
3018
|
}
|
2634
3019
|
|
2635
|
-
.text-xs {
|
2636
|
-
font-size: 0.75rem;
|
2637
|
-
line-height: 1rem;
|
3020
|
+
.text-xs {
|
3021
|
+
font-size: 0.75rem;
|
3022
|
+
line-height: 1rem;
|
3023
|
+
}
|
3024
|
+
|
3025
|
+
.font-medium {
|
3026
|
+
font-weight: 500;
|
3027
|
+
}
|
3028
|
+
|
3029
|
+
.font-semibold {
|
3030
|
+
font-weight: 600;
|
3031
|
+
}
|
3032
|
+
|
3033
|
+
.italic {
|
3034
|
+
font-style: italic;
|
3035
|
+
}
|
3036
|
+
|
3037
|
+
.not-italic {
|
3038
|
+
font-style: normal;
|
3039
|
+
}
|
3040
|
+
|
3041
|
+
.text-amber-100 {
|
3042
|
+
--tw-text-opacity: 1;
|
3043
|
+
color: rgb(255 243 212 / var(--tw-text-opacity));
|
3044
|
+
}
|
3045
|
+
|
3046
|
+
.text-amber-200 {
|
3047
|
+
--tw-text-opacity: 1;
|
3048
|
+
color: rgb(255 228 176 / var(--tw-text-opacity));
|
3049
|
+
}
|
3050
|
+
|
3051
|
+
.text-amber-300 {
|
3052
|
+
--tw-text-opacity: 1;
|
3053
|
+
color: rgb(255 206 112 / var(--tw-text-opacity));
|
3054
|
+
}
|
3055
|
+
|
3056
|
+
.text-amber-400 {
|
3057
|
+
--tw-text-opacity: 1;
|
3058
|
+
color: rgb(255 168 27 / var(--tw-text-opacity));
|
3059
|
+
}
|
3060
|
+
|
3061
|
+
.text-amber-500 {
|
3062
|
+
--tw-text-opacity: 1;
|
3063
|
+
color: rgb(224 121 0 / var(--tw-text-opacity));
|
3064
|
+
}
|
3065
|
+
|
3066
|
+
.text-amber-600 {
|
3067
|
+
--tw-text-opacity: 1;
|
3068
|
+
color: rgb(184 88 0 / var(--tw-text-opacity));
|
3069
|
+
}
|
3070
|
+
|
3071
|
+
.text-amber-700 {
|
3072
|
+
--tw-text-opacity: 1;
|
3073
|
+
color: rgb(153 55 0 / var(--tw-text-opacity));
|
3074
|
+
}
|
3075
|
+
|
3076
|
+
.text-amber-800 {
|
3077
|
+
--tw-text-opacity: 1;
|
3078
|
+
color: rgb(120 36 0 / var(--tw-text-opacity));
|
3079
|
+
}
|
3080
|
+
|
3081
|
+
.text-amber-900 {
|
3082
|
+
--tw-text-opacity: 1;
|
3083
|
+
color: rgb(71 21 0 / var(--tw-text-opacity));
|
2638
3084
|
}
|
2639
3085
|
|
2640
|
-
.
|
2641
|
-
|
3086
|
+
.text-base-0 {
|
3087
|
+
--tw-text-opacity: 1;
|
3088
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
2642
3089
|
}
|
2643
3090
|
|
2644
|
-
.
|
2645
|
-
|
3091
|
+
.text-base-1000 {
|
3092
|
+
--tw-text-opacity: 1;
|
3093
|
+
color: rgb(0 6 21 / var(--tw-text-opacity));
|
2646
3094
|
}
|
2647
3095
|
|
2648
|
-
.
|
2649
|
-
|
3096
|
+
.text-blue-100 {
|
3097
|
+
--tw-text-opacity: 1;
|
3098
|
+
color: rgb(240 244 255 / var(--tw-text-opacity));
|
2650
3099
|
}
|
2651
3100
|
|
2652
|
-
.
|
2653
|
-
|
3101
|
+
.text-blue-200 {
|
3102
|
+
--tw-text-opacity: 1;
|
3103
|
+
color: rgb(223 232 255 / var(--tw-text-opacity));
|
2654
3104
|
}
|
2655
3105
|
|
2656
|
-
.text-
|
3106
|
+
.text-blue-300 {
|
2657
3107
|
--tw-text-opacity: 1;
|
2658
|
-
color: rgb(
|
3108
|
+
color: rgb(198 214 255 / var(--tw-text-opacity));
|
2659
3109
|
}
|
2660
3110
|
|
2661
3111
|
.text-blue-400 {
|
@@ -2683,16 +3133,101 @@ select {
|
|
2683
3133
|
color: rgb(0 40 142 / var(--tw-text-opacity));
|
2684
3134
|
}
|
2685
3135
|
|
3136
|
+
.text-blue-900 {
|
3137
|
+
--tw-text-opacity: 1;
|
3138
|
+
color: rgb(0 28 99 / var(--tw-text-opacity));
|
3139
|
+
}
|
3140
|
+
|
3141
|
+
.text-cyan-100 {
|
3142
|
+
--tw-text-opacity: 1;
|
3143
|
+
color: rgb(227 250 255 / var(--tw-text-opacity));
|
3144
|
+
}
|
3145
|
+
|
3146
|
+
.text-cyan-200 {
|
3147
|
+
--tw-text-opacity: 1;
|
3148
|
+
color: rgb(194 244 255 / var(--tw-text-opacity));
|
3149
|
+
}
|
3150
|
+
|
3151
|
+
.text-cyan-300 {
|
3152
|
+
--tw-text-opacity: 1;
|
3153
|
+
color: rgb(147 236 255 / var(--tw-text-opacity));
|
3154
|
+
}
|
3155
|
+
|
3156
|
+
.text-cyan-400 {
|
3157
|
+
--tw-text-opacity: 1;
|
3158
|
+
color: rgb(62 202 232 / var(--tw-text-opacity));
|
3159
|
+
}
|
3160
|
+
|
3161
|
+
.text-cyan-500 {
|
3162
|
+
--tw-text-opacity: 1;
|
3163
|
+
color: rgb(14 150 178 / var(--tw-text-opacity));
|
3164
|
+
}
|
3165
|
+
|
3166
|
+
.text-cyan-600 {
|
3167
|
+
--tw-text-opacity: 1;
|
3168
|
+
color: rgb(4 117 141 / var(--tw-text-opacity));
|
3169
|
+
}
|
3170
|
+
|
3171
|
+
.text-cyan-700 {
|
3172
|
+
--tw-text-opacity: 1;
|
3173
|
+
color: rgb(0 90 108 / var(--tw-text-opacity));
|
3174
|
+
}
|
3175
|
+
|
2686
3176
|
.text-cyan-800 {
|
2687
3177
|
--tw-text-opacity: 1;
|
2688
3178
|
color: rgb(0 57 69 / var(--tw-text-opacity));
|
2689
3179
|
}
|
2690
3180
|
|
3181
|
+
.text-cyan-900 {
|
3182
|
+
--tw-text-opacity: 1;
|
3183
|
+
color: rgb(0 35 43 / var(--tw-text-opacity));
|
3184
|
+
}
|
3185
|
+
|
3186
|
+
.text-green-100 {
|
3187
|
+
--tw-text-opacity: 1;
|
3188
|
+
color: rgb(218 255 244 / var(--tw-text-opacity));
|
3189
|
+
}
|
3190
|
+
|
3191
|
+
.text-green-200 {
|
3192
|
+
--tw-text-opacity: 1;
|
3193
|
+
color: rgb(184 251 231 / var(--tw-text-opacity));
|
3194
|
+
}
|
3195
|
+
|
3196
|
+
.text-green-300 {
|
3197
|
+
--tw-text-opacity: 1;
|
3198
|
+
color: rgb(145 245 215 / var(--tw-text-opacity));
|
3199
|
+
}
|
3200
|
+
|
3201
|
+
.text-green-400 {
|
3202
|
+
--tw-text-opacity: 1;
|
3203
|
+
color: rgb(57 218 170 / var(--tw-text-opacity));
|
3204
|
+
}
|
3205
|
+
|
3206
|
+
.text-green-500 {
|
3207
|
+
--tw-text-opacity: 1;
|
3208
|
+
color: rgb(14 165 120 / var(--tw-text-opacity));
|
3209
|
+
}
|
3210
|
+
|
3211
|
+
.text-green-600 {
|
3212
|
+
--tw-text-opacity: 1;
|
3213
|
+
color: rgb(2 125 89 / var(--tw-text-opacity));
|
3214
|
+
}
|
3215
|
+
|
3216
|
+
.text-green-700 {
|
3217
|
+
--tw-text-opacity: 1;
|
3218
|
+
color: rgb(0 96 67 / var(--tw-text-opacity));
|
3219
|
+
}
|
3220
|
+
|
2691
3221
|
.text-green-800 {
|
2692
3222
|
--tw-text-opacity: 1;
|
2693
3223
|
color: rgb(0 60 43 / var(--tw-text-opacity));
|
2694
3224
|
}
|
2695
3225
|
|
3226
|
+
.text-green-900 {
|
3227
|
+
--tw-text-opacity: 1;
|
3228
|
+
color: rgb(0 40 29 / var(--tw-text-opacity));
|
3229
|
+
}
|
3230
|
+
|
2696
3231
|
.text-neutral-0 {
|
2697
3232
|
--tw-text-opacity: 1;
|
2698
3233
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
@@ -2703,6 +3238,21 @@ select {
|
|
2703
3238
|
color: rgb(243 244 246 / var(--tw-text-opacity));
|
2704
3239
|
}
|
2705
3240
|
|
3241
|
+
.text-neutral-1000 {
|
3242
|
+
--tw-text-opacity: 1;
|
3243
|
+
color: rgb(0 6 21 / var(--tw-text-opacity));
|
3244
|
+
}
|
3245
|
+
|
3246
|
+
.text-neutral-150 {
|
3247
|
+
--tw-text-opacity: 1;
|
3248
|
+
color: rgb(236 237 240 / var(--tw-text-opacity));
|
3249
|
+
}
|
3250
|
+
|
3251
|
+
.text-neutral-200 {
|
3252
|
+
--tw-text-opacity: 1;
|
3253
|
+
color: rgb(229 231 235 / var(--tw-text-opacity));
|
3254
|
+
}
|
3255
|
+
|
2706
3256
|
.text-neutral-300 {
|
2707
3257
|
--tw-text-opacity: 1;
|
2708
3258
|
color: rgb(210 214 219 / var(--tw-text-opacity));
|
@@ -2713,6 +3263,11 @@ select {
|
|
2713
3263
|
color: rgb(157 164 174 / var(--tw-text-opacity));
|
2714
3264
|
}
|
2715
3265
|
|
3266
|
+
.text-neutral-50 {
|
3267
|
+
--tw-text-opacity: 1;
|
3268
|
+
color: rgb(249 250 251 / var(--tw-text-opacity));
|
3269
|
+
}
|
3270
|
+
|
2716
3271
|
.text-neutral-500 {
|
2717
3272
|
--tw-text-opacity: 1;
|
2718
3273
|
color: rgb(108 115 127 / var(--tw-text-opacity));
|
@@ -2733,41 +3288,236 @@ select {
|
|
2733
3288
|
color: rgb(31 42 55 / var(--tw-text-opacity));
|
2734
3289
|
}
|
2735
3290
|
|
3291
|
+
.text-neutral-850 {
|
3292
|
+
--tw-text-opacity: 1;
|
3293
|
+
color: rgb(24 34 47 / var(--tw-text-opacity));
|
3294
|
+
}
|
3295
|
+
|
2736
3296
|
.text-neutral-900 {
|
2737
3297
|
--tw-text-opacity: 1;
|
2738
3298
|
color: rgb(17 25 39 / var(--tw-text-opacity));
|
2739
3299
|
}
|
2740
3300
|
|
3301
|
+
.text-neutral-950 {
|
3302
|
+
--tw-text-opacity: 1;
|
3303
|
+
color: rgb(13 20 32 / var(--tw-text-opacity));
|
3304
|
+
}
|
3305
|
+
|
3306
|
+
.text-orange-100 {
|
3307
|
+
--tw-text-opacity: 1;
|
3308
|
+
color: rgb(255 237 215 / var(--tw-text-opacity));
|
3309
|
+
}
|
3310
|
+
|
3311
|
+
.text-orange-200 {
|
3312
|
+
--tw-text-opacity: 1;
|
3313
|
+
color: rgb(254 215 173 / var(--tw-text-opacity));
|
3314
|
+
}
|
3315
|
+
|
3316
|
+
.text-orange-300 {
|
3317
|
+
--tw-text-opacity: 1;
|
3318
|
+
color: rgb(253 185 122 / var(--tw-text-opacity));
|
3319
|
+
}
|
3320
|
+
|
3321
|
+
.text-orange-400 {
|
3322
|
+
--tw-text-opacity: 1;
|
3323
|
+
color: rgb(251 145 71 / var(--tw-text-opacity));
|
3324
|
+
}
|
3325
|
+
|
3326
|
+
.text-orange-500 {
|
3327
|
+
--tw-text-opacity: 1;
|
3328
|
+
color: rgb(248 114 41 / var(--tw-text-opacity));
|
3329
|
+
}
|
3330
|
+
|
3331
|
+
.text-orange-600 {
|
3332
|
+
--tw-text-opacity: 1;
|
3333
|
+
color: rgb(233 87 31 / var(--tw-text-opacity));
|
3334
|
+
}
|
3335
|
+
|
3336
|
+
.text-orange-700 {
|
3337
|
+
--tw-text-opacity: 1;
|
3338
|
+
color: rgb(193 64 24 / var(--tw-text-opacity));
|
3339
|
+
}
|
3340
|
+
|
3341
|
+
.text-orange-800 {
|
3342
|
+
--tw-text-opacity: 1;
|
3343
|
+
color: rgb(153 52 24 / var(--tw-text-opacity));
|
3344
|
+
}
|
3345
|
+
|
3346
|
+
.text-pink-100 {
|
3347
|
+
--tw-text-opacity: 1;
|
3348
|
+
color: rgb(255 237 244 / var(--tw-text-opacity));
|
3349
|
+
}
|
3350
|
+
|
3351
|
+
.text-pink-200 {
|
3352
|
+
--tw-text-opacity: 1;
|
3353
|
+
color: rgb(255 217 231 / var(--tw-text-opacity));
|
3354
|
+
}
|
3355
|
+
|
3356
|
+
.text-pink-300 {
|
3357
|
+
--tw-text-opacity: 1;
|
3358
|
+
color: rgb(255 188 214 / var(--tw-text-opacity));
|
3359
|
+
}
|
3360
|
+
|
2741
3361
|
.text-pink-400 {
|
2742
3362
|
--tw-text-opacity: 1;
|
2743
3363
|
color: rgb(246 119 170 / var(--tw-text-opacity));
|
2744
3364
|
}
|
2745
3365
|
|
3366
|
+
.text-pink-500 {
|
3367
|
+
--tw-text-opacity: 1;
|
3368
|
+
color: rgb(225 58 124 / var(--tw-text-opacity));
|
3369
|
+
}
|
3370
|
+
|
2746
3371
|
.text-pink-600 {
|
2747
3372
|
--tw-text-opacity: 1;
|
2748
3373
|
color: rgb(194 30 95 / var(--tw-text-opacity));
|
2749
3374
|
}
|
2750
3375
|
|
3376
|
+
.text-pink-700 {
|
3377
|
+
--tw-text-opacity: 1;
|
3378
|
+
color: rgb(165 10 72 / var(--tw-text-opacity));
|
3379
|
+
}
|
3380
|
+
|
2751
3381
|
.text-pink-800 {
|
2752
3382
|
--tw-text-opacity: 1;
|
2753
3383
|
color: rgb(113 0 44 / var(--tw-text-opacity));
|
2754
3384
|
}
|
2755
3385
|
|
3386
|
+
.text-pink-900 {
|
3387
|
+
--tw-text-opacity: 1;
|
3388
|
+
color: rgb(73 0 29 / var(--tw-text-opacity));
|
3389
|
+
}
|
3390
|
+
|
3391
|
+
.text-purple-100 {
|
3392
|
+
--tw-text-opacity: 1;
|
3393
|
+
color: rgb(247 242 255 / var(--tw-text-opacity));
|
3394
|
+
}
|
3395
|
+
|
3396
|
+
.text-purple-200 {
|
3397
|
+
--tw-text-opacity: 1;
|
3398
|
+
color: rgb(237 225 255 / var(--tw-text-opacity));
|
3399
|
+
}
|
3400
|
+
|
3401
|
+
.text-purple-300 {
|
3402
|
+
--tw-text-opacity: 1;
|
3403
|
+
color: rgb(219 198 255 / var(--tw-text-opacity));
|
3404
|
+
}
|
3405
|
+
|
3406
|
+
.text-purple-400 {
|
3407
|
+
--tw-text-opacity: 1;
|
3408
|
+
color: rgb(180 135 255 / var(--tw-text-opacity));
|
3409
|
+
}
|
3410
|
+
|
2756
3411
|
.text-purple-500 {
|
2757
3412
|
--tw-text-opacity: 1;
|
2758
3413
|
color: rgb(140 73 250 / var(--tw-text-opacity));
|
2759
3414
|
}
|
2760
3415
|
|
3416
|
+
.text-purple-600 {
|
3417
|
+
--tw-text-opacity: 1;
|
3418
|
+
color: rgb(113 43 227 / var(--tw-text-opacity));
|
3419
|
+
}
|
3420
|
+
|
3421
|
+
.text-purple-700 {
|
3422
|
+
--tw-text-opacity: 1;
|
3423
|
+
color: rgb(94 19 215 / var(--tw-text-opacity));
|
3424
|
+
}
|
3425
|
+
|
2761
3426
|
.text-purple-800 {
|
2762
3427
|
--tw-text-opacity: 1;
|
2763
3428
|
color: rgb(63 1 166 / var(--tw-text-opacity));
|
2764
3429
|
}
|
2765
3430
|
|
3431
|
+
.text-purple-900 {
|
3432
|
+
--tw-text-opacity: 1;
|
3433
|
+
color: rgb(41 0 107 / var(--tw-text-opacity));
|
3434
|
+
}
|
3435
|
+
|
3436
|
+
.text-red-100 {
|
3437
|
+
--tw-text-opacity: 1;
|
3438
|
+
color: rgb(254 226 226 / var(--tw-text-opacity));
|
3439
|
+
}
|
3440
|
+
|
3441
|
+
.text-red-200 {
|
3442
|
+
--tw-text-opacity: 1;
|
3443
|
+
color: rgb(254 202 203 / var(--tw-text-opacity));
|
3444
|
+
}
|
3445
|
+
|
3446
|
+
.text-red-300 {
|
3447
|
+
--tw-text-opacity: 1;
|
3448
|
+
color: rgb(251 165 166 / var(--tw-text-opacity));
|
3449
|
+
}
|
3450
|
+
|
3451
|
+
.text-red-400 {
|
3452
|
+
--tw-text-opacity: 1;
|
3453
|
+
color: rgb(247 113 115 / var(--tw-text-opacity));
|
3454
|
+
}
|
3455
|
+
|
3456
|
+
.text-red-500 {
|
3457
|
+
--tw-text-opacity: 1;
|
3458
|
+
color: rgb(238 68 71 / var(--tw-text-opacity));
|
3459
|
+
}
|
3460
|
+
|
3461
|
+
.text-red-600 {
|
3462
|
+
--tw-text-opacity: 1;
|
3463
|
+
color: rgb(219 37 43 / var(--tw-text-opacity));
|
3464
|
+
}
|
3465
|
+
|
3466
|
+
.text-red-700 {
|
3467
|
+
--tw-text-opacity: 1;
|
3468
|
+
color: rgb(184 27 32 / var(--tw-text-opacity));
|
3469
|
+
}
|
3470
|
+
|
3471
|
+
.text-red-800 {
|
3472
|
+
--tw-text-opacity: 1;
|
3473
|
+
color: rgb(152 26 30 / var(--tw-text-opacity));
|
3474
|
+
}
|
3475
|
+
|
2766
3476
|
.text-storybook-default-heading {
|
2767
3477
|
--tw-text-opacity: 1;
|
2768
3478
|
color: rgb(17 27 41 / var(--tw-text-opacity));
|
2769
3479
|
}
|
2770
3480
|
|
3481
|
+
.text-yellow-100 {
|
3482
|
+
--tw-text-opacity: 1;
|
3483
|
+
color: rgb(255 249 199 / var(--tw-text-opacity));
|
3484
|
+
}
|
3485
|
+
|
3486
|
+
.text-yellow-200 {
|
3487
|
+
--tw-text-opacity: 1;
|
3488
|
+
color: rgb(255 239 147 / var(--tw-text-opacity));
|
3489
|
+
}
|
3490
|
+
|
3491
|
+
.text-yellow-300 {
|
3492
|
+
--tw-text-opacity: 1;
|
3493
|
+
color: rgb(255 223 90 / var(--tw-text-opacity));
|
3494
|
+
}
|
3495
|
+
|
3496
|
+
.text-yellow-400 {
|
3497
|
+
--tw-text-opacity: 1;
|
3498
|
+
color: rgb(251 203 58 / var(--tw-text-opacity));
|
3499
|
+
}
|
3500
|
+
|
3501
|
+
.text-yellow-500 {
|
3502
|
+
--tw-text-opacity: 1;
|
3503
|
+
color: rgb(235 178 48 / var(--tw-text-opacity));
|
3504
|
+
}
|
3505
|
+
|
3506
|
+
.text-yellow-600 {
|
3507
|
+
--tw-text-opacity: 1;
|
3508
|
+
color: rgb(202 137 36 / var(--tw-text-opacity));
|
3509
|
+
}
|
3510
|
+
|
3511
|
+
.text-yellow-700 {
|
3512
|
+
--tw-text-opacity: 1;
|
3513
|
+
color: rgb(161 97 26 / var(--tw-text-opacity));
|
3514
|
+
}
|
3515
|
+
|
3516
|
+
.text-yellow-800 {
|
3517
|
+
--tw-text-opacity: 1;
|
3518
|
+
color: rgb(133 77 24 / var(--tw-text-opacity));
|
3519
|
+
}
|
3520
|
+
|
2771
3521
|
.underline {
|
2772
3522
|
text-decoration-line: underline;
|
2773
3523
|
}
|
@@ -4179,259 +4929,291 @@ select {
|
|
4179
4929
|
}
|
4180
4930
|
|
4181
4931
|
@media (min-width: 600px) {
|
4182
|
-
.
|
4183
|
-
|
4932
|
+
.tb\:visible {
|
4933
|
+
visibility: visible;
|
4934
|
+
}
|
4935
|
+
|
4936
|
+
.tb\:ml-0 {
|
4937
|
+
margin-left: 0px;
|
4938
|
+
}
|
4939
|
+
|
4940
|
+
.tb\:flex {
|
4941
|
+
display: flex;
|
4942
|
+
}
|
4943
|
+
|
4944
|
+
.tb\:inline-flex {
|
4945
|
+
display: inline-flex;
|
4184
4946
|
}
|
4185
4947
|
|
4186
|
-
.
|
4948
|
+
.tb\:hidden {
|
4187
4949
|
display: none;
|
4188
4950
|
}
|
4189
4951
|
|
4190
|
-
.
|
4952
|
+
.tb\:w-fit {
|
4191
4953
|
width: -webkit-fit-content;
|
4192
4954
|
width: -moz-fit-content;
|
4193
4955
|
width: fit-content;
|
4194
4956
|
}
|
4195
4957
|
|
4196
|
-
.
|
4958
|
+
.tb\:min-w-\[18rem\] {
|
4959
|
+
min-width: 18rem;
|
4960
|
+
}
|
4961
|
+
|
4962
|
+
.tb\:flex-col {
|
4963
|
+
flex-direction: column;
|
4964
|
+
}
|
4965
|
+
|
4966
|
+
.tb\:items-center {
|
4967
|
+
align-items: center;
|
4968
|
+
}
|
4969
|
+
|
4970
|
+
.tb\:rounded-2xl {
|
4971
|
+
border-radius: 1rem;
|
4972
|
+
}
|
4973
|
+
|
4974
|
+
.tb\:p-8 {
|
4975
|
+
padding: 2rem;
|
4976
|
+
}
|
4977
|
+
|
4978
|
+
.tb\:text-hds-t-body1 {
|
4197
4979
|
font-size: 1rem;
|
4198
4980
|
line-height: 1.75rem;
|
4199
4981
|
letter-spacing: -0.01em;
|
4200
4982
|
font-weight: 400;
|
4201
4983
|
}
|
4202
4984
|
|
4203
|
-
.
|
4985
|
+
.tb\:text-hds-t-body1-bold {
|
4204
4986
|
font-size: 1rem;
|
4205
4987
|
line-height: 1.75rem;
|
4206
4988
|
letter-spacing: -0.01em;
|
4207
4989
|
font-weight: 700;
|
4208
4990
|
}
|
4209
4991
|
|
4210
|
-
.
|
4992
|
+
.tb\:text-hds-t-body1-medium {
|
4211
4993
|
font-size: 1rem;
|
4212
4994
|
line-height: 1.75rem;
|
4213
4995
|
letter-spacing: -0.01em;
|
4214
4996
|
font-weight: 500;
|
4215
4997
|
}
|
4216
4998
|
|
4217
|
-
.
|
4999
|
+
.tb\:text-hds-t-body1-semi-bold {
|
4218
5000
|
font-size: 1rem;
|
4219
5001
|
line-height: 1.75rem;
|
4220
5002
|
letter-spacing: -0.01em;
|
4221
5003
|
font-weight: 600;
|
4222
5004
|
}
|
4223
5005
|
|
4224
|
-
.
|
5006
|
+
.tb\:text-hds-t-body1c {
|
4225
5007
|
font-size: 1rem;
|
4226
5008
|
line-height: 1.5rem;
|
4227
5009
|
letter-spacing: -0.01em;
|
4228
5010
|
font-weight: 400;
|
4229
5011
|
}
|
4230
5012
|
|
4231
|
-
.
|
5013
|
+
.tb\:text-hds-t-body1c-bold {
|
4232
5014
|
font-size: 1rem;
|
4233
5015
|
line-height: 1.5rem;
|
4234
5016
|
letter-spacing: -0.01em;
|
4235
5017
|
font-weight: 700;
|
4236
5018
|
}
|
4237
5019
|
|
4238
|
-
.
|
5020
|
+
.tb\:text-hds-t-body1c-medium {
|
4239
5021
|
font-size: 1rem;
|
4240
5022
|
line-height: 1.5rem;
|
4241
5023
|
letter-spacing: -0.01em;
|
4242
5024
|
font-weight: 500;
|
4243
5025
|
}
|
4244
5026
|
|
4245
|
-
.
|
5027
|
+
.tb\:text-hds-t-body1c-semi-bold {
|
4246
5028
|
font-size: 1rem;
|
4247
5029
|
line-height: 1.5rem;
|
4248
5030
|
letter-spacing: -0.01em;
|
4249
5031
|
font-weight: 600;
|
4250
5032
|
}
|
4251
5033
|
|
4252
|
-
.
|
5034
|
+
.tb\:text-hds-t-body2 {
|
4253
5035
|
font-size: 0.938rem;
|
4254
5036
|
line-height: 1.625rem;
|
4255
5037
|
letter-spacing: -0.01em;
|
4256
5038
|
font-weight: 400;
|
4257
5039
|
}
|
4258
5040
|
|
4259
|
-
.
|
5041
|
+
.tb\:text-hds-t-body2-bold {
|
4260
5042
|
font-size: 0.938rem;
|
4261
5043
|
line-height: 1.625rem;
|
4262
5044
|
letter-spacing: -0.01em;
|
4263
5045
|
font-weight: 700;
|
4264
5046
|
}
|
4265
5047
|
|
4266
|
-
.
|
5048
|
+
.tb\:text-hds-t-body2-medium {
|
4267
5049
|
font-size: 0.938rem;
|
4268
5050
|
line-height: 1.625rem;
|
4269
5051
|
letter-spacing: -0.01em;
|
4270
5052
|
font-weight: 500;
|
4271
5053
|
}
|
4272
5054
|
|
4273
|
-
.
|
5055
|
+
.tb\:text-hds-t-body2-semi-bold {
|
4274
5056
|
font-size: 0.938rem;
|
4275
5057
|
line-height: 1.625rem;
|
4276
5058
|
letter-spacing: -0.01em;
|
4277
5059
|
font-weight: 600;
|
4278
5060
|
}
|
4279
5061
|
|
4280
|
-
.
|
5062
|
+
.tb\:text-hds-t-body2c {
|
4281
5063
|
font-size: 0.938rem;
|
4282
5064
|
line-height: 1.375rem;
|
4283
5065
|
letter-spacing: -0.01em;
|
4284
5066
|
font-weight: 400;
|
4285
5067
|
}
|
4286
5068
|
|
4287
|
-
.
|
5069
|
+
.tb\:text-hds-t-body2c-bold {
|
4288
5070
|
font-size: 0.938rem;
|
4289
5071
|
line-height: 1.375rem;
|
4290
5072
|
letter-spacing: -0.01em;
|
4291
5073
|
font-weight: 700;
|
4292
5074
|
}
|
4293
5075
|
|
4294
|
-
.
|
5076
|
+
.tb\:text-hds-t-body2c-medium {
|
4295
5077
|
font-size: 0.938rem;
|
4296
5078
|
line-height: 1.375rem;
|
4297
5079
|
letter-spacing: -0.01em;
|
4298
5080
|
font-weight: 500;
|
4299
5081
|
}
|
4300
5082
|
|
4301
|
-
.
|
5083
|
+
.tb\:text-hds-t-body2c-semi-bold {
|
4302
5084
|
font-size: 0.938rem;
|
4303
5085
|
line-height: 1.375rem;
|
4304
5086
|
letter-spacing: -0.01em;
|
4305
5087
|
font-weight: 600;
|
4306
5088
|
}
|
4307
5089
|
|
4308
|
-
.
|
5090
|
+
.tb\:text-hds-t-body3 {
|
4309
5091
|
font-size: 0.875rem;
|
4310
5092
|
line-height: 1.5rem;
|
4311
5093
|
letter-spacing: ;
|
4312
5094
|
font-weight: 400;
|
4313
5095
|
}
|
4314
5096
|
|
4315
|
-
.
|
5097
|
+
.tb\:text-hds-t-body3-bold {
|
4316
5098
|
font-size: 0.875rem;
|
4317
5099
|
line-height: 1.5rem;
|
4318
5100
|
letter-spacing: ;
|
4319
5101
|
font-weight: 700;
|
4320
5102
|
}
|
4321
5103
|
|
4322
|
-
.
|
5104
|
+
.tb\:text-hds-t-body3-medium {
|
4323
5105
|
font-size: 0.875rem;
|
4324
5106
|
line-height: 1.5rem;
|
4325
5107
|
letter-spacing: ;
|
4326
5108
|
font-weight: 500;
|
4327
5109
|
}
|
4328
5110
|
|
4329
|
-
.
|
5111
|
+
.tb\:text-hds-t-body3-semi-bold {
|
4330
5112
|
font-size: 0.875rem;
|
4331
5113
|
line-height: 1.5rem;
|
4332
5114
|
letter-spacing: ;
|
4333
5115
|
font-weight: 600;
|
4334
5116
|
}
|
4335
5117
|
|
4336
|
-
.
|
5118
|
+
.tb\:text-hds-t-body3c {
|
4337
5119
|
font-size: 0.875rem;
|
4338
5120
|
line-height: 1.25rem;
|
4339
5121
|
letter-spacing: ;
|
4340
5122
|
font-weight: 400;
|
4341
5123
|
}
|
4342
5124
|
|
4343
|
-
.
|
5125
|
+
.tb\:text-hds-t-body3c-bold {
|
4344
5126
|
font-size: 0.875rem;
|
4345
5127
|
line-height: 1.25rem;
|
4346
5128
|
letter-spacing: ;
|
4347
5129
|
font-weight: 700;
|
4348
5130
|
}
|
4349
5131
|
|
4350
|
-
.
|
5132
|
+
.tb\:text-hds-t-body3c-medium {
|
4351
5133
|
font-size: 0.875rem;
|
4352
5134
|
line-height: 1.25rem;
|
4353
5135
|
letter-spacing: ;
|
4354
5136
|
font-weight: 500;
|
4355
5137
|
}
|
4356
5138
|
|
4357
|
-
.
|
5139
|
+
.tb\:text-hds-t-body3c-semi-bold {
|
4358
5140
|
font-size: 0.875rem;
|
4359
5141
|
line-height: 1.25rem;
|
4360
5142
|
letter-spacing: ;
|
4361
5143
|
font-weight: 600;
|
4362
5144
|
}
|
4363
5145
|
|
4364
|
-
.
|
5146
|
+
.tb\:text-hds-t-code1 {
|
4365
5147
|
font-size: 1rem;
|
4366
5148
|
line-height: 1.75rem;
|
4367
5149
|
letter-spacing: -0.01em;
|
4368
5150
|
font-weight: 400;
|
4369
5151
|
}
|
4370
5152
|
|
4371
|
-
.
|
5153
|
+
.tb\:text-hds-t-code2 {
|
4372
5154
|
font-size: 0.938rem;
|
4373
5155
|
line-height: 1.625rem;
|
4374
5156
|
letter-spacing: -0.01em;
|
4375
5157
|
font-weight: 400;
|
4376
5158
|
}
|
4377
5159
|
|
4378
|
-
.
|
5160
|
+
.tb\:text-hds-t-h1 {
|
4379
5161
|
font-size: 3rem;
|
4380
5162
|
line-height: 1.25;
|
4381
5163
|
letter-spacing: -0.02em;
|
4382
5164
|
font-weight: 700;
|
4383
5165
|
}
|
4384
5166
|
|
4385
|
-
.
|
5167
|
+
.tb\:text-hds-t-h2 {
|
4386
5168
|
font-size: 2.25rem;
|
4387
5169
|
line-height: 3rem;
|
4388
5170
|
letter-spacing: -0.02em;
|
4389
5171
|
font-weight: 700;
|
4390
5172
|
}
|
4391
5173
|
|
4392
|
-
.
|
5174
|
+
.tb\:text-hds-t-h3 {
|
4393
5175
|
font-size: 1.875rem;
|
4394
5176
|
line-height: 2.5rem;
|
4395
5177
|
letter-spacing: -0.02em;
|
4396
5178
|
font-weight: 700;
|
4397
5179
|
}
|
4398
5180
|
|
4399
|
-
.
|
5181
|
+
.tb\:text-hds-t-h4 {
|
4400
5182
|
font-size: 1.25rem;
|
4401
5183
|
line-height: 2rem;
|
4402
5184
|
letter-spacing: -0.02em;
|
4403
5185
|
font-weight: 600;
|
4404
5186
|
}
|
4405
5187
|
|
4406
|
-
.
|
5188
|
+
.tb\:text-hds-t-h5 {
|
4407
5189
|
font-size: 1.125rem;
|
4408
5190
|
line-height: 1.75rem;
|
4409
5191
|
letter-spacing: -0.02em;
|
4410
5192
|
font-weight: 600;
|
4411
5193
|
}
|
4412
5194
|
|
4413
|
-
.
|
5195
|
+
.tb\:text-hds-t-h6 {
|
4414
5196
|
font-size: 0.75rem;
|
4415
5197
|
line-height: 1.25rem;
|
4416
5198
|
letter-spacing: 0.08em;
|
4417
5199
|
font-weight: 700;
|
4418
5200
|
}
|
4419
5201
|
|
4420
|
-
.
|
5202
|
+
.tb\:text-hds-t-quote {
|
4421
5203
|
font-size: 1.125rem;
|
4422
5204
|
line-height: 1.75rem;
|
4423
5205
|
letter-spacing: -0.01em;
|
4424
5206
|
font-weight: 400;
|
4425
5207
|
}
|
4426
5208
|
|
4427
|
-
.
|
5209
|
+
.tb\:text-hds-t-sub1 {
|
4428
5210
|
font-size: 1.25rem;
|
4429
5211
|
line-height: 2rem;
|
4430
5212
|
letter-spacing: -0.01em;
|
4431
5213
|
font-weight: 400;
|
4432
5214
|
}
|
4433
5215
|
|
4434
|
-
.
|
5216
|
+
.tb\:text-hds-t-sub2 {
|
4435
5217
|
font-size: 1.125rem;
|
4436
5218
|
line-height: 1.75rem;
|
4437
5219
|
letter-spacing: -0.01em;
|
@@ -4440,10 +5222,6 @@ select {
|
|
4440
5222
|
}
|
4441
5223
|
|
4442
5224
|
@media (min-width: 640px) {
|
4443
|
-
.sm\:visible {
|
4444
|
-
visibility: visible;
|
4445
|
-
}
|
4446
|
-
|
4447
5225
|
.sm\:-mx-0 {
|
4448
5226
|
margin-left: -0px;
|
4449
5227
|
margin-right: -0px;
|
@@ -4489,10 +5267,6 @@ select {
|
|
4489
5267
|
width: 3rem;
|
4490
5268
|
}
|
4491
5269
|
|
4492
|
-
.sm\:w-52 {
|
4493
|
-
width: 13rem;
|
4494
|
-
}
|
4495
|
-
|
4496
5270
|
.sm\:max-w-sm {
|
4497
5271
|
max-width: 24rem;
|
4498
5272
|
}
|
@@ -4658,291 +5432,259 @@ select {
|
|
4658
5432
|
}
|
4659
5433
|
|
4660
5434
|
@media (min-width: 1240px) {
|
4661
|
-
.
|
5435
|
+
.db\:-left-5 {
|
4662
5436
|
left: -1.25rem;
|
4663
5437
|
}
|
4664
5438
|
|
4665
|
-
.
|
5439
|
+
.db\:-right-5 {
|
4666
5440
|
right: -1.25rem;
|
4667
5441
|
}
|
4668
5442
|
|
4669
|
-
.
|
4670
|
-
margin-left: 0px;
|
4671
|
-
}
|
4672
|
-
|
4673
|
-
.desk\:flex {
|
4674
|
-
display: flex;
|
4675
|
-
}
|
4676
|
-
|
4677
|
-
.desk\:inline-flex {
|
4678
|
-
display: inline-flex;
|
4679
|
-
}
|
4680
|
-
|
4681
|
-
.desk\:w-fit {
|
5443
|
+
.db\:w-fit {
|
4682
5444
|
width: -webkit-fit-content;
|
4683
5445
|
width: -moz-fit-content;
|
4684
5446
|
width: fit-content;
|
4685
5447
|
}
|
4686
5448
|
|
4687
|
-
.
|
4688
|
-
min-width: 18rem;
|
4689
|
-
}
|
4690
|
-
|
4691
|
-
.desk\:flex-col {
|
4692
|
-
flex-direction: column;
|
4693
|
-
}
|
4694
|
-
|
4695
|
-
.desk\:items-center {
|
4696
|
-
align-items: center;
|
4697
|
-
}
|
4698
|
-
|
4699
|
-
.desk\:rounded-2xl {
|
4700
|
-
border-radius: 1rem;
|
4701
|
-
}
|
4702
|
-
|
4703
|
-
.desk\:p-8 {
|
4704
|
-
padding: 2rem;
|
4705
|
-
}
|
4706
|
-
|
4707
|
-
.desk\:text-hds-d-body1 {
|
5449
|
+
.db\:text-hds-d-body1 {
|
4708
5450
|
font-size: 1rem;
|
4709
5451
|
line-height: 1.75rem;
|
4710
5452
|
letter-spacing: -0.01em;
|
4711
5453
|
font-weight: 400;
|
4712
5454
|
}
|
4713
5455
|
|
4714
|
-
.
|
5456
|
+
.db\:text-hds-d-body1-bold {
|
4715
5457
|
font-size: 1rem;
|
4716
5458
|
line-height: 1.75rem;
|
4717
5459
|
letter-spacing: -0.01em;
|
4718
5460
|
font-weight: 700;
|
4719
5461
|
}
|
4720
5462
|
|
4721
|
-
.
|
5463
|
+
.db\:text-hds-d-body1-medium {
|
4722
5464
|
font-size: 1rem;
|
4723
5465
|
line-height: 1.75rem;
|
4724
5466
|
letter-spacing: -0.01em;
|
4725
5467
|
font-weight: 500;
|
4726
5468
|
}
|
4727
5469
|
|
4728
|
-
.
|
5470
|
+
.db\:text-hds-d-body1-semi-bold {
|
4729
5471
|
font-size: 1rem;
|
4730
5472
|
line-height: 1.75rem;
|
4731
5473
|
letter-spacing: -0.01em;
|
4732
5474
|
font-weight: 600;
|
4733
5475
|
}
|
4734
5476
|
|
4735
|
-
.
|
5477
|
+
.db\:text-hds-d-body1c {
|
4736
5478
|
font-size: 1rem;
|
4737
5479
|
line-height: 1.5rem;
|
4738
5480
|
letter-spacing: -0.01em;
|
4739
5481
|
font-weight: 400;
|
4740
5482
|
}
|
4741
5483
|
|
4742
|
-
.
|
5484
|
+
.db\:text-hds-d-body1c-bold {
|
4743
5485
|
font-size: 1rem;
|
4744
5486
|
line-height: 1.5rem;
|
4745
5487
|
letter-spacing: -0.01em;
|
4746
5488
|
font-weight: 700;
|
4747
5489
|
}
|
4748
5490
|
|
4749
|
-
.
|
5491
|
+
.db\:text-hds-d-body1c-medium {
|
4750
5492
|
font-size: 1rem;
|
4751
5493
|
line-height: 1.5rem;
|
4752
5494
|
letter-spacing: -0.01em;
|
4753
5495
|
font-weight: 500;
|
4754
5496
|
}
|
4755
5497
|
|
4756
|
-
.
|
5498
|
+
.db\:text-hds-d-body1c-semi-bold {
|
4757
5499
|
font-size: 1rem;
|
4758
5500
|
line-height: 1.5rem;
|
4759
5501
|
letter-spacing: -0.01em;
|
4760
5502
|
font-weight: 600;
|
4761
5503
|
}
|
4762
5504
|
|
4763
|
-
.
|
5505
|
+
.db\:text-hds-d-body2 {
|
4764
5506
|
font-size: 0.938rem;
|
4765
5507
|
line-height: 1.625rem;
|
4766
5508
|
letter-spacing: -0.01em;
|
4767
5509
|
font-weight: 400;
|
4768
5510
|
}
|
4769
5511
|
|
4770
|
-
.
|
5512
|
+
.db\:text-hds-d-body2-bold {
|
4771
5513
|
font-size: 0.938rem;
|
4772
5514
|
line-height: 1.625rem;
|
4773
5515
|
letter-spacing: -0.01em;
|
4774
5516
|
font-weight: 700;
|
4775
5517
|
}
|
4776
5518
|
|
4777
|
-
.
|
5519
|
+
.db\:text-hds-d-body2-medium {
|
4778
5520
|
font-size: 0.938rem;
|
4779
5521
|
line-height: 1.625rem;
|
4780
5522
|
letter-spacing: -0.01em;
|
4781
5523
|
font-weight: 500;
|
4782
5524
|
}
|
4783
5525
|
|
4784
|
-
.
|
5526
|
+
.db\:text-hds-d-body2-semi-bold {
|
4785
5527
|
font-size: 0.938rem;
|
4786
5528
|
line-height: 1.625rem;
|
4787
5529
|
letter-spacing: -0.01em;
|
4788
5530
|
font-weight: 600;
|
4789
5531
|
}
|
4790
5532
|
|
4791
|
-
.
|
5533
|
+
.db\:text-hds-d-body2c {
|
4792
5534
|
font-size: 0.938rem;
|
4793
5535
|
line-height: 1.375rem;
|
4794
5536
|
letter-spacing: -0.01em;
|
4795
5537
|
font-weight: 400;
|
4796
5538
|
}
|
4797
5539
|
|
4798
|
-
.
|
5540
|
+
.db\:text-hds-d-body2c-bold {
|
4799
5541
|
font-size: 0.938rem;
|
4800
5542
|
line-height: 1.375rem;
|
4801
5543
|
letter-spacing: -0.01em;
|
4802
5544
|
font-weight: 700;
|
4803
5545
|
}
|
4804
5546
|
|
4805
|
-
.
|
5547
|
+
.db\:text-hds-d-body2c-medium {
|
4806
5548
|
font-size: 0.938rem;
|
4807
5549
|
line-height: 1.375rem;
|
4808
5550
|
letter-spacing: -0.01em;
|
4809
5551
|
font-weight: 500;
|
4810
5552
|
}
|
4811
5553
|
|
4812
|
-
.
|
5554
|
+
.db\:text-hds-d-body2c-semi-bold {
|
4813
5555
|
font-size: 0.938rem;
|
4814
5556
|
line-height: 1.375rem;
|
4815
5557
|
letter-spacing: -0.01em;
|
4816
5558
|
font-weight: 600;
|
4817
5559
|
}
|
4818
5560
|
|
4819
|
-
.
|
5561
|
+
.db\:text-hds-d-body3 {
|
4820
5562
|
font-size: 0.875rem;
|
4821
5563
|
line-height: 1.5rem;
|
4822
5564
|
letter-spacing: ;
|
4823
5565
|
font-weight: 400;
|
4824
5566
|
}
|
4825
5567
|
|
4826
|
-
.
|
5568
|
+
.db\:text-hds-d-body3-bold {
|
4827
5569
|
font-size: 0.875rem;
|
4828
5570
|
line-height: 1.5rem;
|
4829
5571
|
letter-spacing: ;
|
4830
5572
|
font-weight: 700;
|
4831
5573
|
}
|
4832
5574
|
|
4833
|
-
.
|
5575
|
+
.db\:text-hds-d-body3-medium {
|
4834
5576
|
font-size: 0.875rem;
|
4835
5577
|
line-height: 1.5rem;
|
4836
5578
|
letter-spacing: ;
|
4837
5579
|
font-weight: 500;
|
4838
5580
|
}
|
4839
5581
|
|
4840
|
-
.
|
5582
|
+
.db\:text-hds-d-body3-semi-bold {
|
4841
5583
|
font-size: 0.875rem;
|
4842
5584
|
line-height: 1.5rem;
|
4843
5585
|
letter-spacing: ;
|
4844
5586
|
font-weight: 600;
|
4845
5587
|
}
|
4846
5588
|
|
4847
|
-
.
|
5589
|
+
.db\:text-hds-d-body3c {
|
4848
5590
|
font-size: 0.875rem;
|
4849
5591
|
line-height: 1.25rem;
|
4850
5592
|
letter-spacing: ;
|
4851
5593
|
font-weight: 400;
|
4852
5594
|
}
|
4853
5595
|
|
4854
|
-
.
|
5596
|
+
.db\:text-hds-d-body3c-bold {
|
4855
5597
|
font-size: 0.875rem;
|
4856
5598
|
line-height: 1.25rem;
|
4857
5599
|
letter-spacing: ;
|
4858
5600
|
font-weight: 700;
|
4859
5601
|
}
|
4860
5602
|
|
4861
|
-
.
|
5603
|
+
.db\:text-hds-d-body3c-medium {
|
4862
5604
|
font-size: 0.875rem;
|
4863
5605
|
line-height: 1.25rem;
|
4864
5606
|
letter-spacing: ;
|
4865
5607
|
font-weight: 500;
|
4866
5608
|
}
|
4867
5609
|
|
4868
|
-
.
|
5610
|
+
.db\:text-hds-d-body3c-semi-bold {
|
4869
5611
|
font-size: 0.875rem;
|
4870
5612
|
line-height: 1.25rem;
|
4871
5613
|
letter-spacing: ;
|
4872
5614
|
font-weight: 600;
|
4873
5615
|
}
|
4874
5616
|
|
4875
|
-
.
|
5617
|
+
.db\:text-hds-d-code1 {
|
4876
5618
|
font-size: 1rem;
|
4877
5619
|
line-height: 1.75rem;
|
4878
5620
|
letter-spacing: -0.01em;
|
4879
5621
|
font-weight: 400;
|
4880
5622
|
}
|
4881
5623
|
|
4882
|
-
.
|
5624
|
+
.db\:text-hds-d-code2 {
|
4883
5625
|
font-size: 0.938rem;
|
4884
5626
|
line-height: 1.625rem;
|
4885
5627
|
letter-spacing: -0.01em;
|
4886
5628
|
font-weight: 400;
|
4887
5629
|
}
|
4888
5630
|
|
4889
|
-
.
|
5631
|
+
.db\:text-hds-d-h1 {
|
4890
5632
|
font-size: 4rem;
|
4891
5633
|
line-height: 1.125;
|
4892
5634
|
letter-spacing: -0.02em;
|
4893
5635
|
font-weight: 700;
|
4894
5636
|
}
|
4895
5637
|
|
4896
|
-
.
|
5638
|
+
.db\:text-hds-d-h2 {
|
4897
5639
|
font-size: 3rem;
|
4898
5640
|
line-height: 1.25;
|
4899
5641
|
letter-spacing: -0.02em;
|
4900
5642
|
font-weight: 700;
|
4901
5643
|
}
|
4902
5644
|
|
4903
|
-
.
|
5645
|
+
.db\:text-hds-d-h3 {
|
4904
5646
|
font-size: 2.25rem;
|
4905
5647
|
line-height: 3rem;
|
4906
5648
|
letter-spacing: -0.02em;
|
4907
5649
|
font-weight: 700;
|
4908
5650
|
}
|
4909
5651
|
|
4910
|
-
.
|
5652
|
+
.db\:text-hds-d-h4 {
|
4911
5653
|
font-size: 1.5rem;
|
4912
5654
|
line-height: 2.25rem;
|
4913
5655
|
letter-spacing: -0.02em;
|
4914
5656
|
font-weight: 600;
|
4915
5657
|
}
|
4916
5658
|
|
4917
|
-
.
|
5659
|
+
.db\:text-hds-d-h5 {
|
4918
5660
|
font-size: 1.25rem;
|
4919
5661
|
line-height: 2rem;
|
4920
5662
|
letter-spacing: -0.02em;
|
4921
5663
|
font-weight: 600;
|
4922
5664
|
}
|
4923
5665
|
|
4924
|
-
.
|
5666
|
+
.db\:text-hds-d-h6 {
|
4925
5667
|
font-size: 0.875;
|
4926
5668
|
line-height: 1.25;
|
4927
5669
|
letter-spacing: 0.08em;
|
4928
5670
|
font-weight: 700;
|
4929
5671
|
}
|
4930
5672
|
|
4931
|
-
.
|
5673
|
+
.db\:text-hds-d-quote {
|
4932
5674
|
font-size: 1.5rem;
|
4933
5675
|
line-height: 2.25rem;
|
4934
5676
|
letter-spacing: -0.01em;
|
4935
5677
|
font-weight: 400;
|
4936
5678
|
}
|
4937
5679
|
|
4938
|
-
.
|
5680
|
+
.db\:text-hds-d-sub1 {
|
4939
5681
|
font-size: 1.5rem;
|
4940
5682
|
line-height: 2.25rem;
|
4941
5683
|
letter-spacing: -0.02em;
|
4942
5684
|
font-weight: 400;
|
4943
5685
|
}
|
4944
5686
|
|
4945
|
-
.
|
5687
|
+
.db\:text-hds-d-sub2 {
|
4946
5688
|
font-size: 1.25rem;
|
4947
5689
|
line-height: 2rem;
|
4948
5690
|
letter-spacing: -0.01em;
|