holygrail2 1.2.49 → 1.2.51

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/docs.css ADDED
@@ -0,0 +1,953 @@
1
+ *,
2
+ *::before,
3
+ *::after {
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ html,
8
+ body,
9
+ div,
10
+ span,
11
+ select,
12
+ object,
13
+ iframe,
14
+ h1,
15
+ h2,
16
+ h3,
17
+ h4,
18
+ h5,
19
+ h6,
20
+ p,
21
+ blockquote,
22
+ pre,
23
+ abbr,
24
+ address,
25
+ cite,
26
+ code,
27
+ del,
28
+ dfn,
29
+ em,
30
+ img,
31
+ ins,
32
+ kbd,
33
+ q,
34
+ samp,
35
+ small,
36
+ strong,
37
+ sub,
38
+ sup,
39
+ var,
40
+ b,
41
+ i,
42
+ dl,
43
+ dt,
44
+ dd,
45
+ ol,
46
+ ul,
47
+ li,
48
+ fieldset,
49
+ form,
50
+ label,
51
+ legend,
52
+ table,
53
+ caption,
54
+ tbody,
55
+ tfoot,
56
+ thead,
57
+ tr,
58
+ th,
59
+ td,
60
+ article,
61
+ aside,
62
+ figure,
63
+ footer,
64
+ header,
65
+ main,
66
+ menu,
67
+ nav,
68
+ section,
69
+ time,
70
+ mark,
71
+ audio,
72
+ video {
73
+ margin: 0;
74
+ padding: 0;
75
+ border: 0;
76
+ outline: 0;
77
+ font-size: 100%;
78
+ vertical-align: baseline;
79
+ background: transparent;
80
+ }
81
+
82
+ h1,
83
+ h2,
84
+ h3,
85
+ h4,
86
+ h5,
87
+ h6 {
88
+ margin: 0;
89
+ padding: 0;
90
+ }
91
+
92
+ article,
93
+ aside,
94
+ details,
95
+ figcaption,
96
+ figure,
97
+ footer,
98
+ header,
99
+ main,
100
+ menu,
101
+ nav,
102
+ section,
103
+ summary {
104
+ display: block;
105
+ }
106
+
107
+ img {
108
+ max-width: 100%;
109
+ border-width: 0;
110
+ vertical-align: middle;
111
+ }
112
+
113
+ input::-webkit-outer-spin-button,
114
+ input::-webkit-inner-spin-button {
115
+ -webkit-appearance: none;
116
+ margin: 0;
117
+ }
118
+
119
+ input[type=number] {
120
+ -moz-appearance: textfield;
121
+ }
122
+
123
+ :root {
124
+ --line-width: 1px;
125
+ }
126
+ @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
127
+ :root {
128
+ --line-width: 0.5px;
129
+ --line-width-negative: -0.5px;
130
+ }
131
+ }
132
+
133
+ button {
134
+ padding-inline: 0;
135
+ padding-block: 0;
136
+ }
137
+
138
+ @keyframes underline {
139
+ 0% {
140
+ width: 0;
141
+ }
142
+ 100% {
143
+ width: 100%;
144
+ }
145
+ }
146
+ @keyframes opacity {
147
+ 0% {
148
+ opacity: 0;
149
+ }
150
+ 100% {
151
+ opacity: 1;
152
+ }
153
+ }
154
+ @keyframes stretch {
155
+ 0% {
156
+ height: 0;
157
+ }
158
+ 100% {
159
+ height: 80px;
160
+ }
161
+ }
162
+ @keyframes fadeInDown {
163
+ from {
164
+ opacity: 0;
165
+ transform: translate(-50%, -100%);
166
+ }
167
+ to {
168
+ opacity: 1;
169
+ transform: translate(-50%, 0);
170
+ }
171
+ }
172
+ @keyframes bounce {
173
+ 0% {
174
+ transform: translateZ(0);
175
+ }
176
+ to {
177
+ transform: translate3d(0, -15px, 0);
178
+ }
179
+ }
180
+ @keyframes fadein {
181
+ from {
182
+ opacity: 0;
183
+ }
184
+ to {
185
+ opacity: 1;
186
+ }
187
+ }
188
+ @keyframes fadeout {
189
+ from {
190
+ opacity: 1;
191
+ }
192
+ to {
193
+ opacity: 0;
194
+ }
195
+ }
196
+ @keyframes spin {
197
+ 100% {
198
+ transform: rotate(-360deg);
199
+ }
200
+ }
201
+ @keyframes opendrawer {
202
+ from {
203
+ transform: translateX(100%);
204
+ }
205
+ to {
206
+ transform: translateX(0);
207
+ }
208
+ }
209
+ @keyframes closedrawer {
210
+ from {
211
+ transform: translateX(0);
212
+ }
213
+ to {
214
+ transform: translateX(100%);
215
+ }
216
+ }
217
+ @keyframes opendrawerRTL {
218
+ from {
219
+ transform: translateX(-100%);
220
+ }
221
+ to {
222
+ transform: translateX(0);
223
+ }
224
+ }
225
+ @keyframes closedrawerRTL {
226
+ from {
227
+ transform: translateX(0);
228
+ }
229
+ to {
230
+ transform: translateX(-100%);
231
+ }
232
+ }
233
+ @keyframes fadeInOverlay {
234
+ from {
235
+ opacity: 0;
236
+ }
237
+ to {
238
+ opacity: 0.15;
239
+ }
240
+ }
241
+ @keyframes fadeOutOverlay {
242
+ from {
243
+ opacity: 0.15;
244
+ }
245
+ to {
246
+ opacity: 0;
247
+ }
248
+ }
249
+ .duration-50 {
250
+ animation-duration: 50ms;
251
+ }
252
+
253
+ .duration-150 {
254
+ animation-duration: 150ms;
255
+ }
256
+
257
+ .duration-300 {
258
+ animation-duration: 300ms;
259
+ }
260
+
261
+ .duration-400 {
262
+ animation-duration: 400ms;
263
+ }
264
+
265
+ .duration-500 {
266
+ animation-duration: 500ms;
267
+ }
268
+
269
+ .duration-700 {
270
+ animation-duration: 700ms;
271
+ }
272
+
273
+ .duration-800 {
274
+ animation-duration: 800ms;
275
+ }
276
+
277
+ .duration-1000 {
278
+ animation-duration: 1000ms;
279
+ }
280
+
281
+ .slide-in {
282
+ animation: slide-right 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
283
+ }
284
+
285
+ .slide-out {
286
+ animation: slide-left 300ms cubic-bezier(0.39, 0.575, 0.565, 1) both;
287
+ }
288
+
289
+ .fade-in {
290
+ animation: fade-in 300ms ease-in-out both;
291
+ }
292
+
293
+ .fade-out {
294
+ animation: fade-out 150ms ease-in-out both;
295
+ }
296
+
297
+ .expand-top {
298
+ animation: scale-up-top 700ms ease-in-out both;
299
+ }
300
+
301
+ .collapse-top {
302
+ animation: scale-down-top 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
303
+ }
304
+
305
+ .guide section {
306
+ padding-bottom: 20px;
307
+ }
308
+ .guide .element-code {
309
+ width: 100%;
310
+ max-width: 500px;
311
+ min-height: 200px;
312
+ margin: 20px auto;
313
+ }
314
+ .guide .title-zone {
315
+ color: #000;
316
+ margin-bottom: 20px;
317
+ padding: 100px 0 10px;
318
+ }
319
+ .guide .site-main {
320
+ position: relative;
321
+ margin: 0 0 0 55px;
322
+ padding: 0 8px;
323
+ }
324
+ @media (min-width: 1280px) {
325
+ .guide .site-main {
326
+ margin: 0 0 0 180px;
327
+ }
328
+ }
329
+ .guide .mb-5 {
330
+ margin-bottom: 5px;
331
+ }
332
+ .guide .menu-lateral ul.list-clear li {
333
+ line-height: 1.2;
334
+ }
335
+ .guide .menu-lateral {
336
+ padding-left: 10px;
337
+ }
338
+ .guide .guide-logo-menu img {
339
+ padding-top: 20px;
340
+ }
341
+ .guide .guide-title {
342
+ color: #878787;
343
+ font-size: 11px;
344
+ font-family: Arial, Helvetica, sans-serif !important;
345
+ text-transform: uppercase;
346
+ }
347
+ .guide .guide-text {
348
+ text-align: center;
349
+ width: 100%;
350
+ color: #b7c1c8;
351
+ font-size: 8px;
352
+ font-family: Arial, Helvetica, sans-serif !important;
353
+ text-transform: uppercase;
354
+ padding: 10px 0;
355
+ float: left;
356
+ }
357
+ .guide .guide-text span {
358
+ width: 100%;
359
+ clear: both;
360
+ float: left;
361
+ }
362
+ .guide .menulateral {
363
+ position: fixed;
364
+ top: 62px;
365
+ overflow: auto;
366
+ height: calc(100vh - 62px);
367
+ font-size: 10px;
368
+ box-sizing: border-box;
369
+ width: 180px;
370
+ padding: 0 0 0 20px;
371
+ }
372
+ .guide .guide-hover {
373
+ text-decoration: none;
374
+ opacity: 0.6;
375
+ }
376
+ .guide table {
377
+ width: 100%;
378
+ max-width: 100%;
379
+ border-collapse: collapse;
380
+ caption-side: bottom;
381
+ text-align: left;
382
+ }
383
+ .guide table th:nth-child(1) {
384
+ width: 150px;
385
+ }
386
+ .guide table thead tr th,
387
+ .guide table thead tr td,
388
+ .guide table tbody tr th,
389
+ .guide table tbody tr td,
390
+ .guide table tfoot tr th,
391
+ .guide table tfoot tr td {
392
+ padding: 10px;
393
+ vertical-align: top;
394
+ border: 1px solid #eaeaea;
395
+ }
396
+ .guide table thead tr th p:last-child,
397
+ .guide table thead tr td p:last-child,
398
+ .guide table tbody tr th p:last-child,
399
+ .guide table tbody tr td p:last-child,
400
+ .guide table tfoot tr th p:last-child,
401
+ .guide table tfoot tr td p:last-child {
402
+ margin-bottom: 0;
403
+ }
404
+ .guide table td:first-child > code {
405
+ white-space: nowrap;
406
+ }
407
+ .guide table thead {
408
+ background-color: #363636;
409
+ color: #fff;
410
+ }
411
+ .guide table td:first-child {
412
+ color: #363636 !important;
413
+ }
414
+ .guide code {
415
+ background-color: #f1f1f1;
416
+ padding-left: 4px;
417
+ padding-right: 4px;
418
+ color: #6759bb;
419
+ }
420
+ .guide pre > code {
421
+ background-color: transparent;
422
+ }
423
+ .guide a {
424
+ text-decoration: none;
425
+ }
426
+ .guide .item-w {
427
+ width: 40px;
428
+ height: 40px;
429
+ padding: 4px;
430
+ border: 1px solid black;
431
+ }
432
+ .guide .item-i {
433
+ min-width: 20%;
434
+ min-height: 20%;
435
+ display: block;
436
+ border: 1px solid #fff;
437
+ box-sizing: border-box;
438
+ }
439
+ .guide .item-i:nth-child(1) {
440
+ background-color: #363636;
441
+ opacity: 0.93;
442
+ }
443
+ .guide .item-i:nth-child(2) {
444
+ background-color: #363636;
445
+ opacity: 0.83;
446
+ }
447
+ .guide .item-i:nth-child(3) {
448
+ background-color: #363636;
449
+ opacity: 0.79;
450
+ }
451
+ .guide .item-i:nth-child(4) {
452
+ background-color: #363636;
453
+ opacity: 0.72;
454
+ }
455
+ .guide .item-i:nth-child(5) {
456
+ background-color: #363636;
457
+ opacity: 0.65;
458
+ }
459
+ .guide .item-i:nth-child(6) {
460
+ background-color: #363636;
461
+ opacity: 0.58;
462
+ }
463
+ .guide .item-i:nth-child(7) {
464
+ background-color: #363636;
465
+ opacity: 0.51;
466
+ }
467
+ .guide .item-i:nth-child(8) {
468
+ background-color: #363636;
469
+ opacity: 0.44;
470
+ }
471
+ .guide .item-i:nth-child(9) {
472
+ background-color: #363636;
473
+ opacity: 0.37;
474
+ }
475
+ .guide .item-i:nth-child(10) {
476
+ background-color: #363636;
477
+ opacity: 0.3;
478
+ }
479
+ .guide .box-demo,
480
+ .guide .box-demo2 {
481
+ height: 100%;
482
+ box-sizing: border-box;
483
+ padding: 20px;
484
+ border: 1px solid #fff;
485
+ }
486
+ .guide .box-demo-inner {
487
+ height: 200px;
488
+ border: 1px solid #fff;
489
+ background-color: #363636;
490
+ opacity: 0.6;
491
+ padding-top: 100px;
492
+ text-align: center;
493
+ color: #fff;
494
+ }
495
+ .guide .box-demo:nth-child(1) {
496
+ background-color: rgba(0, 191, 203, 0.2);
497
+ }
498
+ .guide .box-demo:nth-child(2) {
499
+ background-color: rgba(0, 191, 203, 0.2);
500
+ }
501
+ .guide .box-demo:nth-child(3) {
502
+ background-color: rgba(0, 191, 203, 0.2);
503
+ }
504
+ .guide .box-demo2:nth-child(1) {
505
+ background-color: rgba(255, 33, 33, 0.2);
506
+ }
507
+ .guide .box-demo2:nth-child(2) {
508
+ background-color: rgba(255, 33, 33, 0.2);
509
+ }
510
+ .guide .box-demo2:nth-child(3) {
511
+ background-color: rgba(255, 33, 33, 0.2);
512
+ }
513
+ .guide .box-demo .col {
514
+ background-color: rgba(0, 191, 203, 0.6);
515
+ border: 1px solid #fff;
516
+ }
517
+ .guide .flexbox-map .h3 {
518
+ min-height: 50px;
519
+ background-color: rgba(33, 255, 214, 0.33);
520
+ padding: 20px;
521
+ }
522
+ .guide .box-info {
523
+ padding: 20px;
524
+ border: 1px solid gray;
525
+ font-style: italic;
526
+ opacity: 0.5;
527
+ }
528
+ .guide .guide-icon-top {
529
+ display: inline-block;
530
+ }
531
+ .guide .mini-box {
532
+ background: #eaeaea;
533
+ width: 100px;
534
+ color: #757171;
535
+ font-size: 10px;
536
+ float: left;
537
+ margin: 11px;
538
+ }
539
+
540
+ @media (min-width: 1px) {
541
+ .p-body {
542
+ padding: 20px;
543
+ }
544
+ }
545
+ @media (min-width: 768px) {
546
+ .p-body {
547
+ padding: 20px;
548
+ }
549
+ }
550
+ @media (min-width: 992px) {
551
+ .p-body {
552
+ padding: 40px;
553
+ }
554
+ }
555
+ @media (min-width: 1280px) {
556
+ .p-body {
557
+ padding: 40px;
558
+ }
559
+ }
560
+ @media (min-width: 1px) {
561
+ .ptr-120 {
562
+ padding-top: 64px;
563
+ }
564
+ .ptr-128 {
565
+ padding-top: 64px;
566
+ }
567
+ .ptr-160 {
568
+ padding-top: 64px;
569
+ }
570
+ .ptr-136 {
571
+ padding-top: 48px;
572
+ }
573
+ .ptr-20-120 {
574
+ padding-top: 20px;
575
+ }
576
+ .ptr-112 {
577
+ padding-top: 80px;
578
+ }
579
+ .ptr-80 {
580
+ padding-top: 48px;
581
+ }
582
+ .ptr-64 {
583
+ padding-top: 32px;
584
+ }
585
+ .ptr-24 {
586
+ padding-top: 16px;
587
+ }
588
+ }
589
+ @media (min-width: 768px) {
590
+ .ptr-120 {
591
+ padding-top: 64px;
592
+ }
593
+ .ptr-128 {
594
+ padding-top: 64px;
595
+ }
596
+ .ptr-160 {
597
+ padding-top: 64px;
598
+ }
599
+ .ptr-136 {
600
+ padding-top: 48px;
601
+ }
602
+ .ptr-20-120 {
603
+ padding-top: 20px;
604
+ }
605
+ .ptr-112 {
606
+ padding-top: 80px;
607
+ }
608
+ .ptr-80 {
609
+ padding-top: 48px;
610
+ }
611
+ .ptr-64 {
612
+ padding-top: 32px;
613
+ }
614
+ .ptr-24 {
615
+ padding-top: 16px;
616
+ }
617
+ }
618
+ @media (min-width: 992px) {
619
+ .ptr-120 {
620
+ padding-top: 120px;
621
+ }
622
+ .ptr-128 {
623
+ padding-top: 128px;
624
+ }
625
+ .ptr-160 {
626
+ padding-top: 160px;
627
+ }
628
+ .ptr-136 {
629
+ padding-top: 136px;
630
+ }
631
+ .ptr-20-120 {
632
+ padding-top: 120px;
633
+ }
634
+ .ptr-112 {
635
+ padding-top: 112px;
636
+ }
637
+ .ptr-80 {
638
+ padding-top: 80px;
639
+ }
640
+ .ptr-64 {
641
+ padding-top: 64px;
642
+ }
643
+ .ptr-24 {
644
+ padding-top: 24px;
645
+ }
646
+ }
647
+ @media (min-width: 1280px) {
648
+ .ptr-120 {
649
+ padding-top: 120px;
650
+ }
651
+ .ptr-128 {
652
+ padding-top: 128px;
653
+ }
654
+ .ptr-160 {
655
+ padding-top: 160px;
656
+ }
657
+ .ptr-136 {
658
+ padding-top: 136px;
659
+ }
660
+ .ptr-20-120 {
661
+ padding-top: 120px;
662
+ }
663
+ .ptr-112 {
664
+ padding-top: 112px;
665
+ }
666
+ .ptr-80 {
667
+ padding-top: 80px;
668
+ }
669
+ .ptr-64 {
670
+ padding-top: 64px;
671
+ }
672
+ .ptr-24 {
673
+ padding-top: 24px;
674
+ }
675
+ }
676
+ @media (min-width: 1px) {
677
+ .pl-body {
678
+ padding-left: 20px;
679
+ }
680
+ }
681
+ @media (min-width: 768px) {
682
+ .pl-body {
683
+ padding-left: 20px;
684
+ }
685
+ }
686
+ @media (min-width: 992px) {
687
+ .pl-body {
688
+ padding-left: 40px;
689
+ }
690
+ }
691
+ @media (min-width: 1280px) {
692
+ .pl-body {
693
+ padding-left: 40px;
694
+ }
695
+ }
696
+ @media (min-width: 1px) {
697
+ .pbr-136 {
698
+ padding-bottom: 64px;
699
+ }
700
+ .pbr-128 {
701
+ padding-bottom: 64px;
702
+ }
703
+ .pbr-120 {
704
+ padding-bottom: 64px;
705
+ }
706
+ .pbr-112 {
707
+ padding-bottom: 80px;
708
+ }
709
+ .pbr-96 {
710
+ padding-bottom: 64px;
711
+ }
712
+ .pbr-24 {
713
+ padding-bottom: 16px;
714
+ }
715
+ }
716
+ @media (min-width: 768px) {
717
+ .pbr-136 {
718
+ padding-bottom: 64px;
719
+ }
720
+ .pbr-128 {
721
+ padding-bottom: 64px;
722
+ }
723
+ .pbr-120 {
724
+ padding-bottom: 64px;
725
+ }
726
+ .pbr-112 {
727
+ padding-bottom: 80px;
728
+ }
729
+ .pbr-96 {
730
+ padding-bottom: 64px;
731
+ }
732
+ .pbr-24 {
733
+ padding-bottom: 16px;
734
+ }
735
+ }
736
+ @media (min-width: 992px) {
737
+ .pbr-136 {
738
+ padding-bottom: 136px;
739
+ }
740
+ .pbr-128 {
741
+ padding-bottom: 128px;
742
+ }
743
+ .pbr-120 {
744
+ padding-bottom: 120px;
745
+ }
746
+ .pbr-112 {
747
+ padding-bottom: 112px;
748
+ }
749
+ .pbr-96 {
750
+ padding-bottom: 96px;
751
+ }
752
+ .pbr-24 {
753
+ padding-bottom: 24px;
754
+ }
755
+ }
756
+ @media (min-width: 1280px) {
757
+ .pbr-136 {
758
+ padding-bottom: 136px;
759
+ }
760
+ .pbr-128 {
761
+ padding-bottom: 128px;
762
+ }
763
+ .pbr-120 {
764
+ padding-bottom: 120px;
765
+ }
766
+ .pbr-112 {
767
+ padding-bottom: 112px;
768
+ }
769
+ .pbr-96 {
770
+ padding-bottom: 96px;
771
+ }
772
+ .pbr-24 {
773
+ padding-bottom: 24px;
774
+ }
775
+ }
776
+ @media (min-width: 1px) {
777
+ .pr-body {
778
+ padding-right: 20px;
779
+ }
780
+ }
781
+ @media (min-width: 768px) {
782
+ .pr-body {
783
+ padding-right: 20px;
784
+ }
785
+ }
786
+ @media (min-width: 992px) {
787
+ .pr-body {
788
+ padding-right: 40px;
789
+ }
790
+ }
791
+ @media (min-width: 1280px) {
792
+ .pr-body {
793
+ padding-right: 40px;
794
+ }
795
+ }
796
+ @media (min-width: 1px) {
797
+ .mbr-24 {
798
+ margin-bottom: 16px;
799
+ }
800
+ .mbr-32 {
801
+ margin-bottom: 16px;
802
+ }
803
+ .mbr-64 {
804
+ margin-bottom: 32px;
805
+ }
806
+ .mbr-128 {
807
+ margin-bottom: 64px;
808
+ }
809
+ .mbr-20-40 {
810
+ margin-bottom: 20px;
811
+ }
812
+ .mbr-16-32 {
813
+ margin-bottom: 16px;
814
+ }
815
+ .mbr-8-24 {
816
+ margin-bottom: 8px;
817
+ }
818
+ }
819
+ @media (min-width: 768px) {
820
+ .mbr-24 {
821
+ margin-bottom: 24px;
822
+ }
823
+ .mbr-32 {
824
+ margin-bottom: 32px;
825
+ }
826
+ .mbr-64 {
827
+ margin-bottom: 64px;
828
+ }
829
+ .mbr-128 {
830
+ margin-bottom: 128px;
831
+ }
832
+ .mbr-20-40 {
833
+ margin-bottom: 40px;
834
+ }
835
+ .mbr-16-32 {
836
+ margin-bottom: 16px;
837
+ }
838
+ .mbr-8-24 {
839
+ margin-bottom: 8px;
840
+ }
841
+ }
842
+ @media (min-width: 992px) {
843
+ .mbr-24 {
844
+ margin-bottom: 24px;
845
+ }
846
+ .mbr-32 {
847
+ margin-bottom: 32px;
848
+ }
849
+ .mbr-64 {
850
+ margin-bottom: 64px;
851
+ }
852
+ .mbr-128 {
853
+ margin-bottom: 128px;
854
+ }
855
+ .mbr-20-40 {
856
+ margin-bottom: 40px;
857
+ }
858
+ .mbr-16-32 {
859
+ margin-bottom: 32px;
860
+ }
861
+ .mbr-8-24 {
862
+ margin-bottom: 24px;
863
+ }
864
+ }
865
+ @media (min-width: 1280px) {
866
+ .mbr-24 {
867
+ margin-bottom: 24px;
868
+ }
869
+ .mbr-32 {
870
+ margin-bottom: 32px;
871
+ }
872
+ .mbr-64 {
873
+ margin-bottom: 64px;
874
+ }
875
+ .mbr-128 {
876
+ margin-bottom: 128px;
877
+ }
878
+ .mbr-20-40 {
879
+ margin-bottom: 40px;
880
+ }
881
+ .mbr-16-32 {
882
+ margin-bottom: 32px;
883
+ }
884
+ .mbr-8-24 {
885
+ margin-bottom: 24px;
886
+ }
887
+ }
888
+ @media (min-width: 1px) {
889
+ .mtr-128 {
890
+ margin-top: 64px;
891
+ }
892
+ }
893
+ @media (min-width: 768px) {
894
+ .mtr-128 {
895
+ margin-top: 128px;
896
+ }
897
+ }
898
+ @media (min-width: 992px) {
899
+ .mtr-128 {
900
+ margin-top: 128px;
901
+ }
902
+ }
903
+ @media (min-width: 1280px) {
904
+ .mtr-128 {
905
+ margin-top: 128px;
906
+ }
907
+ }
908
+ .color-list {
909
+ display: flex;
910
+ flex-wrap: wrap;
911
+ flex-direction: row;
912
+ }
913
+
914
+ .variable-box {
915
+ width: 142px;
916
+ height: 60px;
917
+ }
918
+
919
+ .variable-item {
920
+ display: flex;
921
+ padding-top: 20px;
922
+ padding-bottom: 20px;
923
+ gap: 10px;
924
+ flex-direction: column;
925
+ }
926
+
927
+ .variable-info {
928
+ color: gray;
929
+ }
930
+
931
+ h2 {
932
+ font-size: 40px;
933
+ margin-bottom: 40px;
934
+ }
935
+
936
+ h3 {
937
+ font-size: 30px;
938
+ margin-bottom: 40px;
939
+ }
940
+
941
+ .h3 {
942
+ font-size: 16px;
943
+ font-weight: bold;
944
+ }
945
+
946
+ .grid-examples div {
947
+ background-color: #f0f0f0;
948
+ text-align: center;
949
+ padding: 20px;
950
+ border-radius: 10px;
951
+ }
952
+
953
+ /*# sourceMappingURL=docs.css.map */