@spiritov/ds.css 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/.vscode/settings.json +5 -0
  2. package/CNAME +1 -0
  3. package/LICENSE +21 -0
  4. package/README.md +2 -0
  5. package/dist/assets/fonts/nitrods-font.ttf +0 -0
  6. package/dist/assets/svg/alert_border.svg +1 -0
  7. package/dist/assets/svg/bottom_bar_bottom.svg +1 -0
  8. package/dist/assets/svg/bottom_bar_top.svg +1 -0
  9. package/dist/assets/svg/button.svg +1 -0
  10. package/dist/assets/svg/button_active.svg +1 -0
  11. package/dist/assets/svg/button_lg.svg +1 -0
  12. package/dist/assets/svg/button_lg_active.svg +1 -0
  13. package/dist/assets/svg/button_radio.svg +1 -0
  14. package/dist/assets/svg/button_square.svg +1 -0
  15. package/dist/assets/svg/button_square_active.svg +1 -0
  16. package/dist/assets/svg/details.svg +1 -0
  17. package/dist/assets/svg/details_head.svg +1 -0
  18. package/dist/assets/svg/details_output.svg +1 -0
  19. package/dist/assets/svg/favicon.svg +1 -0
  20. package/dist/assets/svg/grid_lg.svg +1 -0
  21. package/dist/assets/svg/info.svg +1 -0
  22. package/dist/assets/svg/info_border.svg +1 -0
  23. package/dist/assets/svg/info_square.svg +1 -0
  24. package/dist/assets/svg/input.svg +1 -0
  25. package/dist/assets/svg/input_after.svg +1 -0
  26. package/dist/assets/svg/input_before.svg +1 -0
  27. package/dist/assets/svg/pictochat_border.svg +1 -0
  28. package/dist/assets/svg/pictochat_message_border.svg +1 -0
  29. package/dist/assets/svg/pictochat_status.svg +1 -0
  30. package/dist/assets/svg/top_bar.svg +1 -0
  31. package/dist/ds.css +721 -0
  32. package/package.json +35 -0
  33. package/src/assets/fonts/nitrods-font.ttf +0 -0
  34. package/src/assets/svg/alert_border.svg +1 -0
  35. package/src/assets/svg/bottom_bar_bottom.svg +1 -0
  36. package/src/assets/svg/bottom_bar_top.svg +1 -0
  37. package/src/assets/svg/button.svg +1 -0
  38. package/src/assets/svg/button_active.svg +1 -0
  39. package/src/assets/svg/button_lg.svg +1 -0
  40. package/src/assets/svg/button_lg_active.svg +1 -0
  41. package/src/assets/svg/button_radio.svg +1 -0
  42. package/src/assets/svg/button_square.svg +1 -0
  43. package/src/assets/svg/button_square_active.svg +1 -0
  44. package/src/assets/svg/details.svg +1 -0
  45. package/src/assets/svg/details_head.svg +1 -0
  46. package/src/assets/svg/details_output.svg +1 -0
  47. package/src/assets/svg/favicon.svg +1 -0
  48. package/src/assets/svg/grid_lg.svg +1 -0
  49. package/src/assets/svg/info.svg +1 -0
  50. package/src/assets/svg/info_border.svg +1 -0
  51. package/src/assets/svg/info_square.svg +1 -0
  52. package/src/assets/svg/input.svg +1 -0
  53. package/src/assets/svg/input_after.svg +1 -0
  54. package/src/assets/svg/input_before.svg +1 -0
  55. package/src/assets/svg/pictochat_border.svg +1 -0
  56. package/src/assets/svg/pictochat_message_border.svg +1 -0
  57. package/src/assets/svg/pictochat_status.svg +1 -0
  58. package/src/assets/svg/top_bar.svg +1 -0
  59. package/src/ds.css +723 -0
  60. package/src/ds.html +133 -0
  61. package/src/input_tw_old.css +586 -0
  62. package/src/landing.html +346 -0
  63. package/src/output.css +812 -0
  64. package/src/test.html +67 -0
