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