@cronocode/react-box 0.0.2 → 0.0.6
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/box.d.ts +255 -167
- package/dist/box.js +2693 -0
- package/dist/chunk/jsx-runtime-8434466e.js +33 -0
- package/dist/components/button/index.d.ts +1 -0
- package/dist/components/button/index.js +10 -0
- package/dist/components/flex/index.d.ts +1 -0
- package/dist/components/flex/index.js +10 -0
- package/dist/css.variables.d.ts +7 -1
- package/dist/styles.css +1 -0
- package/package.json +8 -8
- package/dist/index.d.ts +0 -2
- package/dist/index.es.js +0 -610
- package/dist/index.umd.js +0 -1
- package/dist/style.css +0 -1
package/dist/box.js
ADDED
|
@@ -0,0 +1,2693 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __defProps = Object.defineProperties;
|
|
3
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
+
var __spreadValues = (a, b) => {
|
|
9
|
+
for (var prop in b || (b = {}))
|
|
10
|
+
if (__hasOwnProp.call(b, prop))
|
|
11
|
+
__defNormalProp(a, prop, b[prop]);
|
|
12
|
+
if (__getOwnPropSymbols)
|
|
13
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
+
if (__propIsEnum.call(b, prop))
|
|
15
|
+
__defNormalProp(a, prop, b[prop]);
|
|
16
|
+
}
|
|
17
|
+
return a;
|
|
18
|
+
};
|
|
19
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
+
import React, { useState } from "react";
|
|
21
|
+
const box = "a";
|
|
22
|
+
const displaynone = "b";
|
|
23
|
+
const displayblock = "c";
|
|
24
|
+
const displayflex = "e";
|
|
25
|
+
const displaygrid = "g";
|
|
26
|
+
const positionstatic = "h";
|
|
27
|
+
const positionrelative = "i";
|
|
28
|
+
const positionabsolute = "j";
|
|
29
|
+
const positionfixed = "k";
|
|
30
|
+
const positionsticky = "l";
|
|
31
|
+
const widthfit = "m";
|
|
32
|
+
const widthauto = "o";
|
|
33
|
+
const heightfit = "s";
|
|
34
|
+
const heightauto = "u";
|
|
35
|
+
const top0 = "W";
|
|
36
|
+
const top1 = "X";
|
|
37
|
+
const top2 = "Y";
|
|
38
|
+
const top3 = "Z";
|
|
39
|
+
const top4 = "aa";
|
|
40
|
+
const top5 = "ab";
|
|
41
|
+
const top6 = "ac";
|
|
42
|
+
const top7 = "ad";
|
|
43
|
+
const top8 = "ae";
|
|
44
|
+
const top9 = "af";
|
|
45
|
+
const top10 = "ag";
|
|
46
|
+
const top11 = "ah";
|
|
47
|
+
const top12 = "ai";
|
|
48
|
+
const top13 = "aj";
|
|
49
|
+
const top14 = "ak";
|
|
50
|
+
const top15 = "al";
|
|
51
|
+
const top16 = "am";
|
|
52
|
+
const top17 = "an";
|
|
53
|
+
const top18 = "ao";
|
|
54
|
+
const top19 = "ap";
|
|
55
|
+
const top20 = "aq";
|
|
56
|
+
const right0 = "ar";
|
|
57
|
+
const right1 = "as";
|
|
58
|
+
const right2 = "at";
|
|
59
|
+
const right3 = "au";
|
|
60
|
+
const right4 = "av";
|
|
61
|
+
const right5 = "aw";
|
|
62
|
+
const right6 = "ax";
|
|
63
|
+
const right7 = "ay";
|
|
64
|
+
const right8 = "az";
|
|
65
|
+
const right9 = "aA";
|
|
66
|
+
const right10 = "aB";
|
|
67
|
+
const right11 = "aC";
|
|
68
|
+
const right12 = "aD";
|
|
69
|
+
const right13 = "aE";
|
|
70
|
+
const right14 = "aF";
|
|
71
|
+
const right15 = "aG";
|
|
72
|
+
const right16 = "aH";
|
|
73
|
+
const right17 = "aI";
|
|
74
|
+
const right18 = "aJ";
|
|
75
|
+
const right19 = "aK";
|
|
76
|
+
const right20 = "aL";
|
|
77
|
+
const bottom0 = "aM";
|
|
78
|
+
const bottom1 = "aN";
|
|
79
|
+
const bottom2 = "aO";
|
|
80
|
+
const bottom3 = "aP";
|
|
81
|
+
const bottom4 = "aQ";
|
|
82
|
+
const bottom5 = "aR";
|
|
83
|
+
const bottom6 = "aS";
|
|
84
|
+
const bottom7 = "aT";
|
|
85
|
+
const bottom8 = "aU";
|
|
86
|
+
const bottom9 = "aV";
|
|
87
|
+
const bottom10 = "aW";
|
|
88
|
+
const bottom11 = "aX";
|
|
89
|
+
const bottom12 = "aY";
|
|
90
|
+
const bottom13 = "aZ";
|
|
91
|
+
const bottom14 = "a0";
|
|
92
|
+
const bottom15 = "a1";
|
|
93
|
+
const bottom16 = "a2";
|
|
94
|
+
const bottom17 = "a3";
|
|
95
|
+
const bottom18 = "a4";
|
|
96
|
+
const bottom19 = "a5";
|
|
97
|
+
const bottom20 = "a6";
|
|
98
|
+
const left0 = "a7";
|
|
99
|
+
const left1 = "a8";
|
|
100
|
+
const left2 = "a9";
|
|
101
|
+
const left3 = "ba";
|
|
102
|
+
const left4 = "bb";
|
|
103
|
+
const left5 = "bc";
|
|
104
|
+
const left6 = "bd";
|
|
105
|
+
const left7 = "be";
|
|
106
|
+
const left8 = "bf";
|
|
107
|
+
const left9 = "bg";
|
|
108
|
+
const left10 = "bh";
|
|
109
|
+
const left11 = "bi";
|
|
110
|
+
const left12 = "bj";
|
|
111
|
+
const left13 = "bk";
|
|
112
|
+
const left14 = "bl";
|
|
113
|
+
const left15 = "bm";
|
|
114
|
+
const left16 = "bn";
|
|
115
|
+
const left17 = "bo";
|
|
116
|
+
const left18 = "bp";
|
|
117
|
+
const left19 = "bq";
|
|
118
|
+
const left20 = "br";
|
|
119
|
+
const m0 = "bs";
|
|
120
|
+
const m1 = "bt";
|
|
121
|
+
const m2 = "bu";
|
|
122
|
+
const m3 = "bv";
|
|
123
|
+
const m4 = "bw";
|
|
124
|
+
const m5 = "bx";
|
|
125
|
+
const m6 = "by";
|
|
126
|
+
const m7 = "bz";
|
|
127
|
+
const m8 = "bA";
|
|
128
|
+
const m9 = "bB";
|
|
129
|
+
const m10 = "bC";
|
|
130
|
+
const m11 = "bD";
|
|
131
|
+
const m12 = "bE";
|
|
132
|
+
const m13 = "bF";
|
|
133
|
+
const m14 = "bG";
|
|
134
|
+
const m15 = "bH";
|
|
135
|
+
const m16 = "bI";
|
|
136
|
+
const m17 = "bJ";
|
|
137
|
+
const m18 = "bK";
|
|
138
|
+
const m19 = "bL";
|
|
139
|
+
const m20 = "bM";
|
|
140
|
+
const mx0 = "bN";
|
|
141
|
+
const my0 = "bO";
|
|
142
|
+
const mx1 = "bP";
|
|
143
|
+
const my1 = "bQ";
|
|
144
|
+
const mx2 = "bR";
|
|
145
|
+
const my2 = "bS";
|
|
146
|
+
const mx3 = "bT";
|
|
147
|
+
const my3 = "bU";
|
|
148
|
+
const mx4 = "bV";
|
|
149
|
+
const my4 = "bW";
|
|
150
|
+
const mx5 = "bX";
|
|
151
|
+
const my5 = "bY";
|
|
152
|
+
const mx6 = "bZ";
|
|
153
|
+
const my6 = "b0";
|
|
154
|
+
const mx7 = "b1";
|
|
155
|
+
const my7 = "b2";
|
|
156
|
+
const mx8 = "b3";
|
|
157
|
+
const my8 = "b4";
|
|
158
|
+
const mx9 = "b5";
|
|
159
|
+
const my9 = "b6";
|
|
160
|
+
const mx10 = "b7";
|
|
161
|
+
const my10 = "b8";
|
|
162
|
+
const mx11 = "b9";
|
|
163
|
+
const my11 = "ca";
|
|
164
|
+
const mx12 = "cb";
|
|
165
|
+
const my12 = "cc";
|
|
166
|
+
const mx13 = "cd";
|
|
167
|
+
const my13 = "ce";
|
|
168
|
+
const mx14 = "cf";
|
|
169
|
+
const my14 = "cg";
|
|
170
|
+
const mx15 = "ch";
|
|
171
|
+
const my15 = "ci";
|
|
172
|
+
const mx16 = "cj";
|
|
173
|
+
const my16 = "ck";
|
|
174
|
+
const mx17 = "cl";
|
|
175
|
+
const my17 = "cm";
|
|
176
|
+
const mx18 = "cn";
|
|
177
|
+
const my18 = "co";
|
|
178
|
+
const mx19 = "cp";
|
|
179
|
+
const my19 = "cq";
|
|
180
|
+
const mx20 = "cr";
|
|
181
|
+
const my20 = "cs";
|
|
182
|
+
const mt0 = "ct";
|
|
183
|
+
const mr0 = "cu";
|
|
184
|
+
const mb0 = "cv";
|
|
185
|
+
const ml0 = "cw";
|
|
186
|
+
const mt1 = "cx";
|
|
187
|
+
const mr1 = "cy";
|
|
188
|
+
const mb1 = "cz";
|
|
189
|
+
const ml1 = "cA";
|
|
190
|
+
const mt2 = "cB";
|
|
191
|
+
const mr2 = "cC";
|
|
192
|
+
const mb2 = "cD";
|
|
193
|
+
const ml2 = "cE";
|
|
194
|
+
const mt3 = "cF";
|
|
195
|
+
const mr3 = "cG";
|
|
196
|
+
const mb3 = "cH";
|
|
197
|
+
const ml3 = "cI";
|
|
198
|
+
const mt4 = "cJ";
|
|
199
|
+
const mr4 = "cK";
|
|
200
|
+
const mb4 = "cL";
|
|
201
|
+
const ml4 = "cM";
|
|
202
|
+
const mt5 = "cN";
|
|
203
|
+
const mr5 = "cO";
|
|
204
|
+
const mb5 = "cP";
|
|
205
|
+
const ml5 = "cQ";
|
|
206
|
+
const mt6 = "cR";
|
|
207
|
+
const mr6 = "cS";
|
|
208
|
+
const mb6 = "cT";
|
|
209
|
+
const ml6 = "cU";
|
|
210
|
+
const mt7 = "cV";
|
|
211
|
+
const mr7 = "cW";
|
|
212
|
+
const mb7 = "cX";
|
|
213
|
+
const ml7 = "cY";
|
|
214
|
+
const mt8 = "cZ";
|
|
215
|
+
const mr8 = "c0";
|
|
216
|
+
const mb8 = "c1";
|
|
217
|
+
const ml8 = "c2";
|
|
218
|
+
const mt9 = "c3";
|
|
219
|
+
const mr9 = "c4";
|
|
220
|
+
const mb9 = "c5";
|
|
221
|
+
const ml9 = "c6";
|
|
222
|
+
const mt10 = "c7";
|
|
223
|
+
const mr10 = "c8";
|
|
224
|
+
const mb10 = "c9";
|
|
225
|
+
const ml10 = "da";
|
|
226
|
+
const mt11 = "db";
|
|
227
|
+
const mr11 = "dc";
|
|
228
|
+
const mb11 = "dd";
|
|
229
|
+
const ml11 = "de";
|
|
230
|
+
const mt12 = "df";
|
|
231
|
+
const mr12 = "dg";
|
|
232
|
+
const mb12 = "dh";
|
|
233
|
+
const ml12 = "di";
|
|
234
|
+
const mt13 = "dj";
|
|
235
|
+
const mr13 = "dk";
|
|
236
|
+
const mb13 = "dl";
|
|
237
|
+
const ml13 = "dm";
|
|
238
|
+
const mt14 = "dn";
|
|
239
|
+
const mr14 = "do";
|
|
240
|
+
const mb14 = "dp";
|
|
241
|
+
const ml14 = "dq";
|
|
242
|
+
const mt15 = "dr";
|
|
243
|
+
const mr15 = "ds";
|
|
244
|
+
const mb15 = "dt";
|
|
245
|
+
const ml15 = "du";
|
|
246
|
+
const mt16 = "dv";
|
|
247
|
+
const mr16 = "dw";
|
|
248
|
+
const mb16 = "dx";
|
|
249
|
+
const ml16 = "dy";
|
|
250
|
+
const mt17 = "dz";
|
|
251
|
+
const mr17 = "dA";
|
|
252
|
+
const mb17 = "dB";
|
|
253
|
+
const ml17 = "dC";
|
|
254
|
+
const mt18 = "dD";
|
|
255
|
+
const mr18 = "dE";
|
|
256
|
+
const mb18 = "dF";
|
|
257
|
+
const ml18 = "dG";
|
|
258
|
+
const mt19 = "dH";
|
|
259
|
+
const mr19 = "dI";
|
|
260
|
+
const mb19 = "dJ";
|
|
261
|
+
const ml19 = "dK";
|
|
262
|
+
const mt20 = "dL";
|
|
263
|
+
const mr20 = "dM";
|
|
264
|
+
const mb20 = "dN";
|
|
265
|
+
const ml20 = "dO";
|
|
266
|
+
const p0 = "dP";
|
|
267
|
+
const p1 = "dQ";
|
|
268
|
+
const p2 = "dR";
|
|
269
|
+
const p3 = "dS";
|
|
270
|
+
const p4 = "dT";
|
|
271
|
+
const p5 = "dU";
|
|
272
|
+
const p6 = "dV";
|
|
273
|
+
const p7 = "dW";
|
|
274
|
+
const p8 = "dX";
|
|
275
|
+
const p9 = "dY";
|
|
276
|
+
const p10 = "dZ";
|
|
277
|
+
const p11 = "d0";
|
|
278
|
+
const p12 = "d1";
|
|
279
|
+
const p13 = "d2";
|
|
280
|
+
const p14 = "d3";
|
|
281
|
+
const p15 = "d4";
|
|
282
|
+
const p16 = "d5";
|
|
283
|
+
const p17 = "d6";
|
|
284
|
+
const p18 = "d7";
|
|
285
|
+
const p19 = "d8";
|
|
286
|
+
const p20 = "d9";
|
|
287
|
+
const px0 = "ea";
|
|
288
|
+
const py0 = "eb";
|
|
289
|
+
const px1 = "ec";
|
|
290
|
+
const py1 = "ed";
|
|
291
|
+
const px2 = "ee";
|
|
292
|
+
const py2 = "ef";
|
|
293
|
+
const px3 = "eg";
|
|
294
|
+
const py3 = "eh";
|
|
295
|
+
const px4 = "ei";
|
|
296
|
+
const py4 = "ej";
|
|
297
|
+
const px5 = "ek";
|
|
298
|
+
const py5 = "el";
|
|
299
|
+
const px6 = "em";
|
|
300
|
+
const py6 = "en";
|
|
301
|
+
const px7 = "eo";
|
|
302
|
+
const py7 = "ep";
|
|
303
|
+
const px8 = "eq";
|
|
304
|
+
const py8 = "er";
|
|
305
|
+
const px9 = "es";
|
|
306
|
+
const py9 = "et";
|
|
307
|
+
const px10 = "eu";
|
|
308
|
+
const py10 = "ev";
|
|
309
|
+
const px11 = "ew";
|
|
310
|
+
const py11 = "ex";
|
|
311
|
+
const px12 = "ey";
|
|
312
|
+
const py12 = "ez";
|
|
313
|
+
const px13 = "eA";
|
|
314
|
+
const py13 = "eB";
|
|
315
|
+
const px14 = "eC";
|
|
316
|
+
const py14 = "eD";
|
|
317
|
+
const px15 = "eE";
|
|
318
|
+
const py15 = "eF";
|
|
319
|
+
const px16 = "eG";
|
|
320
|
+
const py16 = "eH";
|
|
321
|
+
const px17 = "eI";
|
|
322
|
+
const py17 = "eJ";
|
|
323
|
+
const px18 = "eK";
|
|
324
|
+
const py18 = "eL";
|
|
325
|
+
const px19 = "eM";
|
|
326
|
+
const py19 = "eN";
|
|
327
|
+
const px20 = "eO";
|
|
328
|
+
const py20 = "eP";
|
|
329
|
+
const pt0 = "eQ";
|
|
330
|
+
const pr0 = "eR";
|
|
331
|
+
const pb0 = "eS";
|
|
332
|
+
const pl0 = "eT";
|
|
333
|
+
const pt1 = "eU";
|
|
334
|
+
const pr1 = "eV";
|
|
335
|
+
const pb1 = "eW";
|
|
336
|
+
const pl1 = "eX";
|
|
337
|
+
const pt2 = "eY";
|
|
338
|
+
const pr2 = "eZ";
|
|
339
|
+
const pb2 = "e0";
|
|
340
|
+
const pl2 = "e1";
|
|
341
|
+
const pt3 = "e2";
|
|
342
|
+
const pr3 = "e3";
|
|
343
|
+
const pb3 = "e4";
|
|
344
|
+
const pl3 = "e5";
|
|
345
|
+
const pt4 = "e6";
|
|
346
|
+
const pr4 = "e7";
|
|
347
|
+
const pb4 = "e8";
|
|
348
|
+
const pl4 = "e9";
|
|
349
|
+
const pt5 = "fa";
|
|
350
|
+
const pr5 = "fb";
|
|
351
|
+
const pb5 = "fc";
|
|
352
|
+
const pl5 = "fd";
|
|
353
|
+
const pt6 = "fe";
|
|
354
|
+
const pr6 = "ff";
|
|
355
|
+
const pb6 = "fg";
|
|
356
|
+
const pl6 = "fh";
|
|
357
|
+
const pt7 = "fi";
|
|
358
|
+
const pr7 = "fj";
|
|
359
|
+
const pb7 = "fk";
|
|
360
|
+
const pl7 = "fl";
|
|
361
|
+
const pt8 = "fm";
|
|
362
|
+
const pr8 = "fn";
|
|
363
|
+
const pb8 = "fo";
|
|
364
|
+
const pl8 = "fp";
|
|
365
|
+
const pt9 = "fq";
|
|
366
|
+
const pr9 = "fr";
|
|
367
|
+
const pb9 = "fs";
|
|
368
|
+
const pl9 = "ft";
|
|
369
|
+
const pt10 = "fu";
|
|
370
|
+
const pr10 = "fv";
|
|
371
|
+
const pb10 = "fw";
|
|
372
|
+
const pl10 = "fx";
|
|
373
|
+
const pt11 = "fy";
|
|
374
|
+
const pr11 = "fz";
|
|
375
|
+
const pb11 = "fA";
|
|
376
|
+
const pl11 = "fB";
|
|
377
|
+
const pt12 = "fC";
|
|
378
|
+
const pr12 = "fD";
|
|
379
|
+
const pb12 = "fE";
|
|
380
|
+
const pl12 = "fF";
|
|
381
|
+
const pt13 = "fG";
|
|
382
|
+
const pr13 = "fH";
|
|
383
|
+
const pb13 = "fI";
|
|
384
|
+
const pl13 = "fJ";
|
|
385
|
+
const pt14 = "fK";
|
|
386
|
+
const pr14 = "fL";
|
|
387
|
+
const pb14 = "fM";
|
|
388
|
+
const pl14 = "fN";
|
|
389
|
+
const pt15 = "fO";
|
|
390
|
+
const pr15 = "fP";
|
|
391
|
+
const pb15 = "fQ";
|
|
392
|
+
const pl15 = "fR";
|
|
393
|
+
const pt16 = "fS";
|
|
394
|
+
const pr16 = "fT";
|
|
395
|
+
const pb16 = "fU";
|
|
396
|
+
const pl16 = "fV";
|
|
397
|
+
const pt17 = "fW";
|
|
398
|
+
const pr17 = "fX";
|
|
399
|
+
const pb17 = "fY";
|
|
400
|
+
const pl17 = "fZ";
|
|
401
|
+
const pt18 = "f0";
|
|
402
|
+
const pr18 = "f1";
|
|
403
|
+
const pb18 = "f2";
|
|
404
|
+
const pl18 = "f3";
|
|
405
|
+
const pt19 = "f4";
|
|
406
|
+
const pr19 = "f5";
|
|
407
|
+
const pb19 = "f6";
|
|
408
|
+
const pl19 = "f7";
|
|
409
|
+
const pt20 = "f8";
|
|
410
|
+
const pr20 = "f9";
|
|
411
|
+
const pb20 = "ga";
|
|
412
|
+
const pl20 = "gb";
|
|
413
|
+
const b0 = "gc";
|
|
414
|
+
const b1 = "gd";
|
|
415
|
+
const b2 = "ge";
|
|
416
|
+
const b3 = "gf";
|
|
417
|
+
const b4 = "gg";
|
|
418
|
+
const b5 = "gh";
|
|
419
|
+
const b6 = "gi";
|
|
420
|
+
const b7 = "gj";
|
|
421
|
+
const b8 = "gk";
|
|
422
|
+
const b9 = "gl";
|
|
423
|
+
const b10 = "gm";
|
|
424
|
+
const b11 = "gn";
|
|
425
|
+
const b12 = "go";
|
|
426
|
+
const b13 = "gp";
|
|
427
|
+
const b14 = "gq";
|
|
428
|
+
const b15 = "gr";
|
|
429
|
+
const b16 = "gs";
|
|
430
|
+
const b17 = "gt";
|
|
431
|
+
const b18 = "gu";
|
|
432
|
+
const b19 = "gv";
|
|
433
|
+
const b20 = "gw";
|
|
434
|
+
const bx0 = "gx";
|
|
435
|
+
const by0 = "gy";
|
|
436
|
+
const bx1 = "gz";
|
|
437
|
+
const by1 = "gA";
|
|
438
|
+
const bx2 = "gB";
|
|
439
|
+
const by2 = "gC";
|
|
440
|
+
const bx3 = "gD";
|
|
441
|
+
const by3 = "gE";
|
|
442
|
+
const bx4 = "gF";
|
|
443
|
+
const by4 = "gG";
|
|
444
|
+
const bx5 = "gH";
|
|
445
|
+
const by5 = "gI";
|
|
446
|
+
const bx6 = "gJ";
|
|
447
|
+
const by6 = "gK";
|
|
448
|
+
const bx7 = "gL";
|
|
449
|
+
const by7 = "gM";
|
|
450
|
+
const bx8 = "gN";
|
|
451
|
+
const by8 = "gO";
|
|
452
|
+
const bx9 = "gP";
|
|
453
|
+
const by9 = "gQ";
|
|
454
|
+
const bx10 = "gR";
|
|
455
|
+
const by10 = "gS";
|
|
456
|
+
const bx11 = "gT";
|
|
457
|
+
const by11 = "gU";
|
|
458
|
+
const bx12 = "gV";
|
|
459
|
+
const by12 = "gW";
|
|
460
|
+
const bx13 = "gX";
|
|
461
|
+
const by13 = "gY";
|
|
462
|
+
const bx14 = "gZ";
|
|
463
|
+
const by14 = "g0";
|
|
464
|
+
const bx15 = "g1";
|
|
465
|
+
const by15 = "g2";
|
|
466
|
+
const bx16 = "g3";
|
|
467
|
+
const by16 = "g4";
|
|
468
|
+
const bx17 = "g5";
|
|
469
|
+
const by17 = "g6";
|
|
470
|
+
const bx18 = "g7";
|
|
471
|
+
const by18 = "g8";
|
|
472
|
+
const bx19 = "g9";
|
|
473
|
+
const by19 = "ha";
|
|
474
|
+
const bx20 = "hb";
|
|
475
|
+
const by20 = "hc";
|
|
476
|
+
const bt0 = "hd";
|
|
477
|
+
const br0 = "he";
|
|
478
|
+
const bb0 = "hf";
|
|
479
|
+
const bl0 = "hg";
|
|
480
|
+
const bt1 = "hh";
|
|
481
|
+
const br1 = "hi";
|
|
482
|
+
const bb1 = "hj";
|
|
483
|
+
const bl1 = "hk";
|
|
484
|
+
const bt2 = "hl";
|
|
485
|
+
const br2 = "hm";
|
|
486
|
+
const bb2 = "hn";
|
|
487
|
+
const bl2 = "ho";
|
|
488
|
+
const bt3 = "hp";
|
|
489
|
+
const br3 = "hq";
|
|
490
|
+
const bb3 = "hr";
|
|
491
|
+
const bl3 = "hs";
|
|
492
|
+
const bt4 = "ht";
|
|
493
|
+
const br4 = "hu";
|
|
494
|
+
const bb4 = "hv";
|
|
495
|
+
const bl4 = "hw";
|
|
496
|
+
const bt5 = "hx";
|
|
497
|
+
const br5 = "hy";
|
|
498
|
+
const bb5 = "hz";
|
|
499
|
+
const bl5 = "hA";
|
|
500
|
+
const bt6 = "hB";
|
|
501
|
+
const br6 = "hC";
|
|
502
|
+
const bb6 = "hD";
|
|
503
|
+
const bl6 = "hE";
|
|
504
|
+
const bt7 = "hF";
|
|
505
|
+
const br7 = "hG";
|
|
506
|
+
const bb7 = "hH";
|
|
507
|
+
const bl7 = "hI";
|
|
508
|
+
const bt8 = "hJ";
|
|
509
|
+
const br8 = "hK";
|
|
510
|
+
const bb8 = "hL";
|
|
511
|
+
const bl8 = "hM";
|
|
512
|
+
const bt9 = "hN";
|
|
513
|
+
const br9 = "hO";
|
|
514
|
+
const bb9 = "hP";
|
|
515
|
+
const bl9 = "hQ";
|
|
516
|
+
const bt10 = "hR";
|
|
517
|
+
const br10 = "hS";
|
|
518
|
+
const bb10 = "hT";
|
|
519
|
+
const bl10 = "hU";
|
|
520
|
+
const bt11 = "hV";
|
|
521
|
+
const br11 = "hW";
|
|
522
|
+
const bb11 = "hX";
|
|
523
|
+
const bl11 = "hY";
|
|
524
|
+
const bt12 = "hZ";
|
|
525
|
+
const br12 = "h0";
|
|
526
|
+
const bb12 = "h1";
|
|
527
|
+
const bl12 = "h2";
|
|
528
|
+
const bt13 = "h3";
|
|
529
|
+
const br13 = "h4";
|
|
530
|
+
const bb13 = "h5";
|
|
531
|
+
const bl13 = "h6";
|
|
532
|
+
const bt14 = "h7";
|
|
533
|
+
const br14 = "h8";
|
|
534
|
+
const bb14 = "h9";
|
|
535
|
+
const bl14 = "ia";
|
|
536
|
+
const bt15 = "ib";
|
|
537
|
+
const br15 = "ic";
|
|
538
|
+
const bb15 = "id";
|
|
539
|
+
const bl15 = "ie";
|
|
540
|
+
const bt16 = "if";
|
|
541
|
+
const br16 = "ig";
|
|
542
|
+
const bb16 = "ih";
|
|
543
|
+
const bl16 = "ii";
|
|
544
|
+
const bt17 = "ij";
|
|
545
|
+
const br17 = "ik";
|
|
546
|
+
const bb17 = "il";
|
|
547
|
+
const bl17 = "im";
|
|
548
|
+
const bt18 = "in";
|
|
549
|
+
const br18 = "io";
|
|
550
|
+
const bb18 = "ip";
|
|
551
|
+
const bl18 = "iq";
|
|
552
|
+
const bt19 = "ir";
|
|
553
|
+
const br19 = "is";
|
|
554
|
+
const bb19 = "it";
|
|
555
|
+
const bl19 = "iu";
|
|
556
|
+
const bt20 = "iv";
|
|
557
|
+
const br20 = "iw";
|
|
558
|
+
const bb20 = "ix";
|
|
559
|
+
const bl20 = "iy";
|
|
560
|
+
const bStylesolid = "iz";
|
|
561
|
+
const bStyledashed = "iA";
|
|
562
|
+
const bStyledotted = "iB";
|
|
563
|
+
const bStyledouble = "iC";
|
|
564
|
+
const bRadius0 = "iD";
|
|
565
|
+
const bRadius1 = "iE";
|
|
566
|
+
const bRadius2 = "iF";
|
|
567
|
+
const bRadius3 = "iG";
|
|
568
|
+
const bRadius4 = "iH";
|
|
569
|
+
const bRadius5 = "iI";
|
|
570
|
+
const bRadius6 = "iJ";
|
|
571
|
+
const bRadius7 = "iK";
|
|
572
|
+
const bRadius8 = "iL";
|
|
573
|
+
const bRadius9 = "iM";
|
|
574
|
+
const bRadius10 = "iN";
|
|
575
|
+
const bRadius11 = "iO";
|
|
576
|
+
const bRadius12 = "iP";
|
|
577
|
+
const bRadius13 = "iQ";
|
|
578
|
+
const bRadius14 = "iR";
|
|
579
|
+
const bRadius15 = "iS";
|
|
580
|
+
const bRadius16 = "iT";
|
|
581
|
+
const bRadius17 = "iU";
|
|
582
|
+
const bRadius18 = "iV";
|
|
583
|
+
const bRadius19 = "iW";
|
|
584
|
+
const bRadius20 = "iX";
|
|
585
|
+
const bRadiusTop0 = "iY";
|
|
586
|
+
const bRadiusTop1 = "iZ";
|
|
587
|
+
const bRadiusTop2 = "i0";
|
|
588
|
+
const bRadiusTop3 = "i1";
|
|
589
|
+
const bRadiusTop4 = "i2";
|
|
590
|
+
const bRadiusTop5 = "i3";
|
|
591
|
+
const bRadiusTop6 = "i4";
|
|
592
|
+
const bRadiusTop7 = "i5";
|
|
593
|
+
const bRadiusTop8 = "i6";
|
|
594
|
+
const bRadiusTop9 = "i7";
|
|
595
|
+
const bRadiusTop10 = "i8";
|
|
596
|
+
const bRadiusTop11 = "i9";
|
|
597
|
+
const bRadiusTop12 = "ja";
|
|
598
|
+
const bRadiusTop13 = "jb";
|
|
599
|
+
const bRadiusTop14 = "jc";
|
|
600
|
+
const bRadiusTop15 = "jd";
|
|
601
|
+
const bRadiusTop16 = "je";
|
|
602
|
+
const bRadiusTop17 = "jf";
|
|
603
|
+
const bRadiusTop18 = "jg";
|
|
604
|
+
const bRadiusTop19 = "jh";
|
|
605
|
+
const bRadiusTop20 = "ji";
|
|
606
|
+
const bRadiusRight0 = "jj";
|
|
607
|
+
const bRadiusRight1 = "jk";
|
|
608
|
+
const bRadiusRight2 = "jl";
|
|
609
|
+
const bRadiusRight3 = "jm";
|
|
610
|
+
const bRadiusRight4 = "jn";
|
|
611
|
+
const bRadiusRight5 = "jo";
|
|
612
|
+
const bRadiusRight6 = "jp";
|
|
613
|
+
const bRadiusRight7 = "jq";
|
|
614
|
+
const bRadiusRight8 = "jr";
|
|
615
|
+
const bRadiusRight9 = "js";
|
|
616
|
+
const bRadiusRight10 = "jt";
|
|
617
|
+
const bRadiusRight11 = "ju";
|
|
618
|
+
const bRadiusRight12 = "jv";
|
|
619
|
+
const bRadiusRight13 = "jw";
|
|
620
|
+
const bRadiusRight14 = "jx";
|
|
621
|
+
const bRadiusRight15 = "jy";
|
|
622
|
+
const bRadiusRight16 = "jz";
|
|
623
|
+
const bRadiusRight17 = "jA";
|
|
624
|
+
const bRadiusRight18 = "jB";
|
|
625
|
+
const bRadiusRight19 = "jC";
|
|
626
|
+
const bRadiusRight20 = "jD";
|
|
627
|
+
const bRadiusBottom0 = "jE";
|
|
628
|
+
const bRadiusBottom1 = "jF";
|
|
629
|
+
const bRadiusBottom2 = "jG";
|
|
630
|
+
const bRadiusBottom3 = "jH";
|
|
631
|
+
const bRadiusBottom4 = "jI";
|
|
632
|
+
const bRadiusBottom5 = "jJ";
|
|
633
|
+
const bRadiusBottom6 = "jK";
|
|
634
|
+
const bRadiusBottom7 = "jL";
|
|
635
|
+
const bRadiusBottom8 = "jM";
|
|
636
|
+
const bRadiusBottom9 = "jN";
|
|
637
|
+
const bRadiusBottom10 = "jO";
|
|
638
|
+
const bRadiusBottom11 = "jP";
|
|
639
|
+
const bRadiusBottom12 = "jQ";
|
|
640
|
+
const bRadiusBottom13 = "jR";
|
|
641
|
+
const bRadiusBottom14 = "jS";
|
|
642
|
+
const bRadiusBottom15 = "jT";
|
|
643
|
+
const bRadiusBottom16 = "jU";
|
|
644
|
+
const bRadiusBottom17 = "jV";
|
|
645
|
+
const bRadiusBottom18 = "jW";
|
|
646
|
+
const bRadiusBottom19 = "jX";
|
|
647
|
+
const bRadiusBottom20 = "jY";
|
|
648
|
+
const bRadiusLeft0 = "jZ";
|
|
649
|
+
const bRadiusLeft1 = "j0";
|
|
650
|
+
const bRadiusLeft2 = "j1";
|
|
651
|
+
const bRadiusLeft3 = "j2";
|
|
652
|
+
const bRadiusLeft4 = "j3";
|
|
653
|
+
const bRadiusLeft5 = "j4";
|
|
654
|
+
const bRadiusLeft6 = "j5";
|
|
655
|
+
const bRadiusLeft7 = "j6";
|
|
656
|
+
const bRadiusLeft8 = "j7";
|
|
657
|
+
const bRadiusLeft9 = "j8";
|
|
658
|
+
const bRadiusLeft10 = "j9";
|
|
659
|
+
const bRadiusLeft11 = "ka";
|
|
660
|
+
const bRadiusLeft12 = "kb";
|
|
661
|
+
const bRadiusLeft13 = "kc";
|
|
662
|
+
const bRadiusLeft14 = "kd";
|
|
663
|
+
const bRadiusLeft15 = "ke";
|
|
664
|
+
const bRadiusLeft16 = "kf";
|
|
665
|
+
const bRadiusLeft17 = "kg";
|
|
666
|
+
const bRadiusLeft18 = "kh";
|
|
667
|
+
const bRadiusLeft19 = "ki";
|
|
668
|
+
const bRadiusLeft20 = "kj";
|
|
669
|
+
const bRadiusTopRight0 = "kk";
|
|
670
|
+
const bRadiusTopLeft0 = "kl";
|
|
671
|
+
const bRadiusBottomRight0 = "km";
|
|
672
|
+
const bRadiusBottomLeft0 = "kn";
|
|
673
|
+
const bRadiusTopRight1 = "ko";
|
|
674
|
+
const bRadiusTopLeft1 = "kp";
|
|
675
|
+
const bRadiusBottomRight1 = "kq";
|
|
676
|
+
const bRadiusBottomLeft1 = "kr";
|
|
677
|
+
const bRadiusTopRight2 = "ks";
|
|
678
|
+
const bRadiusTopLeft2 = "kt";
|
|
679
|
+
const bRadiusBottomRight2 = "ku";
|
|
680
|
+
const bRadiusBottomLeft2 = "kv";
|
|
681
|
+
const bRadiusTopRight3 = "kw";
|
|
682
|
+
const bRadiusTopLeft3 = "kx";
|
|
683
|
+
const bRadiusBottomRight3 = "ky";
|
|
684
|
+
const bRadiusBottomLeft3 = "kz";
|
|
685
|
+
const bRadiusTopRight4 = "kA";
|
|
686
|
+
const bRadiusTopLeft4 = "kB";
|
|
687
|
+
const bRadiusBottomRight4 = "kC";
|
|
688
|
+
const bRadiusBottomLeft4 = "kD";
|
|
689
|
+
const bRadiusTopRight5 = "kE";
|
|
690
|
+
const bRadiusTopLeft5 = "kF";
|
|
691
|
+
const bRadiusBottomRight5 = "kG";
|
|
692
|
+
const bRadiusBottomLeft5 = "kH";
|
|
693
|
+
const bRadiusTopRight6 = "kI";
|
|
694
|
+
const bRadiusTopLeft6 = "kJ";
|
|
695
|
+
const bRadiusBottomRight6 = "kK";
|
|
696
|
+
const bRadiusBottomLeft6 = "kL";
|
|
697
|
+
const bRadiusTopRight7 = "kM";
|
|
698
|
+
const bRadiusTopLeft7 = "kN";
|
|
699
|
+
const bRadiusBottomRight7 = "kO";
|
|
700
|
+
const bRadiusBottomLeft7 = "kP";
|
|
701
|
+
const bRadiusTopRight8 = "kQ";
|
|
702
|
+
const bRadiusTopLeft8 = "kR";
|
|
703
|
+
const bRadiusBottomRight8 = "kS";
|
|
704
|
+
const bRadiusBottomLeft8 = "kT";
|
|
705
|
+
const bRadiusTopRight9 = "kU";
|
|
706
|
+
const bRadiusTopLeft9 = "kV";
|
|
707
|
+
const bRadiusBottomRight9 = "kW";
|
|
708
|
+
const bRadiusBottomLeft9 = "kX";
|
|
709
|
+
const bRadiusTopRight10 = "kY";
|
|
710
|
+
const bRadiusTopLeft10 = "kZ";
|
|
711
|
+
const bRadiusBottomRight10 = "k0";
|
|
712
|
+
const bRadiusBottomLeft10 = "k1";
|
|
713
|
+
const bRadiusTopRight11 = "k2";
|
|
714
|
+
const bRadiusTopLeft11 = "k3";
|
|
715
|
+
const bRadiusBottomRight11 = "k4";
|
|
716
|
+
const bRadiusBottomLeft11 = "k5";
|
|
717
|
+
const bRadiusTopRight12 = "k6";
|
|
718
|
+
const bRadiusTopLeft12 = "k7";
|
|
719
|
+
const bRadiusBottomRight12 = "k8";
|
|
720
|
+
const bRadiusBottomLeft12 = "k9";
|
|
721
|
+
const bRadiusTopRight13 = "la";
|
|
722
|
+
const bRadiusTopLeft13 = "lb";
|
|
723
|
+
const bRadiusBottomRight13 = "lc";
|
|
724
|
+
const bRadiusBottomLeft13 = "ld";
|
|
725
|
+
const bRadiusTopRight14 = "le";
|
|
726
|
+
const bRadiusTopLeft14 = "lf";
|
|
727
|
+
const bRadiusBottomRight14 = "lg";
|
|
728
|
+
const bRadiusBottomLeft14 = "lh";
|
|
729
|
+
const bRadiusTopRight15 = "li";
|
|
730
|
+
const bRadiusTopLeft15 = "lj";
|
|
731
|
+
const bRadiusBottomRight15 = "lk";
|
|
732
|
+
const bRadiusBottomLeft15 = "ll";
|
|
733
|
+
const bRadiusTopRight16 = "lm";
|
|
734
|
+
const bRadiusTopLeft16 = "ln";
|
|
735
|
+
const bRadiusBottomRight16 = "lo";
|
|
736
|
+
const bRadiusBottomLeft16 = "lp";
|
|
737
|
+
const bRadiusTopRight17 = "lq";
|
|
738
|
+
const bRadiusTopLeft17 = "lr";
|
|
739
|
+
const bRadiusBottomRight17 = "ls";
|
|
740
|
+
const bRadiusBottomLeft17 = "lt";
|
|
741
|
+
const bRadiusTopRight18 = "lu";
|
|
742
|
+
const bRadiusTopLeft18 = "lv";
|
|
743
|
+
const bRadiusBottomRight18 = "lw";
|
|
744
|
+
const bRadiusBottomLeft18 = "lx";
|
|
745
|
+
const bRadiusTopRight19 = "ly";
|
|
746
|
+
const bRadiusTopLeft19 = "lz";
|
|
747
|
+
const bRadiusBottomRight19 = "lA";
|
|
748
|
+
const bRadiusBottomLeft19 = "lB";
|
|
749
|
+
const bRadiusTopRight20 = "lC";
|
|
750
|
+
const bRadiusTopLeft20 = "lD";
|
|
751
|
+
const bRadiusBottomRight20 = "lE";
|
|
752
|
+
const bRadiusBottomLeft20 = "lF";
|
|
753
|
+
const colorprimary = "lG";
|
|
754
|
+
const colorHoverprimary = "lH";
|
|
755
|
+
const bgColorprimary = "lI";
|
|
756
|
+
const bgColorHoverprimary = "lJ";
|
|
757
|
+
const bColorprimary = "lK";
|
|
758
|
+
const bColorHoverprimary = "lL";
|
|
759
|
+
const colorprimaryLight = "lM";
|
|
760
|
+
const colorHoverprimaryLight = "lN";
|
|
761
|
+
const bgColorprimaryLight = "lO";
|
|
762
|
+
const bgColorHoverprimaryLight = "lP";
|
|
763
|
+
const bColorprimaryLight = "lQ";
|
|
764
|
+
const bColorHoverprimaryLight = "lR";
|
|
765
|
+
const colorprimaryDark = "lS";
|
|
766
|
+
const colorHoverprimaryDark = "lT";
|
|
767
|
+
const bgColorprimaryDark = "lU";
|
|
768
|
+
const bgColorHoverprimaryDark = "lV";
|
|
769
|
+
const bColorprimaryDark = "lW";
|
|
770
|
+
const bColorHoverprimaryDark = "lX";
|
|
771
|
+
const colorsecondary = "lY";
|
|
772
|
+
const colorHoversecondary = "lZ";
|
|
773
|
+
const bgColorsecondary = "l0";
|
|
774
|
+
const bgColorHoversecondary = "l1";
|
|
775
|
+
const bColorsecondary = "l2";
|
|
776
|
+
const bColorHoversecondary = "l3";
|
|
777
|
+
const colorsecondaryLight = "l4";
|
|
778
|
+
const colorHoversecondaryLight = "l5";
|
|
779
|
+
const bgColorsecondaryLight = "l6";
|
|
780
|
+
const bgColorHoversecondaryLight = "l7";
|
|
781
|
+
const bColorsecondaryLight = "l8";
|
|
782
|
+
const bColorHoversecondaryLight = "l9";
|
|
783
|
+
const colorsecondaryDark = "ma";
|
|
784
|
+
const colorHoversecondaryDark = "mb";
|
|
785
|
+
const bgColorsecondaryDark = "mc";
|
|
786
|
+
const bgColorHoversecondaryDark = "md";
|
|
787
|
+
const bColorsecondaryDark = "me";
|
|
788
|
+
const bColorHoversecondaryDark = "mf";
|
|
789
|
+
const colortertiary = "mg";
|
|
790
|
+
const colorHovertertiary = "mh";
|
|
791
|
+
const bgColortertiary = "mi";
|
|
792
|
+
const bgColorHovertertiary = "mj";
|
|
793
|
+
const bColortertiary = "mk";
|
|
794
|
+
const bColorHovertertiary = "ml";
|
|
795
|
+
const colortertiaryLight = "mm";
|
|
796
|
+
const colorHovertertiaryLight = "mn";
|
|
797
|
+
const bgColortertiaryLight = "mo";
|
|
798
|
+
const bgColorHovertertiaryLight = "mp";
|
|
799
|
+
const bColortertiaryLight = "mq";
|
|
800
|
+
const bColorHovertertiaryLight = "mr";
|
|
801
|
+
const colortertiaryDark = "ms";
|
|
802
|
+
const colorHovertertiaryDark = "mt";
|
|
803
|
+
const bgColortertiaryDark = "mu";
|
|
804
|
+
const bgColorHovertertiaryDark = "mv";
|
|
805
|
+
const bColortertiaryDark = "mw";
|
|
806
|
+
const bColorHovertertiaryDark = "mx";
|
|
807
|
+
const colorblue = "my";
|
|
808
|
+
const colorHoverblue = "mz";
|
|
809
|
+
const bgColorblue = "mA";
|
|
810
|
+
const bgColorHoverblue = "mB";
|
|
811
|
+
const bColorblue = "mC";
|
|
812
|
+
const bColorHoverblue = "mD";
|
|
813
|
+
const colorblueLight = "mE";
|
|
814
|
+
const colorHoverblueLight = "mF";
|
|
815
|
+
const bgColorblueLight = "mG";
|
|
816
|
+
const bgColorHoverblueLight = "mH";
|
|
817
|
+
const bColorblueLight = "mI";
|
|
818
|
+
const bColorHoverblueLight = "mJ";
|
|
819
|
+
const colorblueDark = "mK";
|
|
820
|
+
const colorHoverblueDark = "mL";
|
|
821
|
+
const bgColorblueDark = "mM";
|
|
822
|
+
const bgColorHoverblueDark = "mN";
|
|
823
|
+
const bColorblueDark = "mO";
|
|
824
|
+
const bColorHoverblueDark = "mP";
|
|
825
|
+
const colorred = "mQ";
|
|
826
|
+
const colorHoverred = "mR";
|
|
827
|
+
const bgColorred = "mS";
|
|
828
|
+
const bgColorHoverred = "mT";
|
|
829
|
+
const bColorred = "mU";
|
|
830
|
+
const bColorHoverred = "mV";
|
|
831
|
+
const colorredLight = "mW";
|
|
832
|
+
const colorHoverredLight = "mX";
|
|
833
|
+
const bgColorredLight = "mY";
|
|
834
|
+
const bgColorHoverredLight = "mZ";
|
|
835
|
+
const bColorredLight = "m0";
|
|
836
|
+
const bColorHoverredLight = "m1";
|
|
837
|
+
const colorredDark = "m2";
|
|
838
|
+
const colorHoverredDark = "m3";
|
|
839
|
+
const bgColorredDark = "m4";
|
|
840
|
+
const bgColorHoverredDark = "m5";
|
|
841
|
+
const bColorredDark = "m6";
|
|
842
|
+
const bColorHoverredDark = "m7";
|
|
843
|
+
const colorpurple = "m8";
|
|
844
|
+
const colorHoverpurple = "m9";
|
|
845
|
+
const bgColorpurple = "na";
|
|
846
|
+
const bgColorHoverpurple = "nb";
|
|
847
|
+
const bColorpurple = "nc";
|
|
848
|
+
const bColorHoverpurple = "nd";
|
|
849
|
+
const colorpurpleLight = "ne";
|
|
850
|
+
const colorHoverpurpleLight = "nf";
|
|
851
|
+
const bgColorpurpleLight = "ng";
|
|
852
|
+
const bgColorHoverpurpleLight = "nh";
|
|
853
|
+
const bColorpurpleLight = "ni";
|
|
854
|
+
const bColorHoverpurpleLight = "nj";
|
|
855
|
+
const colorpurpleDark = "nk";
|
|
856
|
+
const colorHoverpurpleDark = "nl";
|
|
857
|
+
const bgColorpurpleDark = "nm";
|
|
858
|
+
const bgColorHoverpurpleDark = "nn";
|
|
859
|
+
const bColorpurpleDark = "no";
|
|
860
|
+
const bColorHoverpurpleDark = "np";
|
|
861
|
+
const coloryellow = "nq";
|
|
862
|
+
const colorHoveryellow = "nr";
|
|
863
|
+
const bgColoryellow = "ns";
|
|
864
|
+
const bgColorHoveryellow = "nt";
|
|
865
|
+
const bColoryellow = "nu";
|
|
866
|
+
const bColorHoveryellow = "nv";
|
|
867
|
+
const coloryellowLight = "nw";
|
|
868
|
+
const colorHoveryellowLight = "nx";
|
|
869
|
+
const bgColoryellowLight = "ny";
|
|
870
|
+
const bgColorHoveryellowLight = "nz";
|
|
871
|
+
const bColoryellowLight = "nA";
|
|
872
|
+
const bColorHoveryellowLight = "nB";
|
|
873
|
+
const coloryellowDark = "nC";
|
|
874
|
+
const colorHoveryellowDark = "nD";
|
|
875
|
+
const bgColoryellowDark = "nE";
|
|
876
|
+
const bgColorHoveryellowDark = "nF";
|
|
877
|
+
const bColoryellowDark = "nG";
|
|
878
|
+
const bColorHoveryellowDark = "nH";
|
|
879
|
+
const colorpink = "nI";
|
|
880
|
+
const colorHoverpink = "nJ";
|
|
881
|
+
const bgColorpink = "nK";
|
|
882
|
+
const bgColorHoverpink = "nL";
|
|
883
|
+
const bColorpink = "nM";
|
|
884
|
+
const bColorHoverpink = "nN";
|
|
885
|
+
const colorpinkLight = "nO";
|
|
886
|
+
const colorHoverpinkLight = "nP";
|
|
887
|
+
const bgColorpinkLight = "nQ";
|
|
888
|
+
const bgColorHoverpinkLight = "nR";
|
|
889
|
+
const bColorpinkLight = "nS";
|
|
890
|
+
const bColorHoverpinkLight = "nT";
|
|
891
|
+
const colorpinkDark = "nU";
|
|
892
|
+
const colorHoverpinkDark = "nV";
|
|
893
|
+
const bgColorpinkDark = "nW";
|
|
894
|
+
const bgColorHoverpinkDark = "nX";
|
|
895
|
+
const bColorpinkDark = "nY";
|
|
896
|
+
const bColorHoverpinkDark = "nZ";
|
|
897
|
+
const colorgreen = "n0";
|
|
898
|
+
const colorHovergreen = "n1";
|
|
899
|
+
const bgColorgreen = "n2";
|
|
900
|
+
const bgColorHovergreen = "n3";
|
|
901
|
+
const bColorgreen = "n4";
|
|
902
|
+
const bColorHovergreen = "n5";
|
|
903
|
+
const colorgreenLight = "n6";
|
|
904
|
+
const colorHovergreenLight = "n7";
|
|
905
|
+
const bgColorgreenLight = "n8";
|
|
906
|
+
const bgColorHovergreenLight = "n9";
|
|
907
|
+
const bColorgreenLight = "oa";
|
|
908
|
+
const bColorHovergreenLight = "ob";
|
|
909
|
+
const colorgreenDark = "oc";
|
|
910
|
+
const colorHovergreenDark = "od";
|
|
911
|
+
const bgColorgreenDark = "oe";
|
|
912
|
+
const bgColorHovergreenDark = "of";
|
|
913
|
+
const bColorgreenDark = "og";
|
|
914
|
+
const bColorHovergreenDark = "oh";
|
|
915
|
+
const colororange = "oi";
|
|
916
|
+
const colorHoverorange = "oj";
|
|
917
|
+
const bgColororange = "ok";
|
|
918
|
+
const bgColorHoverorange = "ol";
|
|
919
|
+
const bColororange = "om";
|
|
920
|
+
const bColorHoverorange = "on";
|
|
921
|
+
const colororangeLight = "oo";
|
|
922
|
+
const colorHoverorangeLight = "op";
|
|
923
|
+
const bgColororangeLight = "oq";
|
|
924
|
+
const bgColorHoverorangeLight = "or";
|
|
925
|
+
const bColororangeLight = "os";
|
|
926
|
+
const bColorHoverorangeLight = "ot";
|
|
927
|
+
const colororangeDark = "ou";
|
|
928
|
+
const colorHoverorangeDark = "ov";
|
|
929
|
+
const bgColororangeDark = "ow";
|
|
930
|
+
const bgColorHoverorangeDark = "ox";
|
|
931
|
+
const bColororangeDark = "oy";
|
|
932
|
+
const bColorHoverorangeDark = "oz";
|
|
933
|
+
const colornavy = "oA";
|
|
934
|
+
const colorHovernavy = "oB";
|
|
935
|
+
const bgColornavy = "oC";
|
|
936
|
+
const bgColorHovernavy = "oD";
|
|
937
|
+
const bColornavy = "oE";
|
|
938
|
+
const bColorHovernavy = "oF";
|
|
939
|
+
const colornavyLight = "oG";
|
|
940
|
+
const colorHovernavyLight = "oH";
|
|
941
|
+
const bgColornavyLight = "oI";
|
|
942
|
+
const bgColorHovernavyLight = "oJ";
|
|
943
|
+
const bColornavyLight = "oK";
|
|
944
|
+
const bColorHovernavyLight = "oL";
|
|
945
|
+
const colornavyDark = "oM";
|
|
946
|
+
const colorHovernavyDark = "oN";
|
|
947
|
+
const bgColornavyDark = "oO";
|
|
948
|
+
const bgColorHovernavyDark = "oP";
|
|
949
|
+
const bColornavyDark = "oQ";
|
|
950
|
+
const bColorHovernavyDark = "oR";
|
|
951
|
+
const colorteal = "oS";
|
|
952
|
+
const colorHoverteal = "oT";
|
|
953
|
+
const bgColorteal = "oU";
|
|
954
|
+
const bgColorHoverteal = "oV";
|
|
955
|
+
const bColorteal = "oW";
|
|
956
|
+
const bColorHoverteal = "oX";
|
|
957
|
+
const colortealLight = "oY";
|
|
958
|
+
const colorHovertealLight = "oZ";
|
|
959
|
+
const bgColortealLight = "o0";
|
|
960
|
+
const bgColorHovertealLight = "o1";
|
|
961
|
+
const bColortealLight = "o2";
|
|
962
|
+
const bColorHovertealLight = "o3";
|
|
963
|
+
const colortealDark = "o4";
|
|
964
|
+
const colorHovertealDark = "o5";
|
|
965
|
+
const bgColortealDark = "o6";
|
|
966
|
+
const bgColorHovertealDark = "o7";
|
|
967
|
+
const bColortealDark = "o8";
|
|
968
|
+
const bColorHovertealDark = "o9";
|
|
969
|
+
const colorviolet = "pa";
|
|
970
|
+
const colorHoverviolet = "pb";
|
|
971
|
+
const bgColorviolet = "pc";
|
|
972
|
+
const bgColorHoverviolet = "pd";
|
|
973
|
+
const bColorviolet = "pe";
|
|
974
|
+
const bColorHoverviolet = "pf";
|
|
975
|
+
const colorvioletLight = "pg";
|
|
976
|
+
const colorHovervioletLight = "ph";
|
|
977
|
+
const bgColorvioletLight = "pi";
|
|
978
|
+
const bgColorHovervioletLight = "pj";
|
|
979
|
+
const bColorvioletLight = "pk";
|
|
980
|
+
const bColorHovervioletLight = "pl";
|
|
981
|
+
const colorvioletDark = "pm";
|
|
982
|
+
const colorHovervioletDark = "pn";
|
|
983
|
+
const bgColorvioletDark = "po";
|
|
984
|
+
const bgColorHovervioletDark = "pp";
|
|
985
|
+
const bColorvioletDark = "pq";
|
|
986
|
+
const bColorHovervioletDark = "pr";
|
|
987
|
+
const colorblack = "ps";
|
|
988
|
+
const colorHoverblack = "pt";
|
|
989
|
+
const bgColorblack = "pu";
|
|
990
|
+
const bgColorHoverblack = "pv";
|
|
991
|
+
const bColorblack = "pw";
|
|
992
|
+
const bColorHoverblack = "px";
|
|
993
|
+
const colorwhite = "py";
|
|
994
|
+
const colorHoverwhite = "pz";
|
|
995
|
+
const bgColorwhite = "pA";
|
|
996
|
+
const bgColorHoverwhite = "pB";
|
|
997
|
+
const bColorwhite = "pC";
|
|
998
|
+
const bColorHoverwhite = "pD";
|
|
999
|
+
const colorgray = "pE";
|
|
1000
|
+
const colorHovergray = "pF";
|
|
1001
|
+
const bgColorgray = "pG";
|
|
1002
|
+
const bgColorHovergray = "pH";
|
|
1003
|
+
const bColorgray = "pI";
|
|
1004
|
+
const bColorHovergray = "pJ";
|
|
1005
|
+
const colorgrayLight = "pK";
|
|
1006
|
+
const colorHovergrayLight = "pL";
|
|
1007
|
+
const bgColorgrayLight = "pM";
|
|
1008
|
+
const bgColorHovergrayLight = "pN";
|
|
1009
|
+
const bColorgrayLight = "pO";
|
|
1010
|
+
const bColorHovergrayLight = "pP";
|
|
1011
|
+
const colorgrayDark = "pQ";
|
|
1012
|
+
const colorHovergrayDark = "pR";
|
|
1013
|
+
const bgColorgrayDark = "pS";
|
|
1014
|
+
const bgColorHovergrayDark = "pT";
|
|
1015
|
+
const bColorgrayDark = "pU";
|
|
1016
|
+
const bColorHovergrayDark = "pV";
|
|
1017
|
+
const colorbrown = "pW";
|
|
1018
|
+
const colorHoverbrown = "pX";
|
|
1019
|
+
const bgColorbrown = "pY";
|
|
1020
|
+
const bgColorHoverbrown = "pZ";
|
|
1021
|
+
const bColorbrown = "p0";
|
|
1022
|
+
const bColorHoverbrown = "p1";
|
|
1023
|
+
const colorbrownLight = "p2";
|
|
1024
|
+
const colorHoverbrownLight = "p3";
|
|
1025
|
+
const bgColorbrownLight = "p4";
|
|
1026
|
+
const bgColorHoverbrownLight = "p5";
|
|
1027
|
+
const bColorbrownLight = "p6";
|
|
1028
|
+
const bColorHoverbrownLight = "p7";
|
|
1029
|
+
const colorbrownDark = "p8";
|
|
1030
|
+
const colorHoverbrownDark = "p9";
|
|
1031
|
+
const bgColorbrownDark = "qa";
|
|
1032
|
+
const bgColorHoverbrownDark = "qb";
|
|
1033
|
+
const bColorbrownDark = "qc";
|
|
1034
|
+
const bColorHoverbrownDark = "qd";
|
|
1035
|
+
const lineHeight0 = "qe";
|
|
1036
|
+
const lineHeight1 = "qf";
|
|
1037
|
+
const lineHeight2 = "qg";
|
|
1038
|
+
const lineHeight3 = "qh";
|
|
1039
|
+
const lineHeight4 = "qi";
|
|
1040
|
+
const lineHeight5 = "qj";
|
|
1041
|
+
const lineHeight6 = "qk";
|
|
1042
|
+
const lineHeight7 = "ql";
|
|
1043
|
+
const lineHeight8 = "qm";
|
|
1044
|
+
const lineHeight9 = "qn";
|
|
1045
|
+
const lineHeight10 = "qo";
|
|
1046
|
+
const lineHeight11 = "qp";
|
|
1047
|
+
const lineHeight12 = "qq";
|
|
1048
|
+
const lineHeight13 = "qr";
|
|
1049
|
+
const lineHeight14 = "qs";
|
|
1050
|
+
const lineHeight15 = "qt";
|
|
1051
|
+
const lineHeight16 = "qu";
|
|
1052
|
+
const lineHeight17 = "qv";
|
|
1053
|
+
const lineHeight18 = "qw";
|
|
1054
|
+
const lineHeight19 = "qx";
|
|
1055
|
+
const lineHeight20 = "qy";
|
|
1056
|
+
const cursorauto = "qz";
|
|
1057
|
+
const cursordefault = "qA";
|
|
1058
|
+
const cursornone = "qB";
|
|
1059
|
+
const cursorhelp = "qD";
|
|
1060
|
+
const cursorpointer = "qE";
|
|
1061
|
+
const cursorprogress = "qF";
|
|
1062
|
+
const cursorwait = "qG";
|
|
1063
|
+
const cursorcell = "qH";
|
|
1064
|
+
const cursorcrosshair = "qI";
|
|
1065
|
+
const cursortext = "qJ";
|
|
1066
|
+
const cursoralias = "qL";
|
|
1067
|
+
const cursorcopy = "qM";
|
|
1068
|
+
const cursormove = "qN";
|
|
1069
|
+
const cursorgrab = "q7";
|
|
1070
|
+
const cursorgrabbing = "q8";
|
|
1071
|
+
const zIndex0 = "q9";
|
|
1072
|
+
const zIndex1 = "ra";
|
|
1073
|
+
const zIndex2 = "rb";
|
|
1074
|
+
const zIndex3 = "rc";
|
|
1075
|
+
const zIndex4 = "rd";
|
|
1076
|
+
const zIndex5 = "re";
|
|
1077
|
+
const zIndex6 = "rf";
|
|
1078
|
+
const zIndex7 = "rg";
|
|
1079
|
+
const zIndex8 = "rh";
|
|
1080
|
+
const zIndex9 = "ri";
|
|
1081
|
+
const zIndex10 = "rj";
|
|
1082
|
+
const zIndex11 = "rk";
|
|
1083
|
+
const zIndex12 = "rl";
|
|
1084
|
+
const zIndex13 = "rm";
|
|
1085
|
+
const zIndex14 = "rn";
|
|
1086
|
+
const zIndex15 = "ro";
|
|
1087
|
+
const zIndex16 = "rp";
|
|
1088
|
+
const zIndex17 = "rq";
|
|
1089
|
+
const zIndex18 = "rr";
|
|
1090
|
+
const zIndex19 = "rs";
|
|
1091
|
+
const zIndex20 = "rt";
|
|
1092
|
+
const overflowauto = "ru";
|
|
1093
|
+
const overflowXauto = "rv";
|
|
1094
|
+
const overflowYauto = "rw";
|
|
1095
|
+
const overflowhidden = "rx";
|
|
1096
|
+
const overflowXhidden = "ry";
|
|
1097
|
+
const overflowYhidden = "rz";
|
|
1098
|
+
const overflowscroll = "rA";
|
|
1099
|
+
const overflowXscroll = "rB";
|
|
1100
|
+
const overflowYscroll = "rC";
|
|
1101
|
+
const overflowvisible = "rD";
|
|
1102
|
+
const overflowXvisible = "rE";
|
|
1103
|
+
const overflowYvisible = "rF";
|
|
1104
|
+
const opacity10 = "rG";
|
|
1105
|
+
const opacity20 = "rH";
|
|
1106
|
+
const opacity30 = "rI";
|
|
1107
|
+
const opacity40 = "rJ";
|
|
1108
|
+
const opacity50 = "rK";
|
|
1109
|
+
const opacity60 = "rL";
|
|
1110
|
+
const opacity70 = "rM";
|
|
1111
|
+
const opacity80 = "rN";
|
|
1112
|
+
const opacity90 = "rO";
|
|
1113
|
+
const opacity100 = "rP";
|
|
1114
|
+
const fontSize6 = "rQ";
|
|
1115
|
+
const fontSize8 = "rR";
|
|
1116
|
+
const fontSize10 = "rS";
|
|
1117
|
+
const fontSize12 = "rT";
|
|
1118
|
+
const fontSize14 = "rU";
|
|
1119
|
+
const fontSize16 = "rV";
|
|
1120
|
+
const fontSize18 = "rW";
|
|
1121
|
+
const fontSize20 = "rX";
|
|
1122
|
+
const fontSize22 = "rY";
|
|
1123
|
+
const fontSize24 = "rZ";
|
|
1124
|
+
const fontSize26 = "r0";
|
|
1125
|
+
const fontSize28 = "r1";
|
|
1126
|
+
const fontSize30 = "r2";
|
|
1127
|
+
const fontSize32 = "r3";
|
|
1128
|
+
const fontSize34 = "r4";
|
|
1129
|
+
const fontSize36 = "r5";
|
|
1130
|
+
const fontSize38 = "r6";
|
|
1131
|
+
const fontSize40 = "r7";
|
|
1132
|
+
const fontSize42 = "r8";
|
|
1133
|
+
const fontSize44 = "r9";
|
|
1134
|
+
const fontSize46 = "sa";
|
|
1135
|
+
const fontSize48 = "sb";
|
|
1136
|
+
const fontSize50 = "sc";
|
|
1137
|
+
const fontWeight100 = "sd";
|
|
1138
|
+
const fontWeight200 = "se";
|
|
1139
|
+
const fontWeight300 = "sf";
|
|
1140
|
+
const fontWeight400 = "sg";
|
|
1141
|
+
const fontWeight500 = "sh";
|
|
1142
|
+
const fontWeight600 = "si";
|
|
1143
|
+
const fontWeight700 = "sj";
|
|
1144
|
+
const fontWeight800 = "sk";
|
|
1145
|
+
const fontWeight900 = "sl";
|
|
1146
|
+
const textDecorationnone = "sm";
|
|
1147
|
+
const textDecorationunderline = "sn";
|
|
1148
|
+
const textAlignleft = "so";
|
|
1149
|
+
const textAlignright = "sp";
|
|
1150
|
+
const textAligncenter = "sq";
|
|
1151
|
+
const textTransformnone = "sr";
|
|
1152
|
+
const textTransformcapitalize = "ss";
|
|
1153
|
+
const textTransformlowercase = "st";
|
|
1154
|
+
const textTransformuppercase = "su";
|
|
1155
|
+
const flexWrapnowrap = "sv";
|
|
1156
|
+
const flexWrapwrap = "sw";
|
|
1157
|
+
const justifyContentstart = "sy";
|
|
1158
|
+
const justifyContentend = "sz";
|
|
1159
|
+
const justifyContentcenter = "sC";
|
|
1160
|
+
const justifyContentleft = "sD";
|
|
1161
|
+
const justifyContentright = "sE";
|
|
1162
|
+
const justifyContentstretch = "sI";
|
|
1163
|
+
const alignItemsstretch = "sJ";
|
|
1164
|
+
const alignItemscenter = "sM";
|
|
1165
|
+
const alignItemsbaseline = "sN";
|
|
1166
|
+
const alignItemsstart = "sO";
|
|
1167
|
+
const alignItemsend = "sP";
|
|
1168
|
+
const alignContentcenter = "sU";
|
|
1169
|
+
const alignContentstretch = "sY";
|
|
1170
|
+
const alignContentstart = "sZ";
|
|
1171
|
+
const alignContentend = "s0";
|
|
1172
|
+
const alignContentbaseline = "s1";
|
|
1173
|
+
const flex1true = "s2";
|
|
1174
|
+
const directionrow = "s3";
|
|
1175
|
+
const directioncolumn = "s5";
|
|
1176
|
+
const gap0 = "s7";
|
|
1177
|
+
const rowGap0 = "s8";
|
|
1178
|
+
const columnGap0 = "s9";
|
|
1179
|
+
const order0 = "ta";
|
|
1180
|
+
const flexGrow0 = "tb";
|
|
1181
|
+
const flexShrink0 = "tc";
|
|
1182
|
+
const gap1 = "td";
|
|
1183
|
+
const rowGap1 = "te";
|
|
1184
|
+
const columnGap1 = "tf";
|
|
1185
|
+
const order1 = "tg";
|
|
1186
|
+
const flexGrow1 = "th";
|
|
1187
|
+
const flexShrink1 = "ti";
|
|
1188
|
+
const gap2 = "tj";
|
|
1189
|
+
const rowGap2 = "tk";
|
|
1190
|
+
const columnGap2 = "tl";
|
|
1191
|
+
const order2 = "tm";
|
|
1192
|
+
const flexGrow2 = "tn";
|
|
1193
|
+
const flexShrink2 = "to";
|
|
1194
|
+
const gap3 = "tp";
|
|
1195
|
+
const rowGap3 = "tq";
|
|
1196
|
+
const columnGap3 = "tr";
|
|
1197
|
+
const order3 = "ts";
|
|
1198
|
+
const flexGrow3 = "tt";
|
|
1199
|
+
const flexShrink3 = "tu";
|
|
1200
|
+
const gap4 = "tv";
|
|
1201
|
+
const rowGap4 = "tw";
|
|
1202
|
+
const columnGap4 = "tx";
|
|
1203
|
+
const order4 = "ty";
|
|
1204
|
+
const flexGrow4 = "tz";
|
|
1205
|
+
const flexShrink4 = "tA";
|
|
1206
|
+
const gap5 = "tB";
|
|
1207
|
+
const rowGap5 = "tC";
|
|
1208
|
+
const columnGap5 = "tD";
|
|
1209
|
+
const order5 = "tE";
|
|
1210
|
+
const flexGrow5 = "tF";
|
|
1211
|
+
const flexShrink5 = "tG";
|
|
1212
|
+
const gap6 = "tH";
|
|
1213
|
+
const rowGap6 = "tI";
|
|
1214
|
+
const columnGap6 = "tJ";
|
|
1215
|
+
const order6 = "tK";
|
|
1216
|
+
const flexGrow6 = "tL";
|
|
1217
|
+
const flexShrink6 = "tM";
|
|
1218
|
+
const gap7 = "tN";
|
|
1219
|
+
const rowGap7 = "tO";
|
|
1220
|
+
const columnGap7 = "tP";
|
|
1221
|
+
const order7 = "tQ";
|
|
1222
|
+
const flexGrow7 = "tR";
|
|
1223
|
+
const flexShrink7 = "tS";
|
|
1224
|
+
const gap8 = "tT";
|
|
1225
|
+
const rowGap8 = "tU";
|
|
1226
|
+
const columnGap8 = "tV";
|
|
1227
|
+
const order8 = "tW";
|
|
1228
|
+
const flexGrow8 = "tX";
|
|
1229
|
+
const flexShrink8 = "tY";
|
|
1230
|
+
const gap9 = "tZ";
|
|
1231
|
+
const rowGap9 = "t0";
|
|
1232
|
+
const columnGap9 = "t1";
|
|
1233
|
+
const order9 = "t2";
|
|
1234
|
+
const flexGrow9 = "t3";
|
|
1235
|
+
const flexShrink9 = "t4";
|
|
1236
|
+
const gap10 = "t5";
|
|
1237
|
+
const rowGap10 = "t6";
|
|
1238
|
+
const columnGap10 = "t7";
|
|
1239
|
+
const order10 = "t8";
|
|
1240
|
+
const flexGrow10 = "t9";
|
|
1241
|
+
const flexShrink10 = "ua";
|
|
1242
|
+
const gap11 = "ub";
|
|
1243
|
+
const rowGap11 = "uc";
|
|
1244
|
+
const columnGap11 = "ud";
|
|
1245
|
+
const order11 = "ue";
|
|
1246
|
+
const flexGrow11 = "uf";
|
|
1247
|
+
const flexShrink11 = "ug";
|
|
1248
|
+
const gap12 = "uh";
|
|
1249
|
+
const rowGap12 = "ui";
|
|
1250
|
+
const columnGap12 = "uj";
|
|
1251
|
+
const order12 = "uk";
|
|
1252
|
+
const flexGrow12 = "ul";
|
|
1253
|
+
const flexShrink12 = "um";
|
|
1254
|
+
const gap13 = "un";
|
|
1255
|
+
const rowGap13 = "uo";
|
|
1256
|
+
const columnGap13 = "up";
|
|
1257
|
+
const order13 = "uq";
|
|
1258
|
+
const flexGrow13 = "ur";
|
|
1259
|
+
const flexShrink13 = "us";
|
|
1260
|
+
const gap14 = "ut";
|
|
1261
|
+
const rowGap14 = "uu";
|
|
1262
|
+
const columnGap14 = "uv";
|
|
1263
|
+
const order14 = "uw";
|
|
1264
|
+
const flexGrow14 = "ux";
|
|
1265
|
+
const flexShrink14 = "uy";
|
|
1266
|
+
const gap15 = "uz";
|
|
1267
|
+
const rowGap15 = "uA";
|
|
1268
|
+
const columnGap15 = "uB";
|
|
1269
|
+
const order15 = "uC";
|
|
1270
|
+
const flexGrow15 = "uD";
|
|
1271
|
+
const flexShrink15 = "uE";
|
|
1272
|
+
const gap16 = "uF";
|
|
1273
|
+
const rowGap16 = "uG";
|
|
1274
|
+
const columnGap16 = "uH";
|
|
1275
|
+
const order16 = "uI";
|
|
1276
|
+
const flexGrow16 = "uJ";
|
|
1277
|
+
const flexShrink16 = "uK";
|
|
1278
|
+
const gap17 = "uL";
|
|
1279
|
+
const rowGap17 = "uM";
|
|
1280
|
+
const columnGap17 = "uN";
|
|
1281
|
+
const order17 = "uO";
|
|
1282
|
+
const flexGrow17 = "uP";
|
|
1283
|
+
const flexShrink17 = "uQ";
|
|
1284
|
+
const gap18 = "uR";
|
|
1285
|
+
const rowGap18 = "uS";
|
|
1286
|
+
const columnGap18 = "uT";
|
|
1287
|
+
const order18 = "uU";
|
|
1288
|
+
const flexGrow18 = "uV";
|
|
1289
|
+
const flexShrink18 = "uW";
|
|
1290
|
+
const gap19 = "uX";
|
|
1291
|
+
const rowGap19 = "uY";
|
|
1292
|
+
const columnGap19 = "uZ";
|
|
1293
|
+
const order19 = "u0";
|
|
1294
|
+
const flexGrow19 = "u1";
|
|
1295
|
+
const flexShrink19 = "u2";
|
|
1296
|
+
const gap20 = "u3";
|
|
1297
|
+
const rowGap20 = "u4";
|
|
1298
|
+
const columnGap20 = "u5";
|
|
1299
|
+
const order20 = "u6";
|
|
1300
|
+
const flexGrow20 = "u7";
|
|
1301
|
+
const flexShrink20 = "u8";
|
|
1302
|
+
const alignSelfauto = "u9";
|
|
1303
|
+
const alignSelfcenter = "vc";
|
|
1304
|
+
const alignSelfbaseline = "vd";
|
|
1305
|
+
const alignSelfstretch = "ve";
|
|
1306
|
+
var classes = {
|
|
1307
|
+
box,
|
|
1308
|
+
displaynone,
|
|
1309
|
+
displayblock,
|
|
1310
|
+
"displayinline-block": "d",
|
|
1311
|
+
displayflex,
|
|
1312
|
+
"displayinline-flex": "f",
|
|
1313
|
+
displaygrid,
|
|
1314
|
+
positionstatic,
|
|
1315
|
+
positionrelative,
|
|
1316
|
+
positionabsolute,
|
|
1317
|
+
positionfixed,
|
|
1318
|
+
positionsticky,
|
|
1319
|
+
widthfit,
|
|
1320
|
+
"widthfit-screen": "n",
|
|
1321
|
+
widthauto,
|
|
1322
|
+
"widthfit-content": "p",
|
|
1323
|
+
"widthmax-content": "q",
|
|
1324
|
+
"widthmin-content": "r",
|
|
1325
|
+
heightfit,
|
|
1326
|
+
"heightfit-screen": "t",
|
|
1327
|
+
heightauto,
|
|
1328
|
+
"heightfit-content": "v",
|
|
1329
|
+
"heightmax-content": "w",
|
|
1330
|
+
"heightmin-content": "x",
|
|
1331
|
+
"min-widthfit": "y",
|
|
1332
|
+
"min-widthfit-screen": "z",
|
|
1333
|
+
"min-widthauto": "A",
|
|
1334
|
+
"min-widthfit-content": "B",
|
|
1335
|
+
"min-widthmax-content": "C",
|
|
1336
|
+
"min-widthmin-content": "D",
|
|
1337
|
+
"min-heightfit": "E",
|
|
1338
|
+
"min-heightfit-screen": "F",
|
|
1339
|
+
"min-heightauto": "G",
|
|
1340
|
+
"min-heightfit-content": "H",
|
|
1341
|
+
"min-heightmax-content": "I",
|
|
1342
|
+
"min-heightmin-content": "J",
|
|
1343
|
+
"max-widthfit": "K",
|
|
1344
|
+
"max-widthfit-screen": "L",
|
|
1345
|
+
"max-widthauto": "M",
|
|
1346
|
+
"max-widthfit-content": "N",
|
|
1347
|
+
"max-widthmax-content": "O",
|
|
1348
|
+
"max-widthmin-content": "P",
|
|
1349
|
+
"max-heightfit": "Q",
|
|
1350
|
+
"max-heightfit-screen": "R",
|
|
1351
|
+
"max-heightauto": "S",
|
|
1352
|
+
"max-heightfit-content": "T",
|
|
1353
|
+
"max-heightmax-content": "U",
|
|
1354
|
+
"max-heightmin-content": "V",
|
|
1355
|
+
top0,
|
|
1356
|
+
top1,
|
|
1357
|
+
top2,
|
|
1358
|
+
top3,
|
|
1359
|
+
top4,
|
|
1360
|
+
top5,
|
|
1361
|
+
top6,
|
|
1362
|
+
top7,
|
|
1363
|
+
top8,
|
|
1364
|
+
top9,
|
|
1365
|
+
top10,
|
|
1366
|
+
top11,
|
|
1367
|
+
top12,
|
|
1368
|
+
top13,
|
|
1369
|
+
top14,
|
|
1370
|
+
top15,
|
|
1371
|
+
top16,
|
|
1372
|
+
top17,
|
|
1373
|
+
top18,
|
|
1374
|
+
top19,
|
|
1375
|
+
top20,
|
|
1376
|
+
right0,
|
|
1377
|
+
right1,
|
|
1378
|
+
right2,
|
|
1379
|
+
right3,
|
|
1380
|
+
right4,
|
|
1381
|
+
right5,
|
|
1382
|
+
right6,
|
|
1383
|
+
right7,
|
|
1384
|
+
right8,
|
|
1385
|
+
right9,
|
|
1386
|
+
right10,
|
|
1387
|
+
right11,
|
|
1388
|
+
right12,
|
|
1389
|
+
right13,
|
|
1390
|
+
right14,
|
|
1391
|
+
right15,
|
|
1392
|
+
right16,
|
|
1393
|
+
right17,
|
|
1394
|
+
right18,
|
|
1395
|
+
right19,
|
|
1396
|
+
right20,
|
|
1397
|
+
bottom0,
|
|
1398
|
+
bottom1,
|
|
1399
|
+
bottom2,
|
|
1400
|
+
bottom3,
|
|
1401
|
+
bottom4,
|
|
1402
|
+
bottom5,
|
|
1403
|
+
bottom6,
|
|
1404
|
+
bottom7,
|
|
1405
|
+
bottom8,
|
|
1406
|
+
bottom9,
|
|
1407
|
+
bottom10,
|
|
1408
|
+
bottom11,
|
|
1409
|
+
bottom12,
|
|
1410
|
+
bottom13,
|
|
1411
|
+
bottom14,
|
|
1412
|
+
bottom15,
|
|
1413
|
+
bottom16,
|
|
1414
|
+
bottom17,
|
|
1415
|
+
bottom18,
|
|
1416
|
+
bottom19,
|
|
1417
|
+
bottom20,
|
|
1418
|
+
left0,
|
|
1419
|
+
left1,
|
|
1420
|
+
left2,
|
|
1421
|
+
left3,
|
|
1422
|
+
left4,
|
|
1423
|
+
left5,
|
|
1424
|
+
left6,
|
|
1425
|
+
left7,
|
|
1426
|
+
left8,
|
|
1427
|
+
left9,
|
|
1428
|
+
left10,
|
|
1429
|
+
left11,
|
|
1430
|
+
left12,
|
|
1431
|
+
left13,
|
|
1432
|
+
left14,
|
|
1433
|
+
left15,
|
|
1434
|
+
left16,
|
|
1435
|
+
left17,
|
|
1436
|
+
left18,
|
|
1437
|
+
left19,
|
|
1438
|
+
left20,
|
|
1439
|
+
m0,
|
|
1440
|
+
m1,
|
|
1441
|
+
m2,
|
|
1442
|
+
m3,
|
|
1443
|
+
m4,
|
|
1444
|
+
m5,
|
|
1445
|
+
m6,
|
|
1446
|
+
m7,
|
|
1447
|
+
m8,
|
|
1448
|
+
m9,
|
|
1449
|
+
m10,
|
|
1450
|
+
m11,
|
|
1451
|
+
m12,
|
|
1452
|
+
m13,
|
|
1453
|
+
m14,
|
|
1454
|
+
m15,
|
|
1455
|
+
m16,
|
|
1456
|
+
m17,
|
|
1457
|
+
m18,
|
|
1458
|
+
m19,
|
|
1459
|
+
m20,
|
|
1460
|
+
mx0,
|
|
1461
|
+
my0,
|
|
1462
|
+
mx1,
|
|
1463
|
+
my1,
|
|
1464
|
+
mx2,
|
|
1465
|
+
my2,
|
|
1466
|
+
mx3,
|
|
1467
|
+
my3,
|
|
1468
|
+
mx4,
|
|
1469
|
+
my4,
|
|
1470
|
+
mx5,
|
|
1471
|
+
my5,
|
|
1472
|
+
mx6,
|
|
1473
|
+
my6,
|
|
1474
|
+
mx7,
|
|
1475
|
+
my7,
|
|
1476
|
+
mx8,
|
|
1477
|
+
my8,
|
|
1478
|
+
mx9,
|
|
1479
|
+
my9,
|
|
1480
|
+
mx10,
|
|
1481
|
+
my10,
|
|
1482
|
+
mx11,
|
|
1483
|
+
my11,
|
|
1484
|
+
mx12,
|
|
1485
|
+
my12,
|
|
1486
|
+
mx13,
|
|
1487
|
+
my13,
|
|
1488
|
+
mx14,
|
|
1489
|
+
my14,
|
|
1490
|
+
mx15,
|
|
1491
|
+
my15,
|
|
1492
|
+
mx16,
|
|
1493
|
+
my16,
|
|
1494
|
+
mx17,
|
|
1495
|
+
my17,
|
|
1496
|
+
mx18,
|
|
1497
|
+
my18,
|
|
1498
|
+
mx19,
|
|
1499
|
+
my19,
|
|
1500
|
+
mx20,
|
|
1501
|
+
my20,
|
|
1502
|
+
mt0,
|
|
1503
|
+
mr0,
|
|
1504
|
+
mb0,
|
|
1505
|
+
ml0,
|
|
1506
|
+
mt1,
|
|
1507
|
+
mr1,
|
|
1508
|
+
mb1,
|
|
1509
|
+
ml1,
|
|
1510
|
+
mt2,
|
|
1511
|
+
mr2,
|
|
1512
|
+
mb2,
|
|
1513
|
+
ml2,
|
|
1514
|
+
mt3,
|
|
1515
|
+
mr3,
|
|
1516
|
+
mb3,
|
|
1517
|
+
ml3,
|
|
1518
|
+
mt4,
|
|
1519
|
+
mr4,
|
|
1520
|
+
mb4,
|
|
1521
|
+
ml4,
|
|
1522
|
+
mt5,
|
|
1523
|
+
mr5,
|
|
1524
|
+
mb5,
|
|
1525
|
+
ml5,
|
|
1526
|
+
mt6,
|
|
1527
|
+
mr6,
|
|
1528
|
+
mb6,
|
|
1529
|
+
ml6,
|
|
1530
|
+
mt7,
|
|
1531
|
+
mr7,
|
|
1532
|
+
mb7,
|
|
1533
|
+
ml7,
|
|
1534
|
+
mt8,
|
|
1535
|
+
mr8,
|
|
1536
|
+
mb8,
|
|
1537
|
+
ml8,
|
|
1538
|
+
mt9,
|
|
1539
|
+
mr9,
|
|
1540
|
+
mb9,
|
|
1541
|
+
ml9,
|
|
1542
|
+
mt10,
|
|
1543
|
+
mr10,
|
|
1544
|
+
mb10,
|
|
1545
|
+
ml10,
|
|
1546
|
+
mt11,
|
|
1547
|
+
mr11,
|
|
1548
|
+
mb11,
|
|
1549
|
+
ml11,
|
|
1550
|
+
mt12,
|
|
1551
|
+
mr12,
|
|
1552
|
+
mb12,
|
|
1553
|
+
ml12,
|
|
1554
|
+
mt13,
|
|
1555
|
+
mr13,
|
|
1556
|
+
mb13,
|
|
1557
|
+
ml13,
|
|
1558
|
+
mt14,
|
|
1559
|
+
mr14,
|
|
1560
|
+
mb14,
|
|
1561
|
+
ml14,
|
|
1562
|
+
mt15,
|
|
1563
|
+
mr15,
|
|
1564
|
+
mb15,
|
|
1565
|
+
ml15,
|
|
1566
|
+
mt16,
|
|
1567
|
+
mr16,
|
|
1568
|
+
mb16,
|
|
1569
|
+
ml16,
|
|
1570
|
+
mt17,
|
|
1571
|
+
mr17,
|
|
1572
|
+
mb17,
|
|
1573
|
+
ml17,
|
|
1574
|
+
mt18,
|
|
1575
|
+
mr18,
|
|
1576
|
+
mb18,
|
|
1577
|
+
ml18,
|
|
1578
|
+
mt19,
|
|
1579
|
+
mr19,
|
|
1580
|
+
mb19,
|
|
1581
|
+
ml19,
|
|
1582
|
+
mt20,
|
|
1583
|
+
mr20,
|
|
1584
|
+
mb20,
|
|
1585
|
+
ml20,
|
|
1586
|
+
p0,
|
|
1587
|
+
p1,
|
|
1588
|
+
p2,
|
|
1589
|
+
p3,
|
|
1590
|
+
p4,
|
|
1591
|
+
p5,
|
|
1592
|
+
p6,
|
|
1593
|
+
p7,
|
|
1594
|
+
p8,
|
|
1595
|
+
p9,
|
|
1596
|
+
p10,
|
|
1597
|
+
p11,
|
|
1598
|
+
p12,
|
|
1599
|
+
p13,
|
|
1600
|
+
p14,
|
|
1601
|
+
p15,
|
|
1602
|
+
p16,
|
|
1603
|
+
p17,
|
|
1604
|
+
p18,
|
|
1605
|
+
p19,
|
|
1606
|
+
p20,
|
|
1607
|
+
px0,
|
|
1608
|
+
py0,
|
|
1609
|
+
px1,
|
|
1610
|
+
py1,
|
|
1611
|
+
px2,
|
|
1612
|
+
py2,
|
|
1613
|
+
px3,
|
|
1614
|
+
py3,
|
|
1615
|
+
px4,
|
|
1616
|
+
py4,
|
|
1617
|
+
px5,
|
|
1618
|
+
py5,
|
|
1619
|
+
px6,
|
|
1620
|
+
py6,
|
|
1621
|
+
px7,
|
|
1622
|
+
py7,
|
|
1623
|
+
px8,
|
|
1624
|
+
py8,
|
|
1625
|
+
px9,
|
|
1626
|
+
py9,
|
|
1627
|
+
px10,
|
|
1628
|
+
py10,
|
|
1629
|
+
px11,
|
|
1630
|
+
py11,
|
|
1631
|
+
px12,
|
|
1632
|
+
py12,
|
|
1633
|
+
px13,
|
|
1634
|
+
py13,
|
|
1635
|
+
px14,
|
|
1636
|
+
py14,
|
|
1637
|
+
px15,
|
|
1638
|
+
py15,
|
|
1639
|
+
px16,
|
|
1640
|
+
py16,
|
|
1641
|
+
px17,
|
|
1642
|
+
py17,
|
|
1643
|
+
px18,
|
|
1644
|
+
py18,
|
|
1645
|
+
px19,
|
|
1646
|
+
py19,
|
|
1647
|
+
px20,
|
|
1648
|
+
py20,
|
|
1649
|
+
pt0,
|
|
1650
|
+
pr0,
|
|
1651
|
+
pb0,
|
|
1652
|
+
pl0,
|
|
1653
|
+
pt1,
|
|
1654
|
+
pr1,
|
|
1655
|
+
pb1,
|
|
1656
|
+
pl1,
|
|
1657
|
+
pt2,
|
|
1658
|
+
pr2,
|
|
1659
|
+
pb2,
|
|
1660
|
+
pl2,
|
|
1661
|
+
pt3,
|
|
1662
|
+
pr3,
|
|
1663
|
+
pb3,
|
|
1664
|
+
pl3,
|
|
1665
|
+
pt4,
|
|
1666
|
+
pr4,
|
|
1667
|
+
pb4,
|
|
1668
|
+
pl4,
|
|
1669
|
+
pt5,
|
|
1670
|
+
pr5,
|
|
1671
|
+
pb5,
|
|
1672
|
+
pl5,
|
|
1673
|
+
pt6,
|
|
1674
|
+
pr6,
|
|
1675
|
+
pb6,
|
|
1676
|
+
pl6,
|
|
1677
|
+
pt7,
|
|
1678
|
+
pr7,
|
|
1679
|
+
pb7,
|
|
1680
|
+
pl7,
|
|
1681
|
+
pt8,
|
|
1682
|
+
pr8,
|
|
1683
|
+
pb8,
|
|
1684
|
+
pl8,
|
|
1685
|
+
pt9,
|
|
1686
|
+
pr9,
|
|
1687
|
+
pb9,
|
|
1688
|
+
pl9,
|
|
1689
|
+
pt10,
|
|
1690
|
+
pr10,
|
|
1691
|
+
pb10,
|
|
1692
|
+
pl10,
|
|
1693
|
+
pt11,
|
|
1694
|
+
pr11,
|
|
1695
|
+
pb11,
|
|
1696
|
+
pl11,
|
|
1697
|
+
pt12,
|
|
1698
|
+
pr12,
|
|
1699
|
+
pb12,
|
|
1700
|
+
pl12,
|
|
1701
|
+
pt13,
|
|
1702
|
+
pr13,
|
|
1703
|
+
pb13,
|
|
1704
|
+
pl13,
|
|
1705
|
+
pt14,
|
|
1706
|
+
pr14,
|
|
1707
|
+
pb14,
|
|
1708
|
+
pl14,
|
|
1709
|
+
pt15,
|
|
1710
|
+
pr15,
|
|
1711
|
+
pb15,
|
|
1712
|
+
pl15,
|
|
1713
|
+
pt16,
|
|
1714
|
+
pr16,
|
|
1715
|
+
pb16,
|
|
1716
|
+
pl16,
|
|
1717
|
+
pt17,
|
|
1718
|
+
pr17,
|
|
1719
|
+
pb17,
|
|
1720
|
+
pl17,
|
|
1721
|
+
pt18,
|
|
1722
|
+
pr18,
|
|
1723
|
+
pb18,
|
|
1724
|
+
pl18,
|
|
1725
|
+
pt19,
|
|
1726
|
+
pr19,
|
|
1727
|
+
pb19,
|
|
1728
|
+
pl19,
|
|
1729
|
+
pt20,
|
|
1730
|
+
pr20,
|
|
1731
|
+
pb20,
|
|
1732
|
+
pl20,
|
|
1733
|
+
b0,
|
|
1734
|
+
b1,
|
|
1735
|
+
b2,
|
|
1736
|
+
b3,
|
|
1737
|
+
b4,
|
|
1738
|
+
b5,
|
|
1739
|
+
b6,
|
|
1740
|
+
b7,
|
|
1741
|
+
b8,
|
|
1742
|
+
b9,
|
|
1743
|
+
b10,
|
|
1744
|
+
b11,
|
|
1745
|
+
b12,
|
|
1746
|
+
b13,
|
|
1747
|
+
b14,
|
|
1748
|
+
b15,
|
|
1749
|
+
b16,
|
|
1750
|
+
b17,
|
|
1751
|
+
b18,
|
|
1752
|
+
b19,
|
|
1753
|
+
b20,
|
|
1754
|
+
bx0,
|
|
1755
|
+
by0,
|
|
1756
|
+
bx1,
|
|
1757
|
+
by1,
|
|
1758
|
+
bx2,
|
|
1759
|
+
by2,
|
|
1760
|
+
bx3,
|
|
1761
|
+
by3,
|
|
1762
|
+
bx4,
|
|
1763
|
+
by4,
|
|
1764
|
+
bx5,
|
|
1765
|
+
by5,
|
|
1766
|
+
bx6,
|
|
1767
|
+
by6,
|
|
1768
|
+
bx7,
|
|
1769
|
+
by7,
|
|
1770
|
+
bx8,
|
|
1771
|
+
by8,
|
|
1772
|
+
bx9,
|
|
1773
|
+
by9,
|
|
1774
|
+
bx10,
|
|
1775
|
+
by10,
|
|
1776
|
+
bx11,
|
|
1777
|
+
by11,
|
|
1778
|
+
bx12,
|
|
1779
|
+
by12,
|
|
1780
|
+
bx13,
|
|
1781
|
+
by13,
|
|
1782
|
+
bx14,
|
|
1783
|
+
by14,
|
|
1784
|
+
bx15,
|
|
1785
|
+
by15,
|
|
1786
|
+
bx16,
|
|
1787
|
+
by16,
|
|
1788
|
+
bx17,
|
|
1789
|
+
by17,
|
|
1790
|
+
bx18,
|
|
1791
|
+
by18,
|
|
1792
|
+
bx19,
|
|
1793
|
+
by19,
|
|
1794
|
+
bx20,
|
|
1795
|
+
by20,
|
|
1796
|
+
bt0,
|
|
1797
|
+
br0,
|
|
1798
|
+
bb0,
|
|
1799
|
+
bl0,
|
|
1800
|
+
bt1,
|
|
1801
|
+
br1,
|
|
1802
|
+
bb1,
|
|
1803
|
+
bl1,
|
|
1804
|
+
bt2,
|
|
1805
|
+
br2,
|
|
1806
|
+
bb2,
|
|
1807
|
+
bl2,
|
|
1808
|
+
bt3,
|
|
1809
|
+
br3,
|
|
1810
|
+
bb3,
|
|
1811
|
+
bl3,
|
|
1812
|
+
bt4,
|
|
1813
|
+
br4,
|
|
1814
|
+
bb4,
|
|
1815
|
+
bl4,
|
|
1816
|
+
bt5,
|
|
1817
|
+
br5,
|
|
1818
|
+
bb5,
|
|
1819
|
+
bl5,
|
|
1820
|
+
bt6,
|
|
1821
|
+
br6,
|
|
1822
|
+
bb6,
|
|
1823
|
+
bl6,
|
|
1824
|
+
bt7,
|
|
1825
|
+
br7,
|
|
1826
|
+
bb7,
|
|
1827
|
+
bl7,
|
|
1828
|
+
bt8,
|
|
1829
|
+
br8,
|
|
1830
|
+
bb8,
|
|
1831
|
+
bl8,
|
|
1832
|
+
bt9,
|
|
1833
|
+
br9,
|
|
1834
|
+
bb9,
|
|
1835
|
+
bl9,
|
|
1836
|
+
bt10,
|
|
1837
|
+
br10,
|
|
1838
|
+
bb10,
|
|
1839
|
+
bl10,
|
|
1840
|
+
bt11,
|
|
1841
|
+
br11,
|
|
1842
|
+
bb11,
|
|
1843
|
+
bl11,
|
|
1844
|
+
bt12,
|
|
1845
|
+
br12,
|
|
1846
|
+
bb12,
|
|
1847
|
+
bl12,
|
|
1848
|
+
bt13,
|
|
1849
|
+
br13,
|
|
1850
|
+
bb13,
|
|
1851
|
+
bl13,
|
|
1852
|
+
bt14,
|
|
1853
|
+
br14,
|
|
1854
|
+
bb14,
|
|
1855
|
+
bl14,
|
|
1856
|
+
bt15,
|
|
1857
|
+
br15,
|
|
1858
|
+
bb15,
|
|
1859
|
+
bl15,
|
|
1860
|
+
bt16,
|
|
1861
|
+
br16,
|
|
1862
|
+
bb16,
|
|
1863
|
+
bl16,
|
|
1864
|
+
bt17,
|
|
1865
|
+
br17,
|
|
1866
|
+
bb17,
|
|
1867
|
+
bl17,
|
|
1868
|
+
bt18,
|
|
1869
|
+
br18,
|
|
1870
|
+
bb18,
|
|
1871
|
+
bl18,
|
|
1872
|
+
bt19,
|
|
1873
|
+
br19,
|
|
1874
|
+
bb19,
|
|
1875
|
+
bl19,
|
|
1876
|
+
bt20,
|
|
1877
|
+
br20,
|
|
1878
|
+
bb20,
|
|
1879
|
+
bl20,
|
|
1880
|
+
bStylesolid,
|
|
1881
|
+
bStyledashed,
|
|
1882
|
+
bStyledotted,
|
|
1883
|
+
bStyledouble,
|
|
1884
|
+
bRadius0,
|
|
1885
|
+
bRadius1,
|
|
1886
|
+
bRadius2,
|
|
1887
|
+
bRadius3,
|
|
1888
|
+
bRadius4,
|
|
1889
|
+
bRadius5,
|
|
1890
|
+
bRadius6,
|
|
1891
|
+
bRadius7,
|
|
1892
|
+
bRadius8,
|
|
1893
|
+
bRadius9,
|
|
1894
|
+
bRadius10,
|
|
1895
|
+
bRadius11,
|
|
1896
|
+
bRadius12,
|
|
1897
|
+
bRadius13,
|
|
1898
|
+
bRadius14,
|
|
1899
|
+
bRadius15,
|
|
1900
|
+
bRadius16,
|
|
1901
|
+
bRadius17,
|
|
1902
|
+
bRadius18,
|
|
1903
|
+
bRadius19,
|
|
1904
|
+
bRadius20,
|
|
1905
|
+
bRadiusTop0,
|
|
1906
|
+
bRadiusTop1,
|
|
1907
|
+
bRadiusTop2,
|
|
1908
|
+
bRadiusTop3,
|
|
1909
|
+
bRadiusTop4,
|
|
1910
|
+
bRadiusTop5,
|
|
1911
|
+
bRadiusTop6,
|
|
1912
|
+
bRadiusTop7,
|
|
1913
|
+
bRadiusTop8,
|
|
1914
|
+
bRadiusTop9,
|
|
1915
|
+
bRadiusTop10,
|
|
1916
|
+
bRadiusTop11,
|
|
1917
|
+
bRadiusTop12,
|
|
1918
|
+
bRadiusTop13,
|
|
1919
|
+
bRadiusTop14,
|
|
1920
|
+
bRadiusTop15,
|
|
1921
|
+
bRadiusTop16,
|
|
1922
|
+
bRadiusTop17,
|
|
1923
|
+
bRadiusTop18,
|
|
1924
|
+
bRadiusTop19,
|
|
1925
|
+
bRadiusTop20,
|
|
1926
|
+
bRadiusRight0,
|
|
1927
|
+
bRadiusRight1,
|
|
1928
|
+
bRadiusRight2,
|
|
1929
|
+
bRadiusRight3,
|
|
1930
|
+
bRadiusRight4,
|
|
1931
|
+
bRadiusRight5,
|
|
1932
|
+
bRadiusRight6,
|
|
1933
|
+
bRadiusRight7,
|
|
1934
|
+
bRadiusRight8,
|
|
1935
|
+
bRadiusRight9,
|
|
1936
|
+
bRadiusRight10,
|
|
1937
|
+
bRadiusRight11,
|
|
1938
|
+
bRadiusRight12,
|
|
1939
|
+
bRadiusRight13,
|
|
1940
|
+
bRadiusRight14,
|
|
1941
|
+
bRadiusRight15,
|
|
1942
|
+
bRadiusRight16,
|
|
1943
|
+
bRadiusRight17,
|
|
1944
|
+
bRadiusRight18,
|
|
1945
|
+
bRadiusRight19,
|
|
1946
|
+
bRadiusRight20,
|
|
1947
|
+
bRadiusBottom0,
|
|
1948
|
+
bRadiusBottom1,
|
|
1949
|
+
bRadiusBottom2,
|
|
1950
|
+
bRadiusBottom3,
|
|
1951
|
+
bRadiusBottom4,
|
|
1952
|
+
bRadiusBottom5,
|
|
1953
|
+
bRadiusBottom6,
|
|
1954
|
+
bRadiusBottom7,
|
|
1955
|
+
bRadiusBottom8,
|
|
1956
|
+
bRadiusBottom9,
|
|
1957
|
+
bRadiusBottom10,
|
|
1958
|
+
bRadiusBottom11,
|
|
1959
|
+
bRadiusBottom12,
|
|
1960
|
+
bRadiusBottom13,
|
|
1961
|
+
bRadiusBottom14,
|
|
1962
|
+
bRadiusBottom15,
|
|
1963
|
+
bRadiusBottom16,
|
|
1964
|
+
bRadiusBottom17,
|
|
1965
|
+
bRadiusBottom18,
|
|
1966
|
+
bRadiusBottom19,
|
|
1967
|
+
bRadiusBottom20,
|
|
1968
|
+
bRadiusLeft0,
|
|
1969
|
+
bRadiusLeft1,
|
|
1970
|
+
bRadiusLeft2,
|
|
1971
|
+
bRadiusLeft3,
|
|
1972
|
+
bRadiusLeft4,
|
|
1973
|
+
bRadiusLeft5,
|
|
1974
|
+
bRadiusLeft6,
|
|
1975
|
+
bRadiusLeft7,
|
|
1976
|
+
bRadiusLeft8,
|
|
1977
|
+
bRadiusLeft9,
|
|
1978
|
+
bRadiusLeft10,
|
|
1979
|
+
bRadiusLeft11,
|
|
1980
|
+
bRadiusLeft12,
|
|
1981
|
+
bRadiusLeft13,
|
|
1982
|
+
bRadiusLeft14,
|
|
1983
|
+
bRadiusLeft15,
|
|
1984
|
+
bRadiusLeft16,
|
|
1985
|
+
bRadiusLeft17,
|
|
1986
|
+
bRadiusLeft18,
|
|
1987
|
+
bRadiusLeft19,
|
|
1988
|
+
bRadiusLeft20,
|
|
1989
|
+
bRadiusTopRight0,
|
|
1990
|
+
bRadiusTopLeft0,
|
|
1991
|
+
bRadiusBottomRight0,
|
|
1992
|
+
bRadiusBottomLeft0,
|
|
1993
|
+
bRadiusTopRight1,
|
|
1994
|
+
bRadiusTopLeft1,
|
|
1995
|
+
bRadiusBottomRight1,
|
|
1996
|
+
bRadiusBottomLeft1,
|
|
1997
|
+
bRadiusTopRight2,
|
|
1998
|
+
bRadiusTopLeft2,
|
|
1999
|
+
bRadiusBottomRight2,
|
|
2000
|
+
bRadiusBottomLeft2,
|
|
2001
|
+
bRadiusTopRight3,
|
|
2002
|
+
bRadiusTopLeft3,
|
|
2003
|
+
bRadiusBottomRight3,
|
|
2004
|
+
bRadiusBottomLeft3,
|
|
2005
|
+
bRadiusTopRight4,
|
|
2006
|
+
bRadiusTopLeft4,
|
|
2007
|
+
bRadiusBottomRight4,
|
|
2008
|
+
bRadiusBottomLeft4,
|
|
2009
|
+
bRadiusTopRight5,
|
|
2010
|
+
bRadiusTopLeft5,
|
|
2011
|
+
bRadiusBottomRight5,
|
|
2012
|
+
bRadiusBottomLeft5,
|
|
2013
|
+
bRadiusTopRight6,
|
|
2014
|
+
bRadiusTopLeft6,
|
|
2015
|
+
bRadiusBottomRight6,
|
|
2016
|
+
bRadiusBottomLeft6,
|
|
2017
|
+
bRadiusTopRight7,
|
|
2018
|
+
bRadiusTopLeft7,
|
|
2019
|
+
bRadiusBottomRight7,
|
|
2020
|
+
bRadiusBottomLeft7,
|
|
2021
|
+
bRadiusTopRight8,
|
|
2022
|
+
bRadiusTopLeft8,
|
|
2023
|
+
bRadiusBottomRight8,
|
|
2024
|
+
bRadiusBottomLeft8,
|
|
2025
|
+
bRadiusTopRight9,
|
|
2026
|
+
bRadiusTopLeft9,
|
|
2027
|
+
bRadiusBottomRight9,
|
|
2028
|
+
bRadiusBottomLeft9,
|
|
2029
|
+
bRadiusTopRight10,
|
|
2030
|
+
bRadiusTopLeft10,
|
|
2031
|
+
bRadiusBottomRight10,
|
|
2032
|
+
bRadiusBottomLeft10,
|
|
2033
|
+
bRadiusTopRight11,
|
|
2034
|
+
bRadiusTopLeft11,
|
|
2035
|
+
bRadiusBottomRight11,
|
|
2036
|
+
bRadiusBottomLeft11,
|
|
2037
|
+
bRadiusTopRight12,
|
|
2038
|
+
bRadiusTopLeft12,
|
|
2039
|
+
bRadiusBottomRight12,
|
|
2040
|
+
bRadiusBottomLeft12,
|
|
2041
|
+
bRadiusTopRight13,
|
|
2042
|
+
bRadiusTopLeft13,
|
|
2043
|
+
bRadiusBottomRight13,
|
|
2044
|
+
bRadiusBottomLeft13,
|
|
2045
|
+
bRadiusTopRight14,
|
|
2046
|
+
bRadiusTopLeft14,
|
|
2047
|
+
bRadiusBottomRight14,
|
|
2048
|
+
bRadiusBottomLeft14,
|
|
2049
|
+
bRadiusTopRight15,
|
|
2050
|
+
bRadiusTopLeft15,
|
|
2051
|
+
bRadiusBottomRight15,
|
|
2052
|
+
bRadiusBottomLeft15,
|
|
2053
|
+
bRadiusTopRight16,
|
|
2054
|
+
bRadiusTopLeft16,
|
|
2055
|
+
bRadiusBottomRight16,
|
|
2056
|
+
bRadiusBottomLeft16,
|
|
2057
|
+
bRadiusTopRight17,
|
|
2058
|
+
bRadiusTopLeft17,
|
|
2059
|
+
bRadiusBottomRight17,
|
|
2060
|
+
bRadiusBottomLeft17,
|
|
2061
|
+
bRadiusTopRight18,
|
|
2062
|
+
bRadiusTopLeft18,
|
|
2063
|
+
bRadiusBottomRight18,
|
|
2064
|
+
bRadiusBottomLeft18,
|
|
2065
|
+
bRadiusTopRight19,
|
|
2066
|
+
bRadiusTopLeft19,
|
|
2067
|
+
bRadiusBottomRight19,
|
|
2068
|
+
bRadiusBottomLeft19,
|
|
2069
|
+
bRadiusTopRight20,
|
|
2070
|
+
bRadiusTopLeft20,
|
|
2071
|
+
bRadiusBottomRight20,
|
|
2072
|
+
bRadiusBottomLeft20,
|
|
2073
|
+
colorprimary,
|
|
2074
|
+
colorHoverprimary,
|
|
2075
|
+
bgColorprimary,
|
|
2076
|
+
bgColorHoverprimary,
|
|
2077
|
+
bColorprimary,
|
|
2078
|
+
bColorHoverprimary,
|
|
2079
|
+
colorprimaryLight,
|
|
2080
|
+
colorHoverprimaryLight,
|
|
2081
|
+
bgColorprimaryLight,
|
|
2082
|
+
bgColorHoverprimaryLight,
|
|
2083
|
+
bColorprimaryLight,
|
|
2084
|
+
bColorHoverprimaryLight,
|
|
2085
|
+
colorprimaryDark,
|
|
2086
|
+
colorHoverprimaryDark,
|
|
2087
|
+
bgColorprimaryDark,
|
|
2088
|
+
bgColorHoverprimaryDark,
|
|
2089
|
+
bColorprimaryDark,
|
|
2090
|
+
bColorHoverprimaryDark,
|
|
2091
|
+
colorsecondary,
|
|
2092
|
+
colorHoversecondary,
|
|
2093
|
+
bgColorsecondary,
|
|
2094
|
+
bgColorHoversecondary,
|
|
2095
|
+
bColorsecondary,
|
|
2096
|
+
bColorHoversecondary,
|
|
2097
|
+
colorsecondaryLight,
|
|
2098
|
+
colorHoversecondaryLight,
|
|
2099
|
+
bgColorsecondaryLight,
|
|
2100
|
+
bgColorHoversecondaryLight,
|
|
2101
|
+
bColorsecondaryLight,
|
|
2102
|
+
bColorHoversecondaryLight,
|
|
2103
|
+
colorsecondaryDark,
|
|
2104
|
+
colorHoversecondaryDark,
|
|
2105
|
+
bgColorsecondaryDark,
|
|
2106
|
+
bgColorHoversecondaryDark,
|
|
2107
|
+
bColorsecondaryDark,
|
|
2108
|
+
bColorHoversecondaryDark,
|
|
2109
|
+
colortertiary,
|
|
2110
|
+
colorHovertertiary,
|
|
2111
|
+
bgColortertiary,
|
|
2112
|
+
bgColorHovertertiary,
|
|
2113
|
+
bColortertiary,
|
|
2114
|
+
bColorHovertertiary,
|
|
2115
|
+
colortertiaryLight,
|
|
2116
|
+
colorHovertertiaryLight,
|
|
2117
|
+
bgColortertiaryLight,
|
|
2118
|
+
bgColorHovertertiaryLight,
|
|
2119
|
+
bColortertiaryLight,
|
|
2120
|
+
bColorHovertertiaryLight,
|
|
2121
|
+
colortertiaryDark,
|
|
2122
|
+
colorHovertertiaryDark,
|
|
2123
|
+
bgColortertiaryDark,
|
|
2124
|
+
bgColorHovertertiaryDark,
|
|
2125
|
+
bColortertiaryDark,
|
|
2126
|
+
bColorHovertertiaryDark,
|
|
2127
|
+
colorblue,
|
|
2128
|
+
colorHoverblue,
|
|
2129
|
+
bgColorblue,
|
|
2130
|
+
bgColorHoverblue,
|
|
2131
|
+
bColorblue,
|
|
2132
|
+
bColorHoverblue,
|
|
2133
|
+
colorblueLight,
|
|
2134
|
+
colorHoverblueLight,
|
|
2135
|
+
bgColorblueLight,
|
|
2136
|
+
bgColorHoverblueLight,
|
|
2137
|
+
bColorblueLight,
|
|
2138
|
+
bColorHoverblueLight,
|
|
2139
|
+
colorblueDark,
|
|
2140
|
+
colorHoverblueDark,
|
|
2141
|
+
bgColorblueDark,
|
|
2142
|
+
bgColorHoverblueDark,
|
|
2143
|
+
bColorblueDark,
|
|
2144
|
+
bColorHoverblueDark,
|
|
2145
|
+
colorred,
|
|
2146
|
+
colorHoverred,
|
|
2147
|
+
bgColorred,
|
|
2148
|
+
bgColorHoverred,
|
|
2149
|
+
bColorred,
|
|
2150
|
+
bColorHoverred,
|
|
2151
|
+
colorredLight,
|
|
2152
|
+
colorHoverredLight,
|
|
2153
|
+
bgColorredLight,
|
|
2154
|
+
bgColorHoverredLight,
|
|
2155
|
+
bColorredLight,
|
|
2156
|
+
bColorHoverredLight,
|
|
2157
|
+
colorredDark,
|
|
2158
|
+
colorHoverredDark,
|
|
2159
|
+
bgColorredDark,
|
|
2160
|
+
bgColorHoverredDark,
|
|
2161
|
+
bColorredDark,
|
|
2162
|
+
bColorHoverredDark,
|
|
2163
|
+
colorpurple,
|
|
2164
|
+
colorHoverpurple,
|
|
2165
|
+
bgColorpurple,
|
|
2166
|
+
bgColorHoverpurple,
|
|
2167
|
+
bColorpurple,
|
|
2168
|
+
bColorHoverpurple,
|
|
2169
|
+
colorpurpleLight,
|
|
2170
|
+
colorHoverpurpleLight,
|
|
2171
|
+
bgColorpurpleLight,
|
|
2172
|
+
bgColorHoverpurpleLight,
|
|
2173
|
+
bColorpurpleLight,
|
|
2174
|
+
bColorHoverpurpleLight,
|
|
2175
|
+
colorpurpleDark,
|
|
2176
|
+
colorHoverpurpleDark,
|
|
2177
|
+
bgColorpurpleDark,
|
|
2178
|
+
bgColorHoverpurpleDark,
|
|
2179
|
+
bColorpurpleDark,
|
|
2180
|
+
bColorHoverpurpleDark,
|
|
2181
|
+
coloryellow,
|
|
2182
|
+
colorHoveryellow,
|
|
2183
|
+
bgColoryellow,
|
|
2184
|
+
bgColorHoveryellow,
|
|
2185
|
+
bColoryellow,
|
|
2186
|
+
bColorHoveryellow,
|
|
2187
|
+
coloryellowLight,
|
|
2188
|
+
colorHoveryellowLight,
|
|
2189
|
+
bgColoryellowLight,
|
|
2190
|
+
bgColorHoveryellowLight,
|
|
2191
|
+
bColoryellowLight,
|
|
2192
|
+
bColorHoveryellowLight,
|
|
2193
|
+
coloryellowDark,
|
|
2194
|
+
colorHoveryellowDark,
|
|
2195
|
+
bgColoryellowDark,
|
|
2196
|
+
bgColorHoveryellowDark,
|
|
2197
|
+
bColoryellowDark,
|
|
2198
|
+
bColorHoveryellowDark,
|
|
2199
|
+
colorpink,
|
|
2200
|
+
colorHoverpink,
|
|
2201
|
+
bgColorpink,
|
|
2202
|
+
bgColorHoverpink,
|
|
2203
|
+
bColorpink,
|
|
2204
|
+
bColorHoverpink,
|
|
2205
|
+
colorpinkLight,
|
|
2206
|
+
colorHoverpinkLight,
|
|
2207
|
+
bgColorpinkLight,
|
|
2208
|
+
bgColorHoverpinkLight,
|
|
2209
|
+
bColorpinkLight,
|
|
2210
|
+
bColorHoverpinkLight,
|
|
2211
|
+
colorpinkDark,
|
|
2212
|
+
colorHoverpinkDark,
|
|
2213
|
+
bgColorpinkDark,
|
|
2214
|
+
bgColorHoverpinkDark,
|
|
2215
|
+
bColorpinkDark,
|
|
2216
|
+
bColorHoverpinkDark,
|
|
2217
|
+
colorgreen,
|
|
2218
|
+
colorHovergreen,
|
|
2219
|
+
bgColorgreen,
|
|
2220
|
+
bgColorHovergreen,
|
|
2221
|
+
bColorgreen,
|
|
2222
|
+
bColorHovergreen,
|
|
2223
|
+
colorgreenLight,
|
|
2224
|
+
colorHovergreenLight,
|
|
2225
|
+
bgColorgreenLight,
|
|
2226
|
+
bgColorHovergreenLight,
|
|
2227
|
+
bColorgreenLight,
|
|
2228
|
+
bColorHovergreenLight,
|
|
2229
|
+
colorgreenDark,
|
|
2230
|
+
colorHovergreenDark,
|
|
2231
|
+
bgColorgreenDark,
|
|
2232
|
+
bgColorHovergreenDark,
|
|
2233
|
+
bColorgreenDark,
|
|
2234
|
+
bColorHovergreenDark,
|
|
2235
|
+
colororange,
|
|
2236
|
+
colorHoverorange,
|
|
2237
|
+
bgColororange,
|
|
2238
|
+
bgColorHoverorange,
|
|
2239
|
+
bColororange,
|
|
2240
|
+
bColorHoverorange,
|
|
2241
|
+
colororangeLight,
|
|
2242
|
+
colorHoverorangeLight,
|
|
2243
|
+
bgColororangeLight,
|
|
2244
|
+
bgColorHoverorangeLight,
|
|
2245
|
+
bColororangeLight,
|
|
2246
|
+
bColorHoverorangeLight,
|
|
2247
|
+
colororangeDark,
|
|
2248
|
+
colorHoverorangeDark,
|
|
2249
|
+
bgColororangeDark,
|
|
2250
|
+
bgColorHoverorangeDark,
|
|
2251
|
+
bColororangeDark,
|
|
2252
|
+
bColorHoverorangeDark,
|
|
2253
|
+
colornavy,
|
|
2254
|
+
colorHovernavy,
|
|
2255
|
+
bgColornavy,
|
|
2256
|
+
bgColorHovernavy,
|
|
2257
|
+
bColornavy,
|
|
2258
|
+
bColorHovernavy,
|
|
2259
|
+
colornavyLight,
|
|
2260
|
+
colorHovernavyLight,
|
|
2261
|
+
bgColornavyLight,
|
|
2262
|
+
bgColorHovernavyLight,
|
|
2263
|
+
bColornavyLight,
|
|
2264
|
+
bColorHovernavyLight,
|
|
2265
|
+
colornavyDark,
|
|
2266
|
+
colorHovernavyDark,
|
|
2267
|
+
bgColornavyDark,
|
|
2268
|
+
bgColorHovernavyDark,
|
|
2269
|
+
bColornavyDark,
|
|
2270
|
+
bColorHovernavyDark,
|
|
2271
|
+
colorteal,
|
|
2272
|
+
colorHoverteal,
|
|
2273
|
+
bgColorteal,
|
|
2274
|
+
bgColorHoverteal,
|
|
2275
|
+
bColorteal,
|
|
2276
|
+
bColorHoverteal,
|
|
2277
|
+
colortealLight,
|
|
2278
|
+
colorHovertealLight,
|
|
2279
|
+
bgColortealLight,
|
|
2280
|
+
bgColorHovertealLight,
|
|
2281
|
+
bColortealLight,
|
|
2282
|
+
bColorHovertealLight,
|
|
2283
|
+
colortealDark,
|
|
2284
|
+
colorHovertealDark,
|
|
2285
|
+
bgColortealDark,
|
|
2286
|
+
bgColorHovertealDark,
|
|
2287
|
+
bColortealDark,
|
|
2288
|
+
bColorHovertealDark,
|
|
2289
|
+
colorviolet,
|
|
2290
|
+
colorHoverviolet,
|
|
2291
|
+
bgColorviolet,
|
|
2292
|
+
bgColorHoverviolet,
|
|
2293
|
+
bColorviolet,
|
|
2294
|
+
bColorHoverviolet,
|
|
2295
|
+
colorvioletLight,
|
|
2296
|
+
colorHovervioletLight,
|
|
2297
|
+
bgColorvioletLight,
|
|
2298
|
+
bgColorHovervioletLight,
|
|
2299
|
+
bColorvioletLight,
|
|
2300
|
+
bColorHovervioletLight,
|
|
2301
|
+
colorvioletDark,
|
|
2302
|
+
colorHovervioletDark,
|
|
2303
|
+
bgColorvioletDark,
|
|
2304
|
+
bgColorHovervioletDark,
|
|
2305
|
+
bColorvioletDark,
|
|
2306
|
+
bColorHovervioletDark,
|
|
2307
|
+
colorblack,
|
|
2308
|
+
colorHoverblack,
|
|
2309
|
+
bgColorblack,
|
|
2310
|
+
bgColorHoverblack,
|
|
2311
|
+
bColorblack,
|
|
2312
|
+
bColorHoverblack,
|
|
2313
|
+
colorwhite,
|
|
2314
|
+
colorHoverwhite,
|
|
2315
|
+
bgColorwhite,
|
|
2316
|
+
bgColorHoverwhite,
|
|
2317
|
+
bColorwhite,
|
|
2318
|
+
bColorHoverwhite,
|
|
2319
|
+
colorgray,
|
|
2320
|
+
colorHovergray,
|
|
2321
|
+
bgColorgray,
|
|
2322
|
+
bgColorHovergray,
|
|
2323
|
+
bColorgray,
|
|
2324
|
+
bColorHovergray,
|
|
2325
|
+
colorgrayLight,
|
|
2326
|
+
colorHovergrayLight,
|
|
2327
|
+
bgColorgrayLight,
|
|
2328
|
+
bgColorHovergrayLight,
|
|
2329
|
+
bColorgrayLight,
|
|
2330
|
+
bColorHovergrayLight,
|
|
2331
|
+
colorgrayDark,
|
|
2332
|
+
colorHovergrayDark,
|
|
2333
|
+
bgColorgrayDark,
|
|
2334
|
+
bgColorHovergrayDark,
|
|
2335
|
+
bColorgrayDark,
|
|
2336
|
+
bColorHovergrayDark,
|
|
2337
|
+
colorbrown,
|
|
2338
|
+
colorHoverbrown,
|
|
2339
|
+
bgColorbrown,
|
|
2340
|
+
bgColorHoverbrown,
|
|
2341
|
+
bColorbrown,
|
|
2342
|
+
bColorHoverbrown,
|
|
2343
|
+
colorbrownLight,
|
|
2344
|
+
colorHoverbrownLight,
|
|
2345
|
+
bgColorbrownLight,
|
|
2346
|
+
bgColorHoverbrownLight,
|
|
2347
|
+
bColorbrownLight,
|
|
2348
|
+
bColorHoverbrownLight,
|
|
2349
|
+
colorbrownDark,
|
|
2350
|
+
colorHoverbrownDark,
|
|
2351
|
+
bgColorbrownDark,
|
|
2352
|
+
bgColorHoverbrownDark,
|
|
2353
|
+
bColorbrownDark,
|
|
2354
|
+
bColorHoverbrownDark,
|
|
2355
|
+
lineHeight0,
|
|
2356
|
+
lineHeight1,
|
|
2357
|
+
lineHeight2,
|
|
2358
|
+
lineHeight3,
|
|
2359
|
+
lineHeight4,
|
|
2360
|
+
lineHeight5,
|
|
2361
|
+
lineHeight6,
|
|
2362
|
+
lineHeight7,
|
|
2363
|
+
lineHeight8,
|
|
2364
|
+
lineHeight9,
|
|
2365
|
+
lineHeight10,
|
|
2366
|
+
lineHeight11,
|
|
2367
|
+
lineHeight12,
|
|
2368
|
+
lineHeight13,
|
|
2369
|
+
lineHeight14,
|
|
2370
|
+
lineHeight15,
|
|
2371
|
+
lineHeight16,
|
|
2372
|
+
lineHeight17,
|
|
2373
|
+
lineHeight18,
|
|
2374
|
+
lineHeight19,
|
|
2375
|
+
lineHeight20,
|
|
2376
|
+
cursorauto,
|
|
2377
|
+
cursordefault,
|
|
2378
|
+
cursornone,
|
|
2379
|
+
"cursorcontext-menu": "qC",
|
|
2380
|
+
cursorhelp,
|
|
2381
|
+
cursorpointer,
|
|
2382
|
+
cursorprogress,
|
|
2383
|
+
cursorwait,
|
|
2384
|
+
cursorcell,
|
|
2385
|
+
cursorcrosshair,
|
|
2386
|
+
cursortext,
|
|
2387
|
+
"cursorvertical-text": "qK",
|
|
2388
|
+
cursoralias,
|
|
2389
|
+
cursorcopy,
|
|
2390
|
+
cursormove,
|
|
2391
|
+
"cursorno-drop": "qO",
|
|
2392
|
+
"cursornot-allowed": "qP",
|
|
2393
|
+
"cursore-resize": "qQ",
|
|
2394
|
+
"cursorn-resize": "qR",
|
|
2395
|
+
"cursorne-resize": "qS",
|
|
2396
|
+
"cursornw-resize": "qT",
|
|
2397
|
+
"cursors-resize": "qU",
|
|
2398
|
+
"cursorse-resize": "qV",
|
|
2399
|
+
"cursorsw-resize": "qW",
|
|
2400
|
+
"cursorw-resize": "qX",
|
|
2401
|
+
"cursorew-resize": "qY",
|
|
2402
|
+
"cursorns-resize": "qZ",
|
|
2403
|
+
"cursornesw-resize": "q0",
|
|
2404
|
+
"cursornwse-resize": "q1",
|
|
2405
|
+
"cursorcol-resize": "q2",
|
|
2406
|
+
"cursorrow-resize": "q3",
|
|
2407
|
+
"cursorall-scroll": "q4",
|
|
2408
|
+
"cursorzoom-in": "q5",
|
|
2409
|
+
"cursorzoom-out": "q6",
|
|
2410
|
+
cursorgrab,
|
|
2411
|
+
cursorgrabbing,
|
|
2412
|
+
zIndex0,
|
|
2413
|
+
zIndex1,
|
|
2414
|
+
zIndex2,
|
|
2415
|
+
zIndex3,
|
|
2416
|
+
zIndex4,
|
|
2417
|
+
zIndex5,
|
|
2418
|
+
zIndex6,
|
|
2419
|
+
zIndex7,
|
|
2420
|
+
zIndex8,
|
|
2421
|
+
zIndex9,
|
|
2422
|
+
zIndex10,
|
|
2423
|
+
zIndex11,
|
|
2424
|
+
zIndex12,
|
|
2425
|
+
zIndex13,
|
|
2426
|
+
zIndex14,
|
|
2427
|
+
zIndex15,
|
|
2428
|
+
zIndex16,
|
|
2429
|
+
zIndex17,
|
|
2430
|
+
zIndex18,
|
|
2431
|
+
zIndex19,
|
|
2432
|
+
zIndex20,
|
|
2433
|
+
overflowauto,
|
|
2434
|
+
overflowXauto,
|
|
2435
|
+
overflowYauto,
|
|
2436
|
+
overflowhidden,
|
|
2437
|
+
overflowXhidden,
|
|
2438
|
+
overflowYhidden,
|
|
2439
|
+
overflowscroll,
|
|
2440
|
+
overflowXscroll,
|
|
2441
|
+
overflowYscroll,
|
|
2442
|
+
overflowvisible,
|
|
2443
|
+
overflowXvisible,
|
|
2444
|
+
overflowYvisible,
|
|
2445
|
+
opacity10,
|
|
2446
|
+
opacity20,
|
|
2447
|
+
opacity30,
|
|
2448
|
+
opacity40,
|
|
2449
|
+
opacity50,
|
|
2450
|
+
opacity60,
|
|
2451
|
+
opacity70,
|
|
2452
|
+
opacity80,
|
|
2453
|
+
opacity90,
|
|
2454
|
+
opacity100,
|
|
2455
|
+
fontSize6,
|
|
2456
|
+
fontSize8,
|
|
2457
|
+
fontSize10,
|
|
2458
|
+
fontSize12,
|
|
2459
|
+
fontSize14,
|
|
2460
|
+
fontSize16,
|
|
2461
|
+
fontSize18,
|
|
2462
|
+
fontSize20,
|
|
2463
|
+
fontSize22,
|
|
2464
|
+
fontSize24,
|
|
2465
|
+
fontSize26,
|
|
2466
|
+
fontSize28,
|
|
2467
|
+
fontSize30,
|
|
2468
|
+
fontSize32,
|
|
2469
|
+
fontSize34,
|
|
2470
|
+
fontSize36,
|
|
2471
|
+
fontSize38,
|
|
2472
|
+
fontSize40,
|
|
2473
|
+
fontSize42,
|
|
2474
|
+
fontSize44,
|
|
2475
|
+
fontSize46,
|
|
2476
|
+
fontSize48,
|
|
2477
|
+
fontSize50,
|
|
2478
|
+
fontWeight100,
|
|
2479
|
+
fontWeight200,
|
|
2480
|
+
fontWeight300,
|
|
2481
|
+
fontWeight400,
|
|
2482
|
+
fontWeight500,
|
|
2483
|
+
fontWeight600,
|
|
2484
|
+
fontWeight700,
|
|
2485
|
+
fontWeight800,
|
|
2486
|
+
fontWeight900,
|
|
2487
|
+
textDecorationnone,
|
|
2488
|
+
textDecorationunderline,
|
|
2489
|
+
textAlignleft,
|
|
2490
|
+
textAlignright,
|
|
2491
|
+
textAligncenter,
|
|
2492
|
+
textTransformnone,
|
|
2493
|
+
textTransformcapitalize,
|
|
2494
|
+
textTransformlowercase,
|
|
2495
|
+
textTransformuppercase,
|
|
2496
|
+
flexWrapnowrap,
|
|
2497
|
+
flexWrapwrap,
|
|
2498
|
+
"flexWrapwrap-reverse": "sx",
|
|
2499
|
+
justifyContentstart,
|
|
2500
|
+
justifyContentend,
|
|
2501
|
+
"justifyContentflex-start": "sA",
|
|
2502
|
+
"justifyContentflex-end": "sB",
|
|
2503
|
+
justifyContentcenter,
|
|
2504
|
+
justifyContentleft,
|
|
2505
|
+
justifyContentright,
|
|
2506
|
+
"justifyContentspace-between": "sF",
|
|
2507
|
+
"justifyContentspace-around": "sG",
|
|
2508
|
+
"justifyContentspace-evenly": "sH",
|
|
2509
|
+
justifyContentstretch,
|
|
2510
|
+
alignItemsstretch,
|
|
2511
|
+
"alignItemsflex-start": "sK",
|
|
2512
|
+
"alignItemsflex-end": "sL",
|
|
2513
|
+
alignItemscenter,
|
|
2514
|
+
alignItemsbaseline,
|
|
2515
|
+
alignItemsstart,
|
|
2516
|
+
alignItemsend,
|
|
2517
|
+
"alignItemsself-start": "sQ",
|
|
2518
|
+
"alignItemsself-end": "sR",
|
|
2519
|
+
"alignContentflex-start": "sS",
|
|
2520
|
+
"alignContentflex-end": "sT",
|
|
2521
|
+
alignContentcenter,
|
|
2522
|
+
"alignContentspace-between": "sV",
|
|
2523
|
+
"alignContentspace-around": "sW",
|
|
2524
|
+
"alignContentspace-evenly": "sX",
|
|
2525
|
+
alignContentstretch,
|
|
2526
|
+
alignContentstart,
|
|
2527
|
+
alignContentend,
|
|
2528
|
+
alignContentbaseline,
|
|
2529
|
+
flex1true,
|
|
2530
|
+
directionrow,
|
|
2531
|
+
"directionrow-reverse": "s4",
|
|
2532
|
+
directioncolumn,
|
|
2533
|
+
"directioncolumn-reverse": "s6",
|
|
2534
|
+
gap0,
|
|
2535
|
+
rowGap0,
|
|
2536
|
+
columnGap0,
|
|
2537
|
+
order0,
|
|
2538
|
+
flexGrow0,
|
|
2539
|
+
flexShrink0,
|
|
2540
|
+
gap1,
|
|
2541
|
+
rowGap1,
|
|
2542
|
+
columnGap1,
|
|
2543
|
+
order1,
|
|
2544
|
+
flexGrow1,
|
|
2545
|
+
flexShrink1,
|
|
2546
|
+
gap2,
|
|
2547
|
+
rowGap2,
|
|
2548
|
+
columnGap2,
|
|
2549
|
+
order2,
|
|
2550
|
+
flexGrow2,
|
|
2551
|
+
flexShrink2,
|
|
2552
|
+
gap3,
|
|
2553
|
+
rowGap3,
|
|
2554
|
+
columnGap3,
|
|
2555
|
+
order3,
|
|
2556
|
+
flexGrow3,
|
|
2557
|
+
flexShrink3,
|
|
2558
|
+
gap4,
|
|
2559
|
+
rowGap4,
|
|
2560
|
+
columnGap4,
|
|
2561
|
+
order4,
|
|
2562
|
+
flexGrow4,
|
|
2563
|
+
flexShrink4,
|
|
2564
|
+
gap5,
|
|
2565
|
+
rowGap5,
|
|
2566
|
+
columnGap5,
|
|
2567
|
+
order5,
|
|
2568
|
+
flexGrow5,
|
|
2569
|
+
flexShrink5,
|
|
2570
|
+
gap6,
|
|
2571
|
+
rowGap6,
|
|
2572
|
+
columnGap6,
|
|
2573
|
+
order6,
|
|
2574
|
+
flexGrow6,
|
|
2575
|
+
flexShrink6,
|
|
2576
|
+
gap7,
|
|
2577
|
+
rowGap7,
|
|
2578
|
+
columnGap7,
|
|
2579
|
+
order7,
|
|
2580
|
+
flexGrow7,
|
|
2581
|
+
flexShrink7,
|
|
2582
|
+
gap8,
|
|
2583
|
+
rowGap8,
|
|
2584
|
+
columnGap8,
|
|
2585
|
+
order8,
|
|
2586
|
+
flexGrow8,
|
|
2587
|
+
flexShrink8,
|
|
2588
|
+
gap9,
|
|
2589
|
+
rowGap9,
|
|
2590
|
+
columnGap9,
|
|
2591
|
+
order9,
|
|
2592
|
+
flexGrow9,
|
|
2593
|
+
flexShrink9,
|
|
2594
|
+
gap10,
|
|
2595
|
+
rowGap10,
|
|
2596
|
+
columnGap10,
|
|
2597
|
+
order10,
|
|
2598
|
+
flexGrow10,
|
|
2599
|
+
flexShrink10,
|
|
2600
|
+
gap11,
|
|
2601
|
+
rowGap11,
|
|
2602
|
+
columnGap11,
|
|
2603
|
+
order11,
|
|
2604
|
+
flexGrow11,
|
|
2605
|
+
flexShrink11,
|
|
2606
|
+
gap12,
|
|
2607
|
+
rowGap12,
|
|
2608
|
+
columnGap12,
|
|
2609
|
+
order12,
|
|
2610
|
+
flexGrow12,
|
|
2611
|
+
flexShrink12,
|
|
2612
|
+
gap13,
|
|
2613
|
+
rowGap13,
|
|
2614
|
+
columnGap13,
|
|
2615
|
+
order13,
|
|
2616
|
+
flexGrow13,
|
|
2617
|
+
flexShrink13,
|
|
2618
|
+
gap14,
|
|
2619
|
+
rowGap14,
|
|
2620
|
+
columnGap14,
|
|
2621
|
+
order14,
|
|
2622
|
+
flexGrow14,
|
|
2623
|
+
flexShrink14,
|
|
2624
|
+
gap15,
|
|
2625
|
+
rowGap15,
|
|
2626
|
+
columnGap15,
|
|
2627
|
+
order15,
|
|
2628
|
+
flexGrow15,
|
|
2629
|
+
flexShrink15,
|
|
2630
|
+
gap16,
|
|
2631
|
+
rowGap16,
|
|
2632
|
+
columnGap16,
|
|
2633
|
+
order16,
|
|
2634
|
+
flexGrow16,
|
|
2635
|
+
flexShrink16,
|
|
2636
|
+
gap17,
|
|
2637
|
+
rowGap17,
|
|
2638
|
+
columnGap17,
|
|
2639
|
+
order17,
|
|
2640
|
+
flexGrow17,
|
|
2641
|
+
flexShrink17,
|
|
2642
|
+
gap18,
|
|
2643
|
+
rowGap18,
|
|
2644
|
+
columnGap18,
|
|
2645
|
+
order18,
|
|
2646
|
+
flexGrow18,
|
|
2647
|
+
flexShrink18,
|
|
2648
|
+
gap19,
|
|
2649
|
+
rowGap19,
|
|
2650
|
+
columnGap19,
|
|
2651
|
+
order19,
|
|
2652
|
+
flexGrow19,
|
|
2653
|
+
flexShrink19,
|
|
2654
|
+
gap20,
|
|
2655
|
+
rowGap20,
|
|
2656
|
+
columnGap20,
|
|
2657
|
+
order20,
|
|
2658
|
+
flexGrow20,
|
|
2659
|
+
flexShrink20,
|
|
2660
|
+
alignSelfauto,
|
|
2661
|
+
"alignSelfflex-start": "va",
|
|
2662
|
+
"alignSelfflex-end": "vb",
|
|
2663
|
+
alignSelfcenter,
|
|
2664
|
+
alignSelfbaseline,
|
|
2665
|
+
alignSelfstretch
|
|
2666
|
+
};
|
|
2667
|
+
function Box(boxProps) {
|
|
2668
|
+
const {
|
|
2669
|
+
tag,
|
|
2670
|
+
children,
|
|
2671
|
+
props,
|
|
2672
|
+
className
|
|
2673
|
+
} = boxProps;
|
|
2674
|
+
const classNames = className ? [className, classes.box] : [classes.box];
|
|
2675
|
+
Object.entries(boxProps).forEach(([key, value]) => {
|
|
2676
|
+
const classToAdd = classes[key + value];
|
|
2677
|
+
classToAdd && classNames.push(classToAdd);
|
|
2678
|
+
});
|
|
2679
|
+
const boxTag = tag || "div";
|
|
2680
|
+
const tagProps = __spreadProps(__spreadValues({}, props), {
|
|
2681
|
+
className: classNames.join(" ")
|
|
2682
|
+
});
|
|
2683
|
+
const [isHover, setIsHover] = useState(false);
|
|
2684
|
+
const needsHoverState = typeof children === "function";
|
|
2685
|
+
if (needsHoverState) {
|
|
2686
|
+
tagProps.onMouseEnter = () => setIsHover(true);
|
|
2687
|
+
tagProps.onMouseLeave = () => setIsHover(false);
|
|
2688
|
+
}
|
|
2689
|
+
return React.createElement(boxTag, tagProps, needsHoverState ? children({
|
|
2690
|
+
isHover
|
|
2691
|
+
}) : children);
|
|
2692
|
+
}
|
|
2693
|
+
export { Box as default };
|