package/dist/ds.css ADDED
@@ -0,0 +1,721 @@
1
+ @font-face {
2
+ font-family: 'ds-system';
3
+ src: url('./assets/fonts/nitrods-font.ttf') format('truetype');
4
+ }
5
+
6
+ @theme {
7
+ /* font */
8
+ --font-system: 'ds-system', 'system-ui';
9
+
10
+ /* colors */
11
+ --color-ds-darkgrey: #494949;
12
+ --color-ds-info-bg: #282828;
13
+
14
+ --color-ds-pictochat-bg: #aaaaaa;
15
+ --color-ds-pictochat-border: #bababa;
16
+
17
+ --color-ds-grid-border: #c3c3c3;
18
+ --color-ds-grid-bg: #e3e3e3;
19
+
20
+ --color-ds-text-focus: #e36100;
21
+
22
+ --color-ds-loading: #fbd300;
23
+
24
+ --color-ds-theme-slate: #61829a;
25
+ --color-ds-theme-maroon: #ba4900;
26
+ --color-ds-theme-red: #fb0018;
27
+ --color-ds-theme-pink: #fb8afb;
28
+ --color-ds-theme-orange: #fb9200;
29
+ --color-ds-theme-yellow: #f3e300;
30
+ --color-ds-theme-neonyellow: #aafb00;
31
+ --color-ds-theme-lime: #00fb00;
32
+ --color-ds-theme-green: #00a238;
33
+ --color-ds-theme-teal: #49db8a;
34
+ --color-ds-theme-turquoise: #30baf3;
35
+ --color-ds-theme-blue: #0059f3;
36
+ --color-ds-theme-navy: #000092;
37
+ --color-ds-theme-darkpurple: #8a00d3;
38
+ --color-ds-theme-magenta: #d300eb;
39
+ --color-ds-theme-fuschia: #fb0092;
40
+ }
41
+
42
+ .ds-slate {
43
+ background-color: var(--color-ds-theme-slate);
44
+ }
45
+ .ds-maroon {
46
+ background-color: var(--color-ds-theme-maroon);
47
+ }
48
+ .ds-red {
49
+ background-color: var(--color-ds-theme-red);
50
+ }
51
+ .ds-pink {
52
+ background-color: var(--color-ds-theme-pink);
53
+ }
54
+ .ds-orange {
55
+ background-color: var(--color-ds-theme-orange);
56
+ }
57
+ .ds-yellow {
58
+ background-color: var(--color-ds-theme-yellow);
59
+ }
60
+ .ds-neonyellow {
61
+ background-color: var(--color-ds-theme-neonyellow);
62
+ }
63
+ .ds-lime {
64
+ background-color: var(--color-ds-theme-lime);
65
+ }
66
+ .ds-green {
67
+ background-color: var(--color-ds-theme-green);
68
+ }
69
+ .ds-teal {
70
+ background-color: var(--color-ds-theme-teal);
71
+ }
72
+ .ds-turquoise {
73
+ background-color: var(--color-ds-theme-turquoise);
74
+ }
75
+ .ds-blue {
76
+ background-color: var(--color-ds-theme-blue);
77
+ }
78
+ .ds-navy {
79
+ background-color: var(--color-ds-theme-navy);
80
+ }
81
+ .ds-darkpurple {
82
+ background-color: var(--color-ds-theme-darkpurple);
83
+ }
84
+ .ds-magenta {
85
+ background-color: var(--color-ds-theme-magenta);
86
+ }
87
+ .ds-fuschia {
88
+ background-color: var(--color-ds-theme-fuschia);
89
+ }
90
+
91
+ @layer base {
92
+ :root {
93
+ font-family: var(--font-system);
94
+ -webkit-font-smoothing: none;
95
+ }
96
+ }
97
+
98
+ /* input & button elements */
99
+
100
+ button,
101
+ input[type='text'] {
102
+ border-style: solid;
103
+ border-width: 2px;
104
+ padding-inline: 0.25rem;
105
+ text-wrap: nowrap;
106
+ }
107
+
108
+ input[type='text'] {
109
+ height: calc(0.25rem * 8.5);
110
+ width: calc(0.25rem * 80.5);
111
+ border-color: black;
112
+ color: white;
113
+ outline-style: none;
114
+ & *::selection {
115
+ background-color: var(--color-ds-text-focus);
116
+ }
117
+ &::selection {
118
+ background-color: var(--color-ds-text-focus);
119
+ }
120
+
121
+ background: url('./assets/svg/input.svg') -1px;
122
+ }
123
+
124
+ input[type='radio'] {
125
+ height: calc(0.25rem * 15.5);
126
+ width: calc(0.25rem * 48);
127
+ appearance: none;
128
+ border-style: solid;
129
+ border-width: 2px;
130
+ border-color: var(--color-ds-darkgrey);
131
+ background-image: url('./assets/svg/button_radio.svg');
132
+ }
133
+
134
+ input[type='radio']:checked {
135
+ background-blend-mode: hard-light;
136
+ }
137
+
138
+ button {
139
+ height: calc(0.25rem * 9);
140
+ width: calc(0.25rem * 40);
141
+ cursor: pointer;
142
+ border-color: var(--color-ds-darkgrey);
143
+ padding-inline: calc(0.25rem * 0.5);
144
+ background-blend-mode: hard-light;
145
+ background-image: url('./assets/svg/button.svg');
146
+ clip-path: polygon(
147
+ 2px 100%,
148
+ 2px calc(100% - 2px),
149
+ 0 calc(100% - 2px),
150
+ 0 2px,
151
+ 2px 2px,
152
+ 2px 0,
153
+ calc(100% - 2px) 0,
154
+ calc(100% - 2px) 2px,
155
+ 100% 2px,
156
+ 100% calc(100% - 2px),
157
+ calc(100% - 2px) calc(100% - 2px),
158
+ calc(100% - 2px) 100%
159
+ );
160
+ }
161
+
162
+ label {
163
+ display: flex;
164
+ flex-direction: column;
165
+ -webkit-user-select: none;
166
+ user-select: none;
167
+ }
168
+
169
+ button:active {
170
+ background-image: url('./assets/svg/button_active.svg');
171
+ }
172
+
173
+ details > summary {
174
+ height: calc(0.25rem * 8.5);
175
+ width: calc(0.25rem * 111.5);
176
+ border-style: solid;
177
+ border-width: 2px;
178
+ padding-top: 1px;
179
+ text-align: center;
180
+
181
+ background-image: url('./assets/svg/details_head.svg');
182
+ list-style: none;
183
+ }
184
+
185
+ details:open > p {
186
+ height: calc(0.25rem * 23.5);
187
+ width: calc(0.25rem * 111);
188
+ border-inline-style: solid;
189
+ border-inline-width: 2px;
190
+ border-bottom-style: solid;
191
+ border-bottom-width: 2px;
192
+ padding-inline: calc(0.25rem * 0.5);
193
+ padding-top: 1px;
194
+ text-align: center;
195
+
196
+ background-image: url('./assets/svg/details.svg');
197
+ }
198
+
199
+ label > span,
200
+ legend {
201
+ height: calc(0.25rem * 7.5);
202
+ padding-left: 0.25rem;
203
+ vertical-align: text-bottom;
204
+ }
205
+
206
+ /* classes */
207
+
208
+ .alert {
209
+ display: flex;
210
+ height: calc(0.25rem * 33.5);
211
+ width: calc(0.25rem * 103);
212
+ align-content: center;
213
+ align-items: center;
214
+ justify-content: space-between;
215
+ gap: calc(0.25rem * 5.5);
216
+ border-style: solid;
217
+ border-width: 16px;
218
+ padding-inline: calc(0.25rem * 5);
219
+ text-align: center;
220
+ color: var(--color-white);
221
+ & *::selection {
222
+ background-color: var(--color-ds-text-focus);
223
+ }
224
+ &::selection {
225
+ background-color: var(--color-ds-text-focus);
226
+ }
227
+
228
+ border-image: url('./assets/svg/alert_border.svg') 15;
229
+ background: repeating-linear-gradient(
230
+ black,
231
+ black 2px,
232
+ var(--color-ds-darkgrey) 2px,
233
+ var(--color-ds-darkgrey) 4px
234
+ );
235
+ background-size: 100% 4px;
236
+ clip-path: polygon(
237
+ /* bottom left */ 10px 100%,
238
+ 10px calc(100% - 2px),
239
+ 8px calc(100% - 2px),
240
+ 8px calc(100% - 4px),
241
+ 6px calc(100% - 4px),
242
+ 6px calc(100% - 6px),
243
+ 4px calc(100% - 6px),
244
+ 4px calc(100% - 8px),
245
+ 2px calc(100% - 8px),
246
+ 2px calc(100% - 10px),
247
+ 0 calc(100% - 10px),
248
+ /* top left */ 0 10px,
249
+ 2px 10px,
250
+ 2px 8px,
251
+ 4px 8px,
252
+ 4px 6px,
253
+ 6px 6px,
254
+ 6px 4px,
255
+ 8px 4px,
256
+ 8px 2px,
257
+ 10px 2px,
258
+ 10px 0,
259
+ /* top right */ calc(100% - 10px) 0,
260
+ calc(100% - 10px) 2px,
261
+ calc(100% - 8px) 2px,
262
+ calc(100% - 8px) 4px,
263
+ calc(100% - 6px) 4px,
264
+ calc(100% - 6px) 6px,
265
+ calc(100% - 4px) 6px,
266
+ calc(100% - 4px) 8px,
267
+ calc(100% - 2px) 8px,
268
+ calc(100% - 2px) 10px,
269
+ 100% 10px,
270
+ /* bottom left */ 100% calc(100% - 10px),
271
+ calc(100% - 2px) calc(100% - 10px),
272
+ calc(100% - 2px) calc(100% - 8px),
273
+ calc(100% - 4px) calc(100% - 8px),
274
+ calc(100% - 4px) calc(100% - 6px),
275
+ calc(100% - 6px) calc(100% - 6px),
276
+ calc(100% - 6px) calc(100% - 4px),
277
+ calc(100% - 8px) calc(100% - 4px),
278
+ calc(100% - 8px) calc(100% - 2px),
279
+ calc(100% - 10px) calc(100% - 2px),
280
+ calc(100% - 10px) 100%
281
+ );
282
+ }
283
+
284
+ .bar {
285
+ height: calc(0.25rem * 8);
286
+ border-bottom-style: solid;
287
+ border-bottom-width: 2px;
288
+ background-blend-mode: hard-light;
289
+
290
+ background-image: url('./assets/svg/top_bar.svg');
291
+ }
292
+
293
+ .bar-lg {
294
+ height: calc(0.25rem * 11.5);
295
+ border-bottom-style: solid;
296
+ border-bottom-width: 2px;
297
+ background-blend-mode: hard-light;
298
+
299
+ background-image: url('./assets/svg/bottom_bar_top.svg');
300
+ }
301
+
302
+ .bar-lg-reverse {
303
+ height: calc(0.25rem * 11.5);
304
+ border-top-style: solid;
305
+ border-top-width: 2px;
306
+ background-blend-mode: hard-light;
307
+
308
+ background-image: url('./assets/svg/bottom_bar_bottom.svg');
309
+ background-position-y: -2px;
310
+ }
311
+
312
+ .button-lg {
313
+ @apply w-55;
314
+ background-image: url('./assets/svg/button_lg.svg');
315
+ }
316
+
317
+ .button-square {
318
+ @apply size-9;
319
+ background-image: url('./assets/svg/button_square.svg');
320
+ }
321
+
322
+ .button-square:active {
323
+ background-image: url('./assets/svg/button_square_active.svg');
324
+ }
325
+
326
+ .button-lg:active {
327
+ background-image: url('./assets/svg/button_lg_active.svg');
328
+ }
329
+
330
+ button:active:not(:hover),
331
+ .button-lg:active:not(:hover),
332
+ .button-square:active:not(:hover) {
333
+ background-blend-mode: normal;
334
+ }
335
+
336
+ .ds-grid {
337
+ background:
338
+ repeating-linear-gradient(
339
+ transparent,
340
+ transparent 30px,
341
+ var(--color-ds-grid-border) 30px,
342
+ var(--color-ds-grid-border) 32px
343
+ ),
344
+ repeating-linear-gradient(
345
+ to right,
346
+ transparent,
347
+ transparent 30px,
348
+ var(--color-ds-grid-border) 30px,
349
+ var(--color-ds-grid-border) 32px
350
+ ),
351
+ repeating-linear-gradient(
352
+ white,
353
+ white 2px,
354
+ var(--color-ds-grid-bg) 2px,
355
+ var(--color-ds-grid-bg) 4px
356
+ );
357
+ }
358
+
359
+ .ds-grid-lg {
360
+ background-image: url('./assets/svg/grid_lg.svg');
361
+ }
362
+
363
+ /* .info-wrapper {
364
+ @apply flex pl-1 gap-0.5;
365
+ } */
366
+
367
+ .info {
368
+ display: flex;
369
+ height: calc(0.25rem * 24);
370
+ width: var(--container-lg);
371
+ gap: calc(0.25rem * 0.5);
372
+ border-top-style: solid;
373
+ border-top-width: 2px;
374
+ padding-block: calc(0.25rem * 0.5);
375
+ padding-left: 0.25rem;
376
+ background-blend-mode: hard-light;
377
+
378
+ background-image: url('./assets/svg/info.svg');
379
+ }
380
+
381
+ .info-container {
382
+ height: calc(0.25rem * 22.5);
383
+ width: calc(0.25rem * 104);
384
+ }
385
+
386
+ .info-label {
387
+ height: calc(0.25rem * 6.5);
388
+ padding-right: 0.25rem;
389
+ padding-left: calc(0.25rem * 2);
390
+ }
391
+
392
+ .info-square {
393
+ display: grid;
394
+ width: calc(0.25rem * 22.5);
395
+ height: calc(0.25rem * 22.5);
396
+ place-items: center;
397
+ border-style: solid;
398
+ border-width: 2px;
399
+ background-blend-mode: hard-light;
400
+
401
+ background-image: url('./assets/svg/info_square.svg');
402
+ }
403
+
404
+ .info-text {
405
+ height: calc(0.25rem * 16);
406
+ border-style: solid;
407
+ border-width: 4px;
408
+ background-color: var(--color-ds-info-bg);
409
+ padding-inline: 0.25rem;
410
+ color: var(--color-white);
411
+
412
+ border-image: url('./assets/svg/info_border.svg') 4;
413
+ clip-path: polygon(
414
+ /* bottom left */ 4px 100%,
415
+ 4px calc(100% - 2px),
416
+ 2px calc(100% - 2px),
417
+ 2px calc(100% - 4px),
418
+ 0px calc(100% - 4px),
419
+ /* top left */ 0 4px,
420
+ 2px 4px,
421
+ 2px 2px,
422
+ 4px 2px,
423
+ 4px 0px,
424
+ /* top right */ calc(100% - 4px) 0,
425
+ calc(100% - 4px) 2px,
426
+ calc(100% - 2px) 2px,
427
+ calc(100% - 2px) 4px,
428
+ calc(100% - 0px) 4px,
429
+ /* bottom left */ 100% calc(100% - 4px),
430
+ calc(100% - 2px) calc(100% - 4px),
431
+ calc(100% - 2px) calc(100% - 2px),
432
+ calc(100% - 4px) calc(100% - 2px),
433
+ calc(100% - 4px) calc(100% - 0px)
434
+ );
435
+ }
436
+
437
+ .input-lg {
438
+ width: calc(0.25rem * 104.5);
439
+ }
440
+
441
+ .input-wrapper {
442
+ display: flex;
443
+ align-items: center;
444
+ gap: calc(0.25rem * 0.5);
445
+ }
446
+
447
+ .input-before {
448
+ height: calc(0.25rem * 7.5);
449
+ width: calc(0.25rem * 7);
450
+ background-repeat: no-repeat;
451
+
452
+ background-image: url('./assets/svg/input_before.svg');
453
+ }
454
+
455
+ .input-after {
456
+ @apply h-7.5 w-7 bg-no-repeat;
457
+ background-image: url('./assets/svg/input_after.svg');
458
+ }
459
+
460
+ p,
461
+ .pictochat-window,
462
+ .pictochat-message,
463
+ .pictochat-status,
464
+ .pictochat-board {
465
+ clip-path: polygon(
466
+ /* bottom left */ 8px 100%,
467
+ 8px calc(100% - 2px),
468
+ 6px calc(100% - 2px),
469
+ 6px calc(100% - 4px),
470
+ 4px calc(100% - 4px),
471
+ 4px calc(100% - 6px),
472
+ 2px calc(100% - 6px),
473
+ 2px calc(100% - 8px),
474
+ 0 calc(100% - 8px),
475
+ /* top left */ 0 8px,
476
+ 2px 8px,
477
+ 2px 6px,
478
+ 4px 6px,
479
+ 4px 4px,
480
+ 6px 4px,
481
+ 6px 2px,
482
+ 8px 2px,
483
+ 8px 0px,
484
+ /* top right */ calc(100% - 8px) 0,
485
+ calc(100% - 8px) 2px,
486
+ calc(100% - 6px) 2px,
487
+ calc(100% - 6px) 4px,
488
+ calc(100% - 4px) 4px,
489
+ calc(100% - 4px) 6px,
490
+ calc(100% - 2px) 6px,
491
+ calc(100% - 2px) 8px,
492
+ 100% 8px,
493
+ /* bottom left */ 100% calc(100% - 8px),
494
+ calc(100% - 2px) calc(100% - 8px),
495
+ calc(100% - 2px) calc(100% - 6px),
496
+ calc(100% - 4px) calc(100% - 6px),
497
+ calc(100% - 4px) calc(100% - 4px),
498
+ calc(100% - 6px) calc(100% - 4px),
499
+ calc(100% - 6px) calc(100% - 2px),
500
+ calc(100% - 8px) calc(100% - 2px),
501
+ calc(100% - 8px) 100%
502
+ );
503
+ }
504
+
505
+ /* todo: include extra line at top? */
506
+ .pictochat-window {
507
+ display: flex;
508
+ flex-direction: column;
509
+ border-style: solid;
510
+ border-width: 8px;
511
+ gap: calc(0.25rem * 2);
512
+
513
+ background: repeating-linear-gradient(
514
+ var(--color-ds-pictochat-bg),
515
+ var(--color-ds-pictochat-bg) 6px,
516
+ var(--color-ds-pictochat-border) 6px,
517
+ var(--color-ds-pictochat-border) 8px
518
+ );
519
+ border-image: url('./assets/svg/pictochat_border.svg') 8;
520
+ }
521
+
522
+ .pictochat-window > div {
523
+ margin-inline: --calc(0.25rem * 0.5);
524
+ }
525
+
526
+ p,
527
+ .pictochat-message {
528
+ border-style: solid;
529
+ border-width: 8px;
530
+ background-color: white;
531
+ padding-inline: 0.25rem;
532
+
533
+ border-image: url('./assets/svg/pictochat_message_border.svg') 8;
534
+ }
535
+
536
+ .pictochat-status {
537
+ border-style: solid;
538
+ border-width: 8px;
539
+ background-color: black;
540
+ color: white;
541
+ padding-inline: 0.25rem;
542
+
543
+ border-image: url('./assets/svg/pictochat_status.svg') 8;
544
+ }
545
+
546
+ .radio-button {
547
+ position: relative;
548
+ height: calc(0.25rem * 15.5);
549
+ width: calc(0.25rem * 48);
550
+ background-clip: border-box;
551
+ }
552
+
553
+ .radio-button > label {
554
+ position: absolute;
555
+ top: calc(1 / 2 * 100%);
556
+ z-index: 10;
557
+ width: 100%;
558
+ translate: 0 calc(calc(1 / 2 * 100%) * -1);
559
+ text-align: center;
560
+ }
561
+
562
+ /* loading animation */
563
+
564
+ .loading-container {
565
+ display: grid;
566
+ width: fit-content;
567
+ height: fit-content;
568
+ flex-shrink: 0;
569
+ grid-template-columns: repeat(3, minmax(0, 1fr));
570
+ gap: calc(0.25rem * 0.5);
571
+ }
572
+
573
+ .loading-container > div {
574
+ background-color: var(--color-ds-loading);
575
+ width: calc(0.25rem * 1.5);
576
+ height: calc(0.25rem * 1.5);
577
+ }
578
+
579
+ @keyframes loading-1 {
580
+ 12.5%,
581
+ 37.5% {
582
+ opacity: 1;
583
+ }
584
+ 37.51%,
585
+ 75% {
586
+ opacity: 0;
587
+ }
588
+ 75.01%,
589
+ 100% {
590
+ opacity: 1;
591
+ }
592
+ }
593
+
594
+ @keyframes loading-2 {
595
+ 0%,
596
+ 50% {
597
+ opacity: 1;
598
+ }
599
+ 50.01%,
600
+ 87.5% {
601
+ opacity: 0;
602
+ }
603
+ 87.51%,
604
+ 100% {
605
+ opacity: 1;
606
+ }
607
+ }
608
+
609
+ @keyframes loading-3 {
610
+ 0%,
611
+ 62.5% {
612
+ opacity: 1;
613
+ }
614
+ 62.51%,
615
+ 100% {
616
+ opacity: 0;
617
+ }
618
+ }
619
+
620
+ @keyframes loading-6 {
621
+ 0%,
622
+ 12.5% {
623
+ opacity: 0;
624
+ }
625
+ 12.51%,
626
+ 75% {
627
+ opacity: 1;
628
+ }
629
+ 75.01%,
630
+ 100% {
631
+ opacity: 0;
632
+ }
633
+ }
634
+
635
+ @keyframes loading-9 {
636
+ 0%,
637
+ 25% {
638
+ opacity: 0;
639
+ }
640
+ 25.51%,
641
+ 87.5% {
642
+ opacity: 1;
643
+ }
644
+ 87.51%,
645
+ 100% {
646
+ opacity: 0;
647
+ }
648
+ }
649
+
650
+ @keyframes loading-8 {
651
+ 0%,
652
+ 37.5% {
653
+ opacity: 0;
654
+ }
655
+ 37.51%,
656
+ 100% {
657
+ opacity: 1;
658
+ }
659
+ }
660
+
661
+ @keyframes loading-7 {
662
+ 0%,
663
+ 12.5% {
664
+ opacity: 1;
665
+ }
666
+ 12.51%,
667
+ 50% {
668
+ opacity: 0;
669
+ }
670
+ 50.01%,
671
+ 100% {
672
+ opacity: 1;
673
+ }
674
+ }
675
+
676
+ @keyframes loading-4 {
677
+ 0%,
678
+ 25% {
679
+ opacity: 1;
680
+ }
681
+ 25.01%,
682
+ 62.5% {
683
+ opacity: 0;
684
+ }
685
+ 62.51%,
686
+ 100% {
687
+ opacity: 1;
688
+ }
689
+ }
690
+
691
+ .loading-1 {
692
+ animation: 533.33ms infinite loading-1;
693
+ }
694
+
695
+ .loading-2 {
696
+ animation: 533.33ms infinite loading-2;
697
+ }
698
+
699
+ .loading-3 {
700
+ animation: 533.33ms infinite loading-3;
701
+ }
702
+
703
+ .loading-4 {
704
+ animation: 533.33ms infinite loading-4;
705
+ }
706
+
707
+ .loading-6 {
708
+ animation: 533.33ms infinite loading-6;
709
+ }
710
+
711
+ .loading-7 {
712
+ animation: 533.33ms infinite loading-7;
713
+ }
714
+
715
+ .loading-8 {
716
+ animation: 533.33ms infinite loading-8;
717
+ }
718
+
719
+ .loading-9 {
720
+ animation: 533.33ms infinite loading-9;
721
+ }