architwin 1.14.7 → 1.14.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/architwin.js +1 -1
- package/lib/atwinui/components/toolbar/i18n.js +19 -1
- package/lib/atwinui/components/toolbar/modelControlsPane.js +1 -1
- package/lib/atwinui/components/toolbar/spacePartition/roomFormPane.d.ts +24 -1
- package/lib/atwinui/components/toolbar/spacePartition/roomFormPane.js +754 -211
- package/lib/atwinui/components/toolbar/spacePartition/roomTreePane.d.ts +7 -1
- package/lib/atwinui/components/toolbar/spacePartition/roomTreePane.js +104 -9
- package/lib/atwinui/events.js +36 -5
- package/lib/loaders/polydrawerLoader.d.ts +13 -3
- package/lib/loaders/polydrawerLoader.js +329 -55
- package/lib/math/geometry.d.ts +3 -2
- package/lib/math/geometry.js +23 -9
- package/lib/types.d.ts +30 -0
- package/lib/types.js +1 -0
- package/package.json +1 -1
- package/static/atwinui.css +252 -233
- package/static/utility.css +729 -277
package/static/utility.css
CHANGED
|
@@ -4,38 +4,40 @@
|
|
|
4
4
|
height: calc(100vh - 64px);
|
|
5
5
|
} */
|
|
6
6
|
|
|
7
|
-
.at_has_border{
|
|
8
|
-
border: 3px solid
|
|
7
|
+
.at_has_border {
|
|
8
|
+
border: 3px solid;
|
|
9
9
|
}
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
|
|
11
|
+
.at_h-responsive-64 {
|
|
12
|
+
height: calc(100vh - 64px);
|
|
12
13
|
}
|
|
13
14
|
|
|
14
|
-
.at_h-responsive-10{
|
|
15
|
-
|
|
15
|
+
.at_h-responsive-10 {
|
|
16
|
+
height: calc(100vh - 10px);
|
|
16
17
|
}
|
|
17
18
|
|
|
18
|
-
.at_h-responsive-264{
|
|
19
|
-
|
|
19
|
+
.at_h-responsive-264 {
|
|
20
|
+
height: calc(100vh - 264px);
|
|
20
21
|
}
|
|
21
22
|
|
|
22
|
-
.at_h-responsive-250{
|
|
23
|
-
|
|
23
|
+
.at_h-responsive-250 {
|
|
24
|
+
height: calc(100vh - 250px);
|
|
24
25
|
}
|
|
25
26
|
|
|
26
|
-
.at_h-responsive-268{
|
|
27
|
-
|
|
27
|
+
.at_h-responsive-268 {
|
|
28
|
+
height: calc(100vh - 268px);
|
|
28
29
|
}
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
|
|
31
|
+
.at_h-responsive-290 {
|
|
32
|
+
height: calc(100vh - 290px)
|
|
31
33
|
}
|
|
32
34
|
|
|
33
|
-
.at_h-responsive-304{
|
|
34
|
-
height: calc(100vh - 304px)
|
|
35
|
+
.at_h-responsive-304 {
|
|
36
|
+
height: calc(100vh - 304px)
|
|
35
37
|
}
|
|
36
38
|
|
|
37
|
-
.at_h-responsive-650{
|
|
38
|
-
|
|
39
|
+
.at_h-responsive-650 {
|
|
40
|
+
height: calc(100vh - 650px);
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
.at_w-responsive-61{
|
|
@@ -45,39 +47,40 @@ height: calc(100vh - 304px)
|
|
|
45
47
|
padding: 0.5rem;
|
|
46
48
|
}
|
|
47
49
|
|
|
48
|
-
.at_px-1{
|
|
49
|
-
padding:0 0.2rem;
|
|
50
|
+
.at_px-1 {
|
|
51
|
+
padding: 0 0.2rem;
|
|
50
52
|
}
|
|
51
53
|
|
|
52
|
-
.at_px-2{
|
|
53
|
-
padding:0 0.5rem;
|
|
54
|
+
.at_px-2 {
|
|
55
|
+
padding: 0 0.5rem;
|
|
54
56
|
}
|
|
55
57
|
|
|
56
|
-
.at_py-2{
|
|
57
|
-
padding:0.5rem 0;
|
|
58
|
+
.at_py-2 {
|
|
59
|
+
padding: 0.5rem 0;
|
|
58
60
|
}
|
|
59
61
|
|
|
60
|
-
.at_py-3{
|
|
61
|
-
padding:0.75rem 0;
|
|
62
|
+
.at_py-3 {
|
|
63
|
+
padding: 0.75rem 0;
|
|
62
64
|
}
|
|
63
65
|
|
|
64
|
-
.at_pt-2{
|
|
65
|
-
padding-top:0.5rem
|
|
66
|
+
.at_pt-2 {
|
|
67
|
+
padding-top: 0.5rem;
|
|
66
68
|
}
|
|
67
69
|
|
|
68
|
-
.at_mb-2{
|
|
70
|
+
.at_mb-2 {
|
|
69
71
|
margin-bottom: 5px;
|
|
70
72
|
}
|
|
73
|
+
|
|
71
74
|
.at_w-auto {
|
|
72
75
|
width: auto;
|
|
73
76
|
}
|
|
74
77
|
|
|
75
78
|
.at_w-full {
|
|
76
|
-
|
|
79
|
+
width: 100%;
|
|
77
80
|
}
|
|
78
81
|
|
|
79
82
|
.at_w-screen {
|
|
80
|
-
width: 100vw;
|
|
83
|
+
width: 100vw;
|
|
81
84
|
}
|
|
82
85
|
|
|
83
86
|
.at_w-1 {
|
|
@@ -137,239 +140,242 @@ width: 100vw;
|
|
|
137
140
|
}
|
|
138
141
|
|
|
139
142
|
.at_mx-w-18 {
|
|
140
|
-
max-width: 18rem
|
|
143
|
+
max-width: 18rem;
|
|
144
|
+
;
|
|
141
145
|
}
|
|
142
146
|
|
|
143
147
|
/* Height Utility Classes */
|
|
144
148
|
|
|
145
149
|
.at_h-auto {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
.at_h-1 {
|
|
150
|
-
height: 0.25rem;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.at_h-2 {
|
|
154
|
-
height: 0.5rem;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.at_h-3 {
|
|
158
|
-
height: 1rem;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.at_h-4 {
|
|
162
|
-
height: 1.5rem;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.at_h-5 {
|
|
166
|
-
height: 3rem;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.at_h-6 {
|
|
170
|
-
height: 4rem;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.at_h-8 {
|
|
174
|
-
height: 6rem;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.at_h-10 {
|
|
178
|
-
height: 10rem;
|
|
179
|
-
}
|
|
150
|
+
height: auto;
|
|
151
|
+
}
|
|
180
152
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
153
|
+
.at_h-1 {
|
|
154
|
+
height: 0.25rem;
|
|
155
|
+
}
|
|
184
156
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
157
|
+
.at_h-2 {
|
|
158
|
+
height: 0.5rem;
|
|
159
|
+
}
|
|
188
160
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
161
|
+
.at_h-3 {
|
|
162
|
+
height: 1rem;
|
|
163
|
+
}
|
|
192
164
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
165
|
+
.at_h-4 {
|
|
166
|
+
height: 1.5rem;
|
|
167
|
+
}
|
|
196
168
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
.at_h-screen {
|
|
202
|
-
height: 100vh;
|
|
203
|
-
}
|
|
169
|
+
.at_h-5 {
|
|
170
|
+
height: 3rem;
|
|
171
|
+
}
|
|
204
172
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
173
|
+
.at_h-6 {
|
|
174
|
+
height: 4rem;
|
|
175
|
+
}
|
|
208
176
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
.at_h-min-25 {
|
|
214
|
-
min-height: 25vh;
|
|
215
|
-
}
|
|
177
|
+
.at_h-8 {
|
|
178
|
+
height: 6rem;
|
|
179
|
+
}
|
|
216
180
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
181
|
+
.at_h-10 {
|
|
182
|
+
height: 10rem;
|
|
183
|
+
}
|
|
220
184
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
185
|
+
.at_h-12 {
|
|
186
|
+
height: 12rem;
|
|
187
|
+
}
|
|
224
188
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
189
|
+
.at_h-14 {
|
|
190
|
+
height: 14rem;
|
|
191
|
+
}
|
|
228
192
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
193
|
+
.at_h-16 {
|
|
194
|
+
height: 16rem;
|
|
195
|
+
}
|
|
232
196
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
197
|
+
.at_h-18 {
|
|
198
|
+
height: 18rem;
|
|
199
|
+
}
|
|
236
200
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
201
|
+
.at_h-full {
|
|
202
|
+
height: 100%;
|
|
203
|
+
}
|
|
240
204
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
205
|
+
.at_h-screen {
|
|
206
|
+
height: 100vh;
|
|
207
|
+
}
|
|
244
208
|
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
209
|
+
.at_h-min-15 {
|
|
210
|
+
min-height: 15vh;
|
|
211
|
+
}
|
|
248
212
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
213
|
+
.at_h-min-20 {
|
|
214
|
+
min-height: 20vh;
|
|
215
|
+
}
|
|
252
216
|
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
217
|
+
.at_h-min-25 {
|
|
218
|
+
min-height: 25vh;
|
|
219
|
+
}
|
|
256
220
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
221
|
+
.at_h-min-40 {
|
|
222
|
+
min-height: 40vh;
|
|
223
|
+
}
|
|
260
224
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
225
|
+
.at_h-min-45 {
|
|
226
|
+
min-height: 45vh;
|
|
227
|
+
}
|
|
264
228
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
229
|
+
.at_h-min-50 {
|
|
230
|
+
min-height: 50vh;
|
|
231
|
+
}
|
|
268
232
|
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
233
|
+
.at_h-min-60 {
|
|
234
|
+
min-height: 60vh;
|
|
235
|
+
}
|
|
272
236
|
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
237
|
+
.at_h-min-64 {
|
|
238
|
+
min-height: 64vh;
|
|
239
|
+
}
|
|
276
240
|
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
241
|
+
.at_h-min-68 {
|
|
242
|
+
min-height: 68vh;
|
|
243
|
+
}
|
|
280
244
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
}
|
|
245
|
+
.at_h-min-70 {
|
|
246
|
+
min-height: 70vh;
|
|
247
|
+
}
|
|
285
248
|
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
249
|
+
.at_h-min-92 {
|
|
250
|
+
min-height: 92vh;
|
|
251
|
+
}
|
|
289
252
|
|
|
253
|
+
.at_h-min-98 {
|
|
254
|
+
min-height: 98vh;
|
|
255
|
+
}
|
|
290
256
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
.at_bolder {
|
|
295
|
-
font-weight: bolder;
|
|
296
|
-
}
|
|
257
|
+
.at_h-max-65 {
|
|
258
|
+
max-height: 65vh;
|
|
259
|
+
}
|
|
297
260
|
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
261
|
+
.at_h-max-77 {
|
|
262
|
+
max-height: 77vh;
|
|
263
|
+
}
|
|
301
264
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
265
|
+
.at_h-max-92 {
|
|
266
|
+
max-height: 92vh;
|
|
267
|
+
}
|
|
305
268
|
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
269
|
+
.at_h-max-95 {
|
|
270
|
+
max-height: 95vh;
|
|
271
|
+
}
|
|
309
272
|
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
273
|
+
.at_h-max-100 {
|
|
274
|
+
max-height: 100vh;
|
|
275
|
+
}
|
|
313
276
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
277
|
+
.at_rounded {
|
|
278
|
+
border-radius: 6px;
|
|
279
|
+
}
|
|
317
280
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
.at_text-xxl{
|
|
322
|
-
font-size: 32px;
|
|
323
|
-
}
|
|
281
|
+
.at_circled {
|
|
282
|
+
border-radius: 50%;
|
|
283
|
+
}
|
|
324
284
|
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
285
|
+
.at_disabled {
|
|
286
|
+
pointer-events: none;
|
|
287
|
+
opacity: 0.6;
|
|
288
|
+
}
|
|
328
289
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
290
|
+
.at_hidden {
|
|
291
|
+
display: none;
|
|
292
|
+
}
|
|
332
293
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
transition: transform 0.3s ease;
|
|
337
|
-
}
|
|
294
|
+
.at_hide {
|
|
295
|
+
visibility: hidden;
|
|
296
|
+
}
|
|
338
297
|
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
298
|
+
.at_bolder {
|
|
299
|
+
font-weight: bolder;
|
|
300
|
+
}
|
|
342
301
|
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
.at_mx-auto {
|
|
347
|
-
margin: auto;
|
|
348
|
-
}
|
|
302
|
+
.at_text_xxs {
|
|
303
|
+
font-size: 0.65em
|
|
304
|
+
}
|
|
349
305
|
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
306
|
+
.at_text_xs {
|
|
307
|
+
font-size: 0.75rem;
|
|
308
|
+
}
|
|
353
309
|
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
310
|
+
.at_text_sm {
|
|
311
|
+
font-size: 0.875rem;
|
|
312
|
+
}
|
|
357
313
|
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
314
|
+
.at_text_base {
|
|
315
|
+
font-size: 1rem;
|
|
316
|
+
}
|
|
361
317
|
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
318
|
+
.at_text_lg {
|
|
319
|
+
font-size: 1.125rem;
|
|
320
|
+
}
|
|
365
321
|
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
322
|
+
.at_text_xl {
|
|
323
|
+
font-size: 1.25rem;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.at_text-xxl {
|
|
327
|
+
font-size: 32px;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.at_text_white {
|
|
331
|
+
color: white;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.at_opacity_5 {
|
|
335
|
+
opacity: 50%
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.at_rotate_minus_90 {
|
|
339
|
+
display: inline-block;
|
|
340
|
+
transform: rotate(-90deg);
|
|
341
|
+
transition: transform 0.3s ease;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.at_pull_right {
|
|
345
|
+
float: right;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.at_pull_left {
|
|
349
|
+
float: left;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.at_mx-auto {
|
|
353
|
+
margin: auto;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.at_ml_0 {
|
|
357
|
+
margin-left: 0 !important;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.at_ml_1 {
|
|
361
|
+
margin-left: 0.25rem !important;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.at_ml_2 {
|
|
365
|
+
margin-left: 0.5rem !important;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.at_ml_3 {
|
|
369
|
+
margin-left: 0.75rem !important;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.at_ml_4 {
|
|
373
|
+
margin-left: 1rem !important;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.at_mb_0 {
|
|
377
|
+
margin-bottom: 0 !important;
|
|
378
|
+
}
|
|
373
379
|
|
|
374
380
|
/* Margin Bottom */
|
|
375
381
|
.at_mb_1 {
|
|
@@ -434,29 +440,29 @@ width: 100vw;
|
|
|
434
440
|
margin-bottom: 0.75rem !important;
|
|
435
441
|
}
|
|
436
442
|
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
.at_gap_1 {
|
|
442
|
-
gap: 0.25rem;
|
|
443
|
-
}
|
|
443
|
+
.at_mb_4 {
|
|
444
|
+
margin-bottom: 2rem !important;
|
|
445
|
+
}
|
|
444
446
|
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
447
|
+
.at_gap_1 {
|
|
448
|
+
gap: 0.25rem;
|
|
449
|
+
}
|
|
448
450
|
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
451
|
+
.at_gap_2 {
|
|
452
|
+
gap: 0.5rem;
|
|
453
|
+
}
|
|
452
454
|
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
455
|
+
.at_gap_3 {
|
|
456
|
+
gap: 0.75rem;
|
|
457
|
+
}
|
|
456
458
|
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
459
|
+
.at_gap_4 {
|
|
460
|
+
gap: 1rem;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.at_absolute {
|
|
464
|
+
position: absolute;
|
|
465
|
+
}
|
|
460
466
|
|
|
461
467
|
.at_inline_block{
|
|
462
468
|
display: inline-block
|
|
@@ -487,57 +493,467 @@ width: 100vw;
|
|
|
487
493
|
}
|
|
488
494
|
|
|
489
495
|
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
496
|
+
.no_scroll {
|
|
497
|
+
overflow: hidden !important;
|
|
498
|
+
}
|
|
493
499
|
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
500
|
+
/* Spinner container style */
|
|
501
|
+
.at_spinner {
|
|
502
|
+
border: 8px solid grey;
|
|
503
|
+
border-radius: 50%;
|
|
504
|
+
border-top: 8px solid #222;
|
|
505
|
+
width: 50px;
|
|
506
|
+
height: 50px;
|
|
507
|
+
position: absolute;
|
|
508
|
+
top: 45%;
|
|
509
|
+
left: 45%;
|
|
510
|
+
z-index: 2;
|
|
511
|
+
-webkit-animation: spin 2s linear infinite;
|
|
512
|
+
animation: spin 2s linear infinite;
|
|
513
|
+
display: none;
|
|
514
|
+
}
|
|
509
515
|
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
516
|
+
/* Safari */
|
|
517
|
+
@-webkit-keyframes spin {
|
|
518
|
+
0% {
|
|
519
|
+
-webkit-transform: rotate(0deg);
|
|
514
520
|
}
|
|
515
521
|
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
100% { transform: rotate(360deg); }
|
|
522
|
+
100% {
|
|
523
|
+
-webkit-transform: rotate(360deg);
|
|
519
524
|
}
|
|
525
|
+
}
|
|
520
526
|
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
transform: rotate(90deg);
|
|
527
|
+
@keyframes spin {
|
|
528
|
+
0% {
|
|
529
|
+
transform: rotate(0deg);
|
|
525
530
|
}
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
-webkit-transform: rotate(180deg);
|
|
529
|
-
transform: rotate(180deg);
|
|
530
|
-
}
|
|
531
|
-
.at_rotate-270 {
|
|
532
|
-
-ms-transform: rotate(270deg);
|
|
533
|
-
-webkit-transform: rotate(270deg);
|
|
534
|
-
transform: rotate(270deg);
|
|
535
|
-
}
|
|
536
|
-
.at_rotate-360 {
|
|
537
|
-
-ms-transform: rotate(360deg);
|
|
538
|
-
-webkit-transform: rotate(360deg);
|
|
531
|
+
|
|
532
|
+
100% {
|
|
539
533
|
transform: rotate(360deg);
|
|
540
534
|
}
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.at_rotate-90 {
|
|
538
|
+
-ms-transform: rotate(90deg);
|
|
539
|
+
-webkit-transform: rotate(90deg);
|
|
540
|
+
transform: rotate(90deg);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.at_rotate-180 {
|
|
544
|
+
-ms-transform: rotate(180deg);
|
|
545
|
+
-webkit-transform: rotate(180deg);
|
|
546
|
+
transform: rotate(180deg);
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.at_rotate-270 {
|
|
550
|
+
-ms-transform: rotate(270deg);
|
|
551
|
+
-webkit-transform: rotate(270deg);
|
|
552
|
+
transform: rotate(270deg);
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.at_rotate-360 {
|
|
556
|
+
-ms-transform: rotate(360deg);
|
|
557
|
+
-webkit-transform: rotate(360deg);
|
|
558
|
+
transform: rotate(360deg);
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.at_text_red_50 {
|
|
562
|
+
color: #fef2f2;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.at_text_red_100 {
|
|
566
|
+
color: #fee2e2;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.at_text_red_200 {
|
|
570
|
+
color: #fecaca;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.at_text_red_300 {
|
|
574
|
+
color: #fca5a5;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.at_text_red_400 {
|
|
578
|
+
color: #f87171;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.at_text_red_500 {
|
|
582
|
+
color: #ef4444;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.at_text_red_600 {
|
|
586
|
+
color: #dc2626;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.at_text_red_700 {
|
|
590
|
+
color: #b91c1c;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.at_text_red_800 {
|
|
594
|
+
color: #991b1b;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.at_text_red_900 {
|
|
598
|
+
color: #7f1d1d;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.at_text_red_950 {
|
|
602
|
+
color: #450a0a;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.at_text_yellow_50 {
|
|
606
|
+
color: #fefce8;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.at_text_yellow_100 {
|
|
610
|
+
color: #fef9c3;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.at_text_yellow_200 {
|
|
614
|
+
color: #fef08a;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.at_text_yellow_300 {
|
|
618
|
+
color: #fde047;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.at_text_yellow_400 {
|
|
622
|
+
color: #facc15;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.at_text_yellow_500 {
|
|
626
|
+
color: #eab308;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.at_text_yellow_600 {
|
|
630
|
+
color: #ca8a04;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.at_text_yellow_700 {
|
|
634
|
+
color: #a16207;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.at_text_yellow_800 {
|
|
638
|
+
color: #854d0e;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.at_text_yellow_900 {
|
|
642
|
+
color: #713f12;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.at_text_yellow_950 {
|
|
646
|
+
color: #422006;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.at_text_blue_50 {
|
|
650
|
+
color: #eff6ff;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.at_text_blue_100 {
|
|
654
|
+
color: #dbeafe;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.at_text_blue_200 {
|
|
658
|
+
color: #bfdbfe;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.at_text_blue_300 {
|
|
662
|
+
color: #93c5fd;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.at_text_blue_400 {
|
|
666
|
+
color: #60a5fa;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.at_text_blue_500 {
|
|
670
|
+
color: #3b82f6;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.at_text_blue_600 {
|
|
674
|
+
color: #2563eb;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.at_text_blue_700 {
|
|
678
|
+
color: #1d4ed8;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.at_text_blue_800 {
|
|
682
|
+
color: #1e40af;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.at_text_blue_900 {
|
|
686
|
+
color: #1e3a8a;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.at_text_blue_950 {
|
|
690
|
+
color: #172554;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.at_bg_red_50 {
|
|
694
|
+
background-color: #fef2f2;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.at_bg_red_100 {
|
|
698
|
+
background-color: #fee2e2;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.at_bg_red_200 {
|
|
702
|
+
background-color: #fecaca;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.at_bg_red_300 {
|
|
706
|
+
background-color: #fca5a5;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.at_bg_red_400 {
|
|
710
|
+
background-color: #f87171;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.at_bg_red_500 {
|
|
714
|
+
background-color: #ef4444;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.at_bg_red_600 {
|
|
718
|
+
background-color: #dc2626;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.at_bg_red_700 {
|
|
722
|
+
background-color: #b91c1c;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.at_bg_red_800 {
|
|
726
|
+
background-color: #991b1b;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.at_bg_red_900 {
|
|
730
|
+
background-color: #7f1d1d;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.at_bg_red_950 {
|
|
734
|
+
background-color: #450a0a;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.at_bg_yellow_50 {
|
|
738
|
+
background-color: #fefce8;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.at_bg_yellow_100 {
|
|
742
|
+
background-color: #fef9c3;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.at_bg_yellow_200 {
|
|
746
|
+
background-color: #fef08a;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.at_bg_yellow_300 {
|
|
750
|
+
background-color: #fde047;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.at_bg_yellow_400 {
|
|
754
|
+
background-color: #facc15;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.at_bg_yellow_500 {
|
|
758
|
+
background-color: #eab308;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.at_bg_yellow_600 {
|
|
762
|
+
background-color: #ca8a04;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.at_bg_yellow_700 {
|
|
766
|
+
background-color: #a16207;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.at_bg_yellow_800 {
|
|
770
|
+
background-color: #854d0e;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.at_bg_yellow_900 {
|
|
774
|
+
background-color: #713f12;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.at_bg_yellow_950 {
|
|
778
|
+
background-color: #422006;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.at_bg_blue_50 {
|
|
782
|
+
background-color: #eff6ff;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.at_bg_blue_100 {
|
|
786
|
+
background-color: #dbeafe;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
.at_bg_blue_200 {
|
|
790
|
+
background-color: #bfdbfe;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
.at_bg_blue_300 {
|
|
794
|
+
background-color: #93c5fd;
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
.at_bg_blue_400 {
|
|
798
|
+
background-color: #60a5fa;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.at_bg_blue_500 {
|
|
802
|
+
background-color: #3b82f6;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.at_bg_blue_600 {
|
|
806
|
+
background-color: #2563eb;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.at_bg_blue_700 {
|
|
810
|
+
background-color: #1d4ed8;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.at_bg_blue_800 {
|
|
814
|
+
background-color: #1e40af;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.at_bg_blue_900 {
|
|
818
|
+
background-color: #1e3a8a;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.at_bg_blue_950 {
|
|
822
|
+
background-color: #172554;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.at_border_red_50 {
|
|
826
|
+
border-color: #fef2f2;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.at_border_red_100 {
|
|
830
|
+
border-color: #fee2e2;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.at_border_red_200 {
|
|
834
|
+
border-color: #fecaca;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.at_border_red_300 {
|
|
838
|
+
border-color: #fca5a5;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.at_border_red_400 {
|
|
842
|
+
border-color: #f87171;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.at_border_red_500 {
|
|
846
|
+
border-color: #ef4444;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.at_border_red_600 {
|
|
850
|
+
border-color: #dc2626;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.at_border_red_700 {
|
|
854
|
+
border-color: #b91c1c;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.at_border_red_800 {
|
|
858
|
+
border-color: #991b1b;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.at_border_red_900 {
|
|
862
|
+
border-color: #7f1d1d;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.at_border_red_950 {
|
|
866
|
+
border-color: #450a0a;
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
.at_border_yellow_50 {
|
|
870
|
+
border-color: #fefce8;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.at_border_yellow_100 {
|
|
874
|
+
border-color: #fef9c3;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
.at_border_yellow_200 {
|
|
878
|
+
border-color: #fef08a;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.at_border_yellow_300 {
|
|
882
|
+
border-color: #fde047;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.at_border_yellow_400 {
|
|
886
|
+
border-color: #facc15;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
.at_border_yellow_500 {
|
|
890
|
+
border-color: #eab308;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.at_border_yellow_600 {
|
|
894
|
+
border-color: #ca8a04;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.at_border_yellow_700 {
|
|
898
|
+
border-color: #a16207;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
.at_border_yellow_800 {
|
|
902
|
+
border-color: #854d0e;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
.at_border_yellow_900 {
|
|
906
|
+
border-color: #713f12;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.at_border_yellow_950 {
|
|
910
|
+
border-color: #422006;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
.at_border_blue_50 {
|
|
915
|
+
border-color: #eff6ff;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.at_border_blue_100 {
|
|
919
|
+
border-color: #dbeafe;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.at_border_blue_200 {
|
|
923
|
+
border-color: #bfdbfe;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.at_border_blue_300 {
|
|
927
|
+
border-color: #93c5fd;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.at_border_blue_400 {
|
|
931
|
+
border-color: #60a5fa;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.at_border_blue_500 {
|
|
935
|
+
border-color: #3b82f6;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.at_border_blue_600 {
|
|
939
|
+
border-color: #2563eb;
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
.at_border_blue_700 {
|
|
943
|
+
border-color: #1d4ed8;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
.at_border_blue_800 {
|
|
947
|
+
border-color: #1e40af;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.at_border_blue_900 {
|
|
951
|
+
border-color: #1e3a8a;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.at_border_blue_950 {
|
|
955
|
+
border-color: #172554;
|
|
956
|
+
}
|
|
541
957
|
.at_text_red_50 { color: #fef2f2; }
|
|
542
958
|
.at_text_red_100 { color: #fee2e2; }
|
|
543
959
|
.at_text_red_200 { color: #fecaca; }
|
|
@@ -574,6 +990,18 @@ width: 100vw;
|
|
|
574
990
|
.at_text_blue_900 { color: #1e3a8a; }
|
|
575
991
|
.at_text_blue_950 { color: #172554; }
|
|
576
992
|
|
|
993
|
+
.at_text_yellowgreen_50 { color: #f7fee7; }
|
|
994
|
+
.at_text_yellowgreen_100 { color: #ecfccb; }
|
|
995
|
+
.at_text_yellowgreen_200 { color: #d9f99d; }
|
|
996
|
+
.at_text_yellowgreen_300 { color: #bef264; }
|
|
997
|
+
.at_text_yellowgreen_400 { color: #a3e635; }
|
|
998
|
+
.at_text_yellowgreen_500 { color: #84cc16; }
|
|
999
|
+
.at_text_yellowgreen_600 { color: #65a30d; }
|
|
1000
|
+
.at_text_yellowgreen_700 { color: #4d7c0f; }
|
|
1001
|
+
.at_text_yellowgreen_800 { color: #3f6212; }
|
|
1002
|
+
.at_text_yellowgreen_900 { color: #365314; }
|
|
1003
|
+
.at_text_yellowgreen_950 { color: #1a2e05; }
|
|
1004
|
+
|
|
577
1005
|
.at_bg_red_50 { background-color: #fef2f2; }
|
|
578
1006
|
.at_bg_red_100 { background-color: #fee2e2; }
|
|
579
1007
|
.at_bg_red_200 { background-color: #fecaca; }
|
|
@@ -610,6 +1038,18 @@ width: 100vw;
|
|
|
610
1038
|
.at_bg_blue_900 { background-color: #1e3a8a; }
|
|
611
1039
|
.at_bg_blue_950 { background-color: #172554; }
|
|
612
1040
|
|
|
1041
|
+
.at_bg_yellowgreen_50 { background-color: #f7fee7; }
|
|
1042
|
+
.at_bg_yellowgreen_50 { background-color: #ecfccb; }
|
|
1043
|
+
.at_bg_yellowgreen_50 { background-color: #d9f99d; }
|
|
1044
|
+
.at_bg_yellowgreen_50 { background-color: #bef264; }
|
|
1045
|
+
.at_bg_yellowgreen_50 { background-color: #a3e635; }
|
|
1046
|
+
.at_bg_yellowgreen_50 { background-color: #84cc16; }
|
|
1047
|
+
.at_bg_yellowgreen_50 { background-color: #65a30d; }
|
|
1048
|
+
.at_bg_yellowgreen_50 { background-color: #4d7c0f; }
|
|
1049
|
+
.at_bg_yellowgreen_50 { background-color: #3f6212; }
|
|
1050
|
+
.at_bg_yellowgreen_50 { background-color: #365314; }
|
|
1051
|
+
.at_bg_yellowgreen_50 { background-color: #1a2e05; }
|
|
1052
|
+
|
|
613
1053
|
.at_border_red_50 { border-color: #fef2f2; }
|
|
614
1054
|
.at_border_red_100 { border-color: #fee2e2; }
|
|
615
1055
|
.at_border_red_200 { border-color: #fecaca; }
|
|
@@ -646,3 +1086,15 @@ width: 100vw;
|
|
|
646
1086
|
.at_border_blue_800 { border-color: #1e40af; }
|
|
647
1087
|
.at_border_blue_900 { border-color: #1e3a8a; }
|
|
648
1088
|
.at_border_blue_950 { border-color: #172554; }
|
|
1089
|
+
|
|
1090
|
+
.at_border_yellowgreen_50 { border-color: #f7fee7; }
|
|
1091
|
+
.at_border_yellowgreen_100 { border-color: #ecfccb; }
|
|
1092
|
+
.at_border_yellowgreen_200 { border-color: #d9f99d; }
|
|
1093
|
+
.at_border_yellowgreen_300 { border-color: #bef264; }
|
|
1094
|
+
.at_border_yellowgreen_400 { border-color: #a3e635; }
|
|
1095
|
+
.at_border_yellowgreen_500 { border-color: #84cc16; }
|
|
1096
|
+
.at_border_yellowgreen_600 { border-color: #65a30d; }
|
|
1097
|
+
.at_border_yellowgreen_700 { border-color: #4d7c0f; }
|
|
1098
|
+
.at_border_yellowgreen_800 { border-color: #3f6212; }
|
|
1099
|
+
.at_border_yellowgreen_900 { border-color: #365314; }
|
|
1100
|
+
.at_border_yellowgreen_950 { border-color: #1a2e05; }
|