robindoc 0.0.0-experimental-abdf899 → 0.0.0-experimental-1f8a4f9
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/styles.css +662 -662
- package/package.json +1 -1
package/lib/styles.css
CHANGED
|
@@ -111,49 +111,6 @@
|
|
|
111
111
|
width: 100%;
|
|
112
112
|
left: 0;
|
|
113
113
|
}
|
|
114
|
-
}.r-footer {
|
|
115
|
-
border-top: 1px solid var(--r-main-300);
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.r-footer-container.r-footer-container {
|
|
119
|
-
padding: 16px 12px;
|
|
120
|
-
}
|
|
121
|
-
@media screen and (width >= 1024px) {
|
|
122
|
-
.r-footer-container.r-footer-container {
|
|
123
|
-
padding-left: 24px;
|
|
124
|
-
padding-right: 24px;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.r-footer-row {
|
|
129
|
-
display: flex;
|
|
130
|
-
justify-content: space-between;
|
|
131
|
-
align-items: center;
|
|
132
|
-
gap: 32px;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.r-footer-additional {
|
|
136
|
-
margin-top: 20px;
|
|
137
|
-
justify-content: flex-end;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.r-copyright {
|
|
141
|
-
color: var(--r-main-800);
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.r-powered {
|
|
145
|
-
font-size: 14px;
|
|
146
|
-
display: block;
|
|
147
|
-
color: var(--r-main-600);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.r-powered-link {
|
|
151
|
-
font-weight: 600;
|
|
152
|
-
text-decoration: none;
|
|
153
|
-
color: var(--r-main-950);
|
|
154
|
-
}
|
|
155
|
-
.r-powered-link:hover {
|
|
156
|
-
color: var(--r-primary-900);
|
|
157
114
|
}.r-root {
|
|
158
115
|
--r-header-height: 60px;
|
|
159
116
|
position: relative;
|
|
@@ -409,6 +366,53 @@
|
|
|
409
366
|
grid-template-columns: 200px 640px 238px;
|
|
410
367
|
grid-template-rows: auto 1fr auto;
|
|
411
368
|
}
|
|
369
|
+
}.r-footer {
|
|
370
|
+
border-top: 1px solid var(--r-main-300);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.r-footer-container.r-footer-container {
|
|
374
|
+
padding: 16px 12px;
|
|
375
|
+
}
|
|
376
|
+
@media screen and (width >= 1024px) {
|
|
377
|
+
.r-footer-container.r-footer-container {
|
|
378
|
+
padding-left: 24px;
|
|
379
|
+
padding-right: 24px;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.r-footer-row {
|
|
384
|
+
display: flex;
|
|
385
|
+
justify-content: space-between;
|
|
386
|
+
align-items: center;
|
|
387
|
+
gap: 32px;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.r-footer-additional {
|
|
391
|
+
margin-top: 20px;
|
|
392
|
+
justify-content: flex-end;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.r-copyright {
|
|
396
|
+
color: var(--r-main-800);
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.r-powered {
|
|
400
|
+
font-size: 14px;
|
|
401
|
+
display: block;
|
|
402
|
+
color: var(--r-main-600);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.r-powered-link {
|
|
406
|
+
font-weight: 600;
|
|
407
|
+
text-decoration: none;
|
|
408
|
+
color: var(--r-main-950);
|
|
409
|
+
}
|
|
410
|
+
.r-powered-link:hover {
|
|
411
|
+
color: var(--r-primary-900);
|
|
412
|
+
}.r-page-container {
|
|
413
|
+
min-height: calc(100dvh - var(--r-header-height));
|
|
414
|
+
overflow-wrap: break-word;
|
|
415
|
+
box-sizing: border-box;
|
|
412
416
|
}.r-blog-container {
|
|
413
417
|
min-height: calc(100dvh - var(--r-header-height));
|
|
414
418
|
overflow-wrap: break-word;
|
|
@@ -423,10 +427,6 @@
|
|
|
423
427
|
grid-template-columns: 760px 220px;
|
|
424
428
|
grid-template-rows: auto 1fr auto;
|
|
425
429
|
}
|
|
426
|
-
}.r-page-container {
|
|
427
|
-
min-height: calc(100dvh - var(--r-header-height));
|
|
428
|
-
overflow-wrap: break-word;
|
|
429
|
-
box-sizing: border-box;
|
|
430
430
|
}.keylink-to-content {
|
|
431
431
|
position: absolute !important;
|
|
432
432
|
top: 8px;
|
|
@@ -448,102 +448,425 @@
|
|
|
448
448
|
|
|
449
449
|
.r-code-span + .r-content-link-external {
|
|
450
450
|
margin-left: -12px;
|
|
451
|
-
}.r-
|
|
452
|
-
|
|
453
|
-
|
|
451
|
+
}.r-header-menu {
|
|
452
|
+
display: flex;
|
|
453
|
+
justify-content: flex-end;
|
|
454
|
+
order: 1;
|
|
454
455
|
}
|
|
455
|
-
@media screen and (width >=
|
|
456
|
-
.r-
|
|
457
|
-
|
|
456
|
+
@media screen and (width >= 1024px) {
|
|
457
|
+
.r-header-menu {
|
|
458
|
+
flex: 1;
|
|
459
|
+
order: unset;
|
|
458
460
|
}
|
|
459
461
|
}
|
|
460
|
-
.r-article > *:first-child {
|
|
461
|
-
margin-top: 0;
|
|
462
|
-
}
|
|
463
|
-
.r-article > *:last-child {
|
|
464
|
-
margin-bottom: 0;
|
|
465
|
-
}
|
|
466
462
|
|
|
467
|
-
.r-
|
|
468
|
-
|
|
469
|
-
width: 20px;
|
|
470
|
-
height: 20px;
|
|
471
|
-
margin: 4px;
|
|
472
|
-
vertical-align: middle;
|
|
473
|
-
box-sizing: border-box;
|
|
463
|
+
.r-header-input:checked ~ .r-header-burger ~ .r-header-responsive {
|
|
464
|
+
display: flex;
|
|
474
465
|
}
|
|
475
466
|
|
|
476
|
-
.r-
|
|
477
|
-
|
|
467
|
+
.r-header-responsive {
|
|
468
|
+
display: none;
|
|
469
|
+
justify-content: flex-end;
|
|
470
|
+
flex: 1;
|
|
471
|
+
gap: 24px;
|
|
472
|
+
z-index: 1;
|
|
478
473
|
}
|
|
479
|
-
|
|
480
|
-
.r-
|
|
481
|
-
|
|
482
|
-
|
|
474
|
+
@media screen and (width < 1024px) {
|
|
475
|
+
.r-header-responsive {
|
|
476
|
+
flex-direction: column-reverse;
|
|
477
|
+
padding: 12px;
|
|
478
|
+
background-color: var(--r-main-50);
|
|
479
|
+
position: fixed;
|
|
480
|
+
top: 60px;
|
|
481
|
+
right: 0;
|
|
482
|
+
bottom: 0;
|
|
483
|
+
left: 0;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
@media screen and (width >= 1024px) {
|
|
487
|
+
.r-header-responsive {
|
|
488
|
+
display: flex;
|
|
489
|
+
justify-content: space-between;
|
|
490
|
+
align-items: center;
|
|
491
|
+
}
|
|
483
492
|
}
|
|
484
493
|
|
|
485
|
-
.r-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
494
|
+
.r-header-burger {
|
|
495
|
+
position: relative;
|
|
496
|
+
display: flex;
|
|
497
|
+
align-items: center;
|
|
498
|
+
justify-content: center;
|
|
499
|
+
height: 32px;
|
|
500
|
+
width: 32px;
|
|
501
|
+
cursor: pointer;
|
|
502
|
+
background: none;
|
|
503
|
+
border: none;
|
|
490
504
|
box-sizing: border-box;
|
|
491
505
|
}
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
.r-task-li.r-task-li {
|
|
497
|
-
margin-block-start: 2px;
|
|
498
|
-
margin-block-end: 2px;
|
|
506
|
+
@media screen and (width >= 1024px) {
|
|
507
|
+
.r-header-burger {
|
|
508
|
+
display: none;
|
|
509
|
+
}
|
|
499
510
|
}
|
|
500
511
|
|
|
501
|
-
.r-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
512
|
+
.r-burger-line {
|
|
513
|
+
display: block;
|
|
514
|
+
width: 20px;
|
|
515
|
+
height: 1.5px;
|
|
516
|
+
position: absolute;
|
|
517
|
+
background-color: var(--r-main-700);
|
|
518
|
+
margin: auto;
|
|
519
|
+
transition: transform 0.3s;
|
|
505
520
|
box-sizing: border-box;
|
|
506
521
|
}
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
width: calc(100% + 24px);
|
|
511
|
-
top: var(--r-header-height);
|
|
512
|
-
left: 0;
|
|
513
|
-
margin: 0 -12px;
|
|
514
|
-
background-color: var(--r-main-50);
|
|
515
|
-
border-bottom: 1px solid var(--r-main-200);
|
|
516
|
-
z-index: 10;
|
|
517
|
-
opacity: 0.98;
|
|
518
|
-
padding: 0;
|
|
519
|
-
overflow: auto;
|
|
520
|
-
}
|
|
522
|
+
|
|
523
|
+
.r-burger-line._top {
|
|
524
|
+
transform: translateY(-3px);
|
|
521
525
|
}
|
|
522
526
|
|
|
523
|
-
.r-
|
|
524
|
-
|
|
525
|
-
|
|
527
|
+
.r-header-input:checked ~ .r-header-burger .r-burger-line._top {
|
|
528
|
+
transform: translateY(0) rotate(45deg);
|
|
529
|
+
margin-top: 0;
|
|
526
530
|
}
|
|
527
531
|
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
display: none;
|
|
531
|
-
}
|
|
532
|
+
.r-burger-line._bottom {
|
|
533
|
+
transform: translateY(3px);
|
|
532
534
|
}
|
|
533
535
|
|
|
534
|
-
.r-
|
|
536
|
+
.r-header-input:checked ~ .r-header-burger .r-burger-line._bottom {
|
|
537
|
+
transform: translateY(0) rotate(-45deg);
|
|
538
|
+
margin-top: 0;
|
|
539
|
+
}.r-search-btn {
|
|
540
|
+
position: relative;
|
|
541
|
+
border-radius: 6px;
|
|
542
|
+
background-color: var(--r-main-100);
|
|
543
|
+
color: var(--r-main-600);
|
|
544
|
+
padding: 8px 16px;
|
|
545
|
+
border: 1px solid var(--r-main-200);
|
|
546
|
+
width: 100%;
|
|
547
|
+
text-align: left;
|
|
548
|
+
cursor: text;
|
|
535
549
|
box-sizing: border-box;
|
|
536
550
|
}
|
|
537
|
-
@media screen and (width
|
|
538
|
-
.r-
|
|
539
|
-
|
|
540
|
-
|
|
551
|
+
@media screen and (width >= 768px) {
|
|
552
|
+
.r-search-btn {
|
|
553
|
+
width: 220px;
|
|
554
|
+
padding: 8px 96px 8px 16px;
|
|
541
555
|
}
|
|
542
556
|
}
|
|
557
|
+
.r-search-btn:hover {
|
|
558
|
+
border-color: var(--r-main-600);
|
|
559
|
+
}
|
|
560
|
+
.r-search-btn:hover .r-search-kbd {
|
|
561
|
+
color: var(--r-main-950);
|
|
562
|
+
}
|
|
543
563
|
|
|
544
|
-
.r-
|
|
545
|
-
|
|
546
|
-
|
|
564
|
+
.r-search-title {
|
|
565
|
+
display: block;
|
|
566
|
+
overflow: hidden;
|
|
567
|
+
text-overflow: ellipsis;
|
|
568
|
+
white-space: nowrap;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.r-search-kbd {
|
|
572
|
+
display: none;
|
|
573
|
+
position: absolute;
|
|
574
|
+
right: 6px;
|
|
575
|
+
top: 50%;
|
|
576
|
+
transform: translateY(-50%);
|
|
577
|
+
}
|
|
578
|
+
@media screen and (width >= 768px) {
|
|
579
|
+
.r-search-kbd {
|
|
580
|
+
display: flex;
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.r-search-dialog {
|
|
585
|
+
width: 100%;
|
|
586
|
+
height: 100%;
|
|
587
|
+
background: none;
|
|
588
|
+
max-width: none;
|
|
589
|
+
max-height: none;
|
|
590
|
+
border: none;
|
|
591
|
+
padding: unset;
|
|
592
|
+
transition: opacity 0.3s ease, overlay 0.4s ease-out allow-discrete, display 0.4s ease-out allow-discrete;
|
|
593
|
+
opacity: 0;
|
|
594
|
+
}
|
|
595
|
+
.r-search-dialog::backdrop {
|
|
596
|
+
backdrop-filter: blur(0);
|
|
597
|
+
background: color-mix(in srgb, var(--r-main-900) 0%, transparent 100%);
|
|
598
|
+
transition: backdrop-filter 0.4s ease-out, background 0.4s ease-out;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.r-search-dialog[open] {
|
|
602
|
+
opacity: 1;
|
|
603
|
+
}
|
|
604
|
+
@starting-style {
|
|
605
|
+
.r-search-dialog[open] {
|
|
606
|
+
opacity: 0;
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
.r-search-dialog[open]::backdrop {
|
|
610
|
+
backdrop-filter: blur(4px);
|
|
611
|
+
background: color-mix(in srgb, var(--r-main-900) 40%, transparent 100%);
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.r-search-popup {
|
|
615
|
+
position: fixed;
|
|
616
|
+
left: 50%;
|
|
617
|
+
transform: translateX(-50%);
|
|
618
|
+
top: calc(var(--r-header-height) + 20px);
|
|
619
|
+
z-index: 200;
|
|
620
|
+
width: 100%;
|
|
621
|
+
max-width: 540px;
|
|
622
|
+
background-color: color-mix(in srgb, var(--r-main-50) 95%, transparent);
|
|
623
|
+
border: 2px solid var(--r-main-200);
|
|
624
|
+
border-bottom-width: 0;
|
|
625
|
+
border-radius: 12px 12px 0 0;
|
|
626
|
+
opacity: 0;
|
|
627
|
+
transform: translateX(-50%) translateY(-20px);
|
|
628
|
+
transition: opacity 0.2s, transform 0.2s;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.r-search-dialog[open] .r-search-popup {
|
|
632
|
+
opacity: 1;
|
|
633
|
+
transform: translateX(-50%) translateY(0);
|
|
634
|
+
}
|
|
635
|
+
@starting-style {
|
|
636
|
+
.r-search-dialog[open] .r-search-popup {
|
|
637
|
+
opacity: 0;
|
|
638
|
+
transform: translateX(-50%) translateY(-20px);
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.r-search-dialog._active .r-search-popup {
|
|
643
|
+
border-radius: 12px;
|
|
644
|
+
border-bottom-width: 2px;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.r-search-popup:has(.r-search-input:focus) {
|
|
648
|
+
border-color: var(--r-main-300);
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.r-search-popup-header {
|
|
652
|
+
position: relative;
|
|
653
|
+
border-bottom: 1px solid var(--r-main-200);
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.r-search-input {
|
|
657
|
+
background: none;
|
|
658
|
+
padding: 16px 20px;
|
|
659
|
+
border: none;
|
|
660
|
+
border-bottom: 2px solid var(--r-main-100);
|
|
661
|
+
width: 100%;
|
|
662
|
+
font-size: 16px;
|
|
663
|
+
box-sizing: border-box;
|
|
664
|
+
}
|
|
665
|
+
@media screen and (width >= 768px) {
|
|
666
|
+
.r-search-input {
|
|
667
|
+
padding: 16px 72px 16px 20px;
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
.r-search-input:hover {
|
|
671
|
+
border-bottom-color: var(--r-main-300);
|
|
672
|
+
}
|
|
673
|
+
.r-search-input:focus {
|
|
674
|
+
outline: none;
|
|
675
|
+
border-bottom-color: var(--r-primary-600);
|
|
676
|
+
}
|
|
677
|
+
.r-search-input::placeholder {
|
|
678
|
+
color: var(--r-main-500);
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.r-search-popup-kbd {
|
|
682
|
+
color: var(--r-main-600);
|
|
683
|
+
right: 20px;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.r-search-results {
|
|
687
|
+
padding: 2px 8px 8px;
|
|
688
|
+
max-height: min(400px, 100dvh - 200px);
|
|
689
|
+
overflow-y: auto;
|
|
690
|
+
list-style: none;
|
|
691
|
+
scrollbar-width: thin;
|
|
692
|
+
scrollbar-color: var(--r-main-200) transparent;
|
|
693
|
+
margin: 0;
|
|
694
|
+
box-sizing: border-box;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.r-search-item {
|
|
698
|
+
display: block;
|
|
699
|
+
text-decoration: none;
|
|
700
|
+
color: var(--r-main-700);
|
|
701
|
+
padding: 8px 12px;
|
|
702
|
+
border: 1px solid var(--r-main-100);
|
|
703
|
+
border-radius: 10px;
|
|
704
|
+
width: 100%;
|
|
705
|
+
margin-top: 6px;
|
|
706
|
+
box-sizing: border-box;
|
|
707
|
+
}
|
|
708
|
+
.r-search-item:hover, .r-search-item:focus {
|
|
709
|
+
color: var(--r-main-950);
|
|
710
|
+
background-color: var(--r-main-50);
|
|
711
|
+
border-color: var(--r-main-200);
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.r-search-item-title {
|
|
715
|
+
margin: 0;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.r-search-item-desc {
|
|
719
|
+
font-size: 14px;
|
|
720
|
+
color: var(--r-main-600);
|
|
721
|
+
margin: 12px 0 0;
|
|
722
|
+
}.r-dropdown {
|
|
723
|
+
position: relative;
|
|
724
|
+
color: var(--r-main-600);
|
|
725
|
+
transition: color 0.2s 0.1s;
|
|
726
|
+
}
|
|
727
|
+
.r-dropdown:hover, .r-dropdown:focus-within {
|
|
728
|
+
color: var(--r-main-950);
|
|
729
|
+
}
|
|
730
|
+
.r-dropdown:hover .r-dropdown-drop, .r-dropdown:focus-within .r-dropdown-drop {
|
|
731
|
+
visibility: visible;
|
|
732
|
+
pointer-events: all;
|
|
733
|
+
transform: translateY(20px);
|
|
734
|
+
opacity: 1;
|
|
735
|
+
}
|
|
736
|
+
.r-dropdown:hover .r-dropdown-chevron, .r-dropdown:focus-within .r-dropdown-chevron {
|
|
737
|
+
transform: rotate(180deg);
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.r-dropdown-summary {
|
|
741
|
+
display: flex;
|
|
742
|
+
justify-content: space-between;
|
|
743
|
+
align-items: center;
|
|
744
|
+
width: 100%;
|
|
745
|
+
position: relative;
|
|
746
|
+
color: inherit;
|
|
747
|
+
cursor: pointer;
|
|
748
|
+
padding: 10px 4px;
|
|
749
|
+
font-size: 16px;
|
|
750
|
+
border: 0;
|
|
751
|
+
background: none;
|
|
752
|
+
z-index: 1;
|
|
753
|
+
box-sizing: border-box;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.r-dropdown-chevron {
|
|
757
|
+
display: block;
|
|
758
|
+
margin-left: 6px;
|
|
759
|
+
transition: transform 0.3s 0.1s;
|
|
760
|
+
box-sizing: border-box;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.r-dropdown-drop {
|
|
764
|
+
list-style: none;
|
|
765
|
+
position: absolute;
|
|
766
|
+
top: 16px;
|
|
767
|
+
left: -12px;
|
|
768
|
+
visibility: hidden;
|
|
769
|
+
pointer-events: none;
|
|
770
|
+
opacity: 0;
|
|
771
|
+
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
772
|
+
background-color: var(--r-main-50);
|
|
773
|
+
border: 1px solid var(--r-main-100);
|
|
774
|
+
border-radius: 8px;
|
|
775
|
+
margin: 0;
|
|
776
|
+
padding: 2px 6px;
|
|
777
|
+
min-width: 120px;
|
|
778
|
+
max-width: 180px;
|
|
779
|
+
box-sizing: border-box;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.r-dropdown-link {
|
|
783
|
+
display: block;
|
|
784
|
+
width: 100%;
|
|
785
|
+
text-decoration: none;
|
|
786
|
+
color: var(--r-main-700);
|
|
787
|
+
padding: 4px 8px;
|
|
788
|
+
margin-top: 4px;
|
|
789
|
+
margin-bottom: 4px;
|
|
790
|
+
border-radius: 4px;
|
|
791
|
+
transition: background-color 0.2s;
|
|
792
|
+
box-sizing: border-box;
|
|
793
|
+
}
|
|
794
|
+
.r-dropdown-link:hover {
|
|
795
|
+
color: var(--r-main-900);
|
|
796
|
+
background-color: var(--r-main-100);
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.r-dropdown-link._active {
|
|
800
|
+
color: var(--r-primary-700);
|
|
801
|
+
}.r-container {
|
|
802
|
+
max-width: 1180px;
|
|
803
|
+
padding-right: 12px;
|
|
804
|
+
padding-left: 12px;
|
|
805
|
+
margin-right: auto;
|
|
806
|
+
margin-left: auto;
|
|
807
|
+
box-sizing: border-box;
|
|
808
|
+
}.r-header-social {
|
|
809
|
+
display: flex;
|
|
810
|
+
flex: 1;
|
|
811
|
+
justify-content: flex-end;
|
|
812
|
+
}
|
|
813
|
+
@media screen and (width >= 1024px) {
|
|
814
|
+
.r-header-social {
|
|
815
|
+
flex: none;
|
|
816
|
+
justify-content: unset;
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.r-header-social-git {
|
|
821
|
+
color: var(--r-main-700);
|
|
822
|
+
transition: color 0.2s;
|
|
823
|
+
}
|
|
824
|
+
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
825
|
+
color: var(--r-main-950);
|
|
826
|
+
}.r-sidebar {
|
|
827
|
+
grid-area: sidebar;
|
|
828
|
+
box-sizing: border-box;
|
|
829
|
+
}
|
|
830
|
+
@media screen and (width < 768px) {
|
|
831
|
+
.r-sidebar {
|
|
832
|
+
position: sticky;
|
|
833
|
+
width: calc(100% + 24px);
|
|
834
|
+
top: var(--r-header-height);
|
|
835
|
+
left: 0;
|
|
836
|
+
margin: 0 -12px;
|
|
837
|
+
background-color: var(--r-main-50);
|
|
838
|
+
border-bottom: 1px solid var(--r-main-200);
|
|
839
|
+
z-index: 10;
|
|
840
|
+
opacity: 0.98;
|
|
841
|
+
padding: 0;
|
|
842
|
+
overflow: auto;
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.r-sidebar-top-mock {
|
|
847
|
+
grid-row-start: 1;
|
|
848
|
+
grid-column-start: 1;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
@media screen and (width < 768px) {
|
|
852
|
+
.r-sidebar-input:not(:checked) ~ .r-sidebar-btn ~ .r-sidebar-nav {
|
|
853
|
+
display: none;
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.r-sidebar-nav {
|
|
858
|
+
box-sizing: border-box;
|
|
859
|
+
}
|
|
860
|
+
@media screen and (width < 768px) {
|
|
861
|
+
.r-sidebar-nav {
|
|
862
|
+
overflow: auto;
|
|
863
|
+
max-height: calc(100dvh - var(--r-header-height) - 41px);
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.r-sidebar-drop {
|
|
868
|
+
margin-top: -4px;
|
|
869
|
+
padding-top: 4px;
|
|
547
870
|
}
|
|
548
871
|
|
|
549
872
|
.r-sidebar-sublist {
|
|
@@ -734,438 +1057,115 @@
|
|
|
734
1057
|
display: -webkit-box;
|
|
735
1058
|
-webkit-box-orient: vertical;
|
|
736
1059
|
-webkit-line-clamp: 3;
|
|
737
|
-
overflow: hidden;
|
|
738
|
-
transition: background-color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s, color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
.r-sidebar-link._target {
|
|
742
|
-
color: var(--r-primary-950);
|
|
743
|
-
background-color: var(--r-main-50);
|
|
744
|
-
}
|
|
745
|
-
|
|
746
|
-
.r-sidebar-link:hover {
|
|
747
|
-
color: var(--r-primary-800);
|
|
748
|
-
background-color: var(--r-main-100);
|
|
749
|
-
transition-delay: initial;
|
|
750
|
-
}
|
|
751
|
-
.r-sidebar-link:hover::before {
|
|
752
|
-
background-color: currentColor;
|
|
753
|
-
transition-delay: initial;
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
.r-sidebar-link._active {
|
|
757
|
-
color: var(--r-primary-700);
|
|
758
|
-
background-color: var(--r-main-50);
|
|
759
|
-
}
|
|
760
|
-
.r-sidebar-link._active::before {
|
|
761
|
-
background-color: currentColor;
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
.r-sidebar-drop-btn {
|
|
765
|
-
position: absolute;
|
|
766
|
-
right: 3px;
|
|
767
|
-
top: 5px;
|
|
768
|
-
border-radius: 4px;
|
|
769
|
-
padding: 4px;
|
|
770
|
-
list-style: none;
|
|
771
|
-
cursor: pointer;
|
|
772
|
-
transition: color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
773
|
-
}
|
|
774
|
-
.r-sidebar-drop-btn:hover {
|
|
775
|
-
color: var(--r-primary-500);
|
|
776
|
-
transition-delay: initial;
|
|
777
|
-
}
|
|
778
|
-
.r-sidebar-drop-btn::before {
|
|
779
|
-
content: "";
|
|
780
|
-
position: absolute;
|
|
781
|
-
inset: -4px;
|
|
782
|
-
}
|
|
783
|
-
.r-sidebar-drop-btn::-webkit-details-marker {
|
|
784
|
-
display: none;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
.r-sidebar-drop-icon {
|
|
788
|
-
display: block;
|
|
789
|
-
transition: transform 0.2s;
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
.r-sidebar-drop[open] > .r-sidebar-drop-btn > .r-sidebar-drop-icon {
|
|
793
|
-
transform: rotate(90deg);
|
|
794
|
-
}.r-header-menu {
|
|
795
|
-
display: flex;
|
|
796
|
-
justify-content: flex-end;
|
|
797
|
-
order: 1;
|
|
798
|
-
}
|
|
799
|
-
@media screen and (width >= 1024px) {
|
|
800
|
-
.r-header-menu {
|
|
801
|
-
flex: 1;
|
|
802
|
-
order: unset;
|
|
803
|
-
}
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
.r-header-input:checked ~ .r-header-burger ~ .r-header-responsive {
|
|
807
|
-
display: flex;
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
.r-header-responsive {
|
|
811
|
-
display: none;
|
|
812
|
-
justify-content: flex-end;
|
|
813
|
-
flex: 1;
|
|
814
|
-
gap: 24px;
|
|
815
|
-
z-index: 1;
|
|
816
|
-
}
|
|
817
|
-
@media screen and (width < 1024px) {
|
|
818
|
-
.r-header-responsive {
|
|
819
|
-
flex-direction: column-reverse;
|
|
820
|
-
padding: 12px;
|
|
821
|
-
background-color: var(--r-main-50);
|
|
822
|
-
position: fixed;
|
|
823
|
-
top: 60px;
|
|
824
|
-
right: 0;
|
|
825
|
-
bottom: 0;
|
|
826
|
-
left: 0;
|
|
827
|
-
}
|
|
828
|
-
}
|
|
829
|
-
@media screen and (width >= 1024px) {
|
|
830
|
-
.r-header-responsive {
|
|
831
|
-
display: flex;
|
|
832
|
-
justify-content: space-between;
|
|
833
|
-
align-items: center;
|
|
834
|
-
}
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
.r-header-burger {
|
|
838
|
-
position: relative;
|
|
839
|
-
display: flex;
|
|
840
|
-
align-items: center;
|
|
841
|
-
justify-content: center;
|
|
842
|
-
height: 32px;
|
|
843
|
-
width: 32px;
|
|
844
|
-
cursor: pointer;
|
|
845
|
-
background: none;
|
|
846
|
-
border: none;
|
|
847
|
-
box-sizing: border-box;
|
|
848
|
-
}
|
|
849
|
-
@media screen and (width >= 1024px) {
|
|
850
|
-
.r-header-burger {
|
|
851
|
-
display: none;
|
|
852
|
-
}
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
.r-burger-line {
|
|
856
|
-
display: block;
|
|
857
|
-
width: 20px;
|
|
858
|
-
height: 1.5px;
|
|
859
|
-
position: absolute;
|
|
860
|
-
background-color: var(--r-main-700);
|
|
861
|
-
margin: auto;
|
|
862
|
-
transition: transform 0.3s;
|
|
863
|
-
box-sizing: border-box;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
.r-burger-line._top {
|
|
867
|
-
transform: translateY(-3px);
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
.r-header-input:checked ~ .r-header-burger .r-burger-line._top {
|
|
871
|
-
transform: translateY(0) rotate(45deg);
|
|
872
|
-
margin-top: 0;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.r-burger-line._bottom {
|
|
876
|
-
transform: translateY(3px);
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
.r-header-input:checked ~ .r-header-burger .r-burger-line._bottom {
|
|
880
|
-
transform: translateY(0) rotate(-45deg);
|
|
881
|
-
margin-top: 0;
|
|
882
|
-
}.r-search-btn {
|
|
883
|
-
position: relative;
|
|
884
|
-
border-radius: 6px;
|
|
885
|
-
background-color: var(--r-main-100);
|
|
886
|
-
color: var(--r-main-600);
|
|
887
|
-
padding: 8px 16px;
|
|
888
|
-
border: 1px solid var(--r-main-200);
|
|
889
|
-
width: 100%;
|
|
890
|
-
text-align: left;
|
|
891
|
-
cursor: text;
|
|
892
|
-
box-sizing: border-box;
|
|
893
|
-
}
|
|
894
|
-
@media screen and (width >= 768px) {
|
|
895
|
-
.r-search-btn {
|
|
896
|
-
width: 220px;
|
|
897
|
-
padding: 8px 96px 8px 16px;
|
|
898
|
-
}
|
|
899
|
-
}
|
|
900
|
-
.r-search-btn:hover {
|
|
901
|
-
border-color: var(--r-main-600);
|
|
902
|
-
}
|
|
903
|
-
.r-search-btn:hover .r-search-kbd {
|
|
904
|
-
color: var(--r-main-950);
|
|
905
|
-
}
|
|
906
|
-
|
|
907
|
-
.r-search-title {
|
|
908
|
-
display: block;
|
|
909
|
-
overflow: hidden;
|
|
910
|
-
text-overflow: ellipsis;
|
|
911
|
-
white-space: nowrap;
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
.r-search-kbd {
|
|
915
|
-
display: none;
|
|
916
|
-
position: absolute;
|
|
917
|
-
right: 6px;
|
|
918
|
-
top: 50%;
|
|
919
|
-
transform: translateY(-50%);
|
|
920
|
-
}
|
|
921
|
-
@media screen and (width >= 768px) {
|
|
922
|
-
.r-search-kbd {
|
|
923
|
-
display: flex;
|
|
924
|
-
}
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
.r-search-dialog {
|
|
928
|
-
width: 100%;
|
|
929
|
-
height: 100%;
|
|
930
|
-
background: none;
|
|
931
|
-
max-width: none;
|
|
932
|
-
max-height: none;
|
|
933
|
-
border: none;
|
|
934
|
-
padding: unset;
|
|
935
|
-
transition: opacity 0.3s ease, overlay 0.4s ease-out allow-discrete, display 0.4s ease-out allow-discrete;
|
|
936
|
-
opacity: 0;
|
|
937
|
-
}
|
|
938
|
-
.r-search-dialog::backdrop {
|
|
939
|
-
backdrop-filter: blur(0);
|
|
940
|
-
background: color-mix(in srgb, var(--r-main-900) 0%, transparent 100%);
|
|
941
|
-
transition: backdrop-filter 0.4s ease-out, background 0.4s ease-out;
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
.r-search-dialog[open] {
|
|
945
|
-
opacity: 1;
|
|
946
|
-
}
|
|
947
|
-
@starting-style {
|
|
948
|
-
.r-search-dialog[open] {
|
|
949
|
-
opacity: 0;
|
|
950
|
-
}
|
|
951
|
-
}
|
|
952
|
-
.r-search-dialog[open]::backdrop {
|
|
953
|
-
backdrop-filter: blur(4px);
|
|
954
|
-
background: color-mix(in srgb, var(--r-main-900) 40%, transparent 100%);
|
|
955
|
-
}
|
|
956
|
-
|
|
957
|
-
.r-search-popup {
|
|
958
|
-
position: fixed;
|
|
959
|
-
left: 50%;
|
|
960
|
-
transform: translateX(-50%);
|
|
961
|
-
top: calc(var(--r-header-height) + 20px);
|
|
962
|
-
z-index: 200;
|
|
963
|
-
width: 100%;
|
|
964
|
-
max-width: 540px;
|
|
965
|
-
background-color: color-mix(in srgb, var(--r-main-50) 95%, transparent);
|
|
966
|
-
border: 2px solid var(--r-main-200);
|
|
967
|
-
border-bottom-width: 0;
|
|
968
|
-
border-radius: 12px 12px 0 0;
|
|
969
|
-
opacity: 0;
|
|
970
|
-
transform: translateX(-50%) translateY(-20px);
|
|
971
|
-
transition: opacity 0.2s, transform 0.2s;
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
.r-search-dialog[open] .r-search-popup {
|
|
975
|
-
opacity: 1;
|
|
976
|
-
transform: translateX(-50%) translateY(0);
|
|
977
|
-
}
|
|
978
|
-
@starting-style {
|
|
979
|
-
.r-search-dialog[open] .r-search-popup {
|
|
980
|
-
opacity: 0;
|
|
981
|
-
transform: translateX(-50%) translateY(-20px);
|
|
982
|
-
}
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
.r-search-dialog._active .r-search-popup {
|
|
986
|
-
border-radius: 12px;
|
|
987
|
-
border-bottom-width: 2px;
|
|
988
|
-
}
|
|
989
|
-
|
|
990
|
-
.r-search-popup:has(.r-search-input:focus) {
|
|
991
|
-
border-color: var(--r-main-300);
|
|
1060
|
+
overflow: hidden;
|
|
1061
|
+
transition: background-color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s, color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
992
1062
|
}
|
|
993
1063
|
|
|
994
|
-
.r-
|
|
995
|
-
|
|
996
|
-
|
|
1064
|
+
.r-sidebar-link._target {
|
|
1065
|
+
color: var(--r-primary-950);
|
|
1066
|
+
background-color: var(--r-main-50);
|
|
997
1067
|
}
|
|
998
1068
|
|
|
999
|
-
.r-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
border-bottom: 2px solid var(--r-main-100);
|
|
1004
|
-
width: 100%;
|
|
1005
|
-
font-size: 16px;
|
|
1006
|
-
box-sizing: border-box;
|
|
1007
|
-
}
|
|
1008
|
-
@media screen and (width >= 768px) {
|
|
1009
|
-
.r-search-input {
|
|
1010
|
-
padding: 16px 72px 16px 20px;
|
|
1011
|
-
}
|
|
1012
|
-
}
|
|
1013
|
-
.r-search-input:hover {
|
|
1014
|
-
border-bottom-color: var(--r-main-300);
|
|
1015
|
-
}
|
|
1016
|
-
.r-search-input:focus {
|
|
1017
|
-
outline: none;
|
|
1018
|
-
border-bottom-color: var(--r-primary-600);
|
|
1069
|
+
.r-sidebar-link:hover {
|
|
1070
|
+
color: var(--r-primary-800);
|
|
1071
|
+
background-color: var(--r-main-100);
|
|
1072
|
+
transition-delay: initial;
|
|
1019
1073
|
}
|
|
1020
|
-
.r-
|
|
1021
|
-
color:
|
|
1074
|
+
.r-sidebar-link:hover::before {
|
|
1075
|
+
background-color: currentColor;
|
|
1076
|
+
transition-delay: initial;
|
|
1022
1077
|
}
|
|
1023
1078
|
|
|
1024
|
-
.r-
|
|
1025
|
-
color: var(--r-
|
|
1026
|
-
|
|
1079
|
+
.r-sidebar-link._active {
|
|
1080
|
+
color: var(--r-primary-700);
|
|
1081
|
+
background-color: var(--r-main-50);
|
|
1082
|
+
}
|
|
1083
|
+
.r-sidebar-link._active::before {
|
|
1084
|
+
background-color: currentColor;
|
|
1027
1085
|
}
|
|
1028
1086
|
|
|
1029
|
-
.r-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1087
|
+
.r-sidebar-drop-btn {
|
|
1088
|
+
position: absolute;
|
|
1089
|
+
right: 3px;
|
|
1090
|
+
top: 5px;
|
|
1091
|
+
border-radius: 4px;
|
|
1092
|
+
padding: 4px;
|
|
1033
1093
|
list-style: none;
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
margin: 0;
|
|
1037
|
-
box-sizing: border-box;
|
|
1094
|
+
cursor: pointer;
|
|
1095
|
+
transition: color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
1038
1096
|
}
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
text-decoration: none;
|
|
1043
|
-
color: var(--r-main-700);
|
|
1044
|
-
padding: 8px 12px;
|
|
1045
|
-
border: 1px solid var(--r-main-100);
|
|
1046
|
-
border-radius: 10px;
|
|
1047
|
-
width: 100%;
|
|
1048
|
-
margin-top: 6px;
|
|
1049
|
-
box-sizing: border-box;
|
|
1097
|
+
.r-sidebar-drop-btn:hover {
|
|
1098
|
+
color: var(--r-primary-500);
|
|
1099
|
+
transition-delay: initial;
|
|
1050
1100
|
}
|
|
1051
|
-
.r-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1101
|
+
.r-sidebar-drop-btn::before {
|
|
1102
|
+
content: "";
|
|
1103
|
+
position: absolute;
|
|
1104
|
+
inset: -4px;
|
|
1105
|
+
}
|
|
1106
|
+
.r-sidebar-drop-btn::-webkit-details-marker {
|
|
1107
|
+
display: none;
|
|
1055
1108
|
}
|
|
1056
1109
|
|
|
1057
|
-
.r-
|
|
1058
|
-
|
|
1110
|
+
.r-sidebar-drop-icon {
|
|
1111
|
+
display: block;
|
|
1112
|
+
transition: transform 0.2s;
|
|
1059
1113
|
}
|
|
1060
1114
|
|
|
1061
|
-
.r-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
position: relative;
|
|
1067
|
-
color: var(--r-main-600);
|
|
1068
|
-
transition: color 0.2s 0.1s;
|
|
1115
|
+
.r-sidebar-drop[open] > .r-sidebar-drop-btn > .r-sidebar-drop-icon {
|
|
1116
|
+
transform: rotate(90deg);
|
|
1117
|
+
}.r-article {
|
|
1118
|
+
padding: 20px 0 40px;
|
|
1119
|
+
grid-area: content;
|
|
1069
1120
|
}
|
|
1070
|
-
|
|
1071
|
-
|
|
1121
|
+
@media screen and (width >= 1180px) {
|
|
1122
|
+
.r-article {
|
|
1123
|
+
padding: 32px 0 40px;
|
|
1124
|
+
}
|
|
1072
1125
|
}
|
|
1073
|
-
.r-
|
|
1074
|
-
|
|
1075
|
-
pointer-events: all;
|
|
1076
|
-
transform: translateY(20px);
|
|
1077
|
-
opacity: 1;
|
|
1126
|
+
.r-article > *:first-child {
|
|
1127
|
+
margin-top: 0;
|
|
1078
1128
|
}
|
|
1079
|
-
.r-
|
|
1080
|
-
|
|
1129
|
+
.r-article > *:last-child {
|
|
1130
|
+
margin-bottom: 0;
|
|
1081
1131
|
}
|
|
1082
1132
|
|
|
1083
|
-
.r-
|
|
1084
|
-
display: flex;
|
|
1085
|
-
justify-content: space-between;
|
|
1086
|
-
align-items: center;
|
|
1087
|
-
width: 100%;
|
|
1088
|
-
position: relative;
|
|
1089
|
-
color: inherit;
|
|
1133
|
+
.r-checkbox {
|
|
1090
1134
|
cursor: pointer;
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
z-index: 1;
|
|
1135
|
+
width: 20px;
|
|
1136
|
+
height: 20px;
|
|
1137
|
+
margin: 4px;
|
|
1138
|
+
vertical-align: middle;
|
|
1096
1139
|
box-sizing: border-box;
|
|
1097
1140
|
}
|
|
1098
1141
|
|
|
1099
|
-
.r-
|
|
1100
|
-
|
|
1101
|
-
margin-left: 6px;
|
|
1102
|
-
transition: transform 0.3s 0.1s;
|
|
1103
|
-
box-sizing: border-box;
|
|
1142
|
+
.r-label {
|
|
1143
|
+
cursor: pointer;
|
|
1104
1144
|
}
|
|
1105
1145
|
|
|
1106
|
-
.r-
|
|
1146
|
+
.r-task-ol,
|
|
1147
|
+
.r-task-ul {
|
|
1107
1148
|
list-style: none;
|
|
1108
|
-
position: absolute;
|
|
1109
|
-
top: 16px;
|
|
1110
|
-
left: -12px;
|
|
1111
|
-
visibility: hidden;
|
|
1112
|
-
pointer-events: none;
|
|
1113
|
-
opacity: 0;
|
|
1114
|
-
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
1115
|
-
background-color: var(--r-main-50);
|
|
1116
|
-
border: 1px solid var(--r-main-100);
|
|
1117
|
-
border-radius: 8px;
|
|
1118
|
-
margin: 0;
|
|
1119
|
-
padding: 2px 6px;
|
|
1120
|
-
min-width: 120px;
|
|
1121
|
-
max-width: 180px;
|
|
1122
|
-
box-sizing: border-box;
|
|
1123
1149
|
}
|
|
1124
1150
|
|
|
1125
|
-
.r-
|
|
1151
|
+
.r-task-label {
|
|
1126
1152
|
display: block;
|
|
1127
1153
|
width: 100%;
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
padding: 4px 8px;
|
|
1131
|
-
margin-top: 4px;
|
|
1132
|
-
margin-bottom: 4px;
|
|
1133
|
-
border-radius: 4px;
|
|
1134
|
-
transition: background-color 0.2s;
|
|
1154
|
+
padding-top: 2px;
|
|
1155
|
+
padding-bottom: 2px;
|
|
1135
1156
|
box-sizing: border-box;
|
|
1136
1157
|
}
|
|
1137
|
-
.r-
|
|
1138
|
-
|
|
1139
|
-
background-color: var(--r-main-100);
|
|
1158
|
+
.r-task-label:hover .r-checkbox {
|
|
1159
|
+
filter: brightness(0.8);
|
|
1140
1160
|
}
|
|
1141
1161
|
|
|
1142
|
-
.r-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
display: flex;
|
|
1146
|
-
flex: 1;
|
|
1147
|
-
justify-content: flex-end;
|
|
1148
|
-
}
|
|
1149
|
-
@media screen and (width >= 1024px) {
|
|
1150
|
-
.r-header-social {
|
|
1151
|
-
flex: none;
|
|
1152
|
-
justify-content: unset;
|
|
1153
|
-
}
|
|
1162
|
+
.r-task-li.r-task-li {
|
|
1163
|
+
margin-block-start: 2px;
|
|
1164
|
+
margin-block-end: 2px;
|
|
1154
1165
|
}
|
|
1155
1166
|
|
|
1156
|
-
.r-
|
|
1157
|
-
|
|
1158
|
-
transition: color 0.2s;
|
|
1159
|
-
}
|
|
1160
|
-
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
1161
|
-
color: var(--r-main-950);
|
|
1162
|
-
}.r-container {
|
|
1163
|
-
max-width: 1180px;
|
|
1164
|
-
padding-right: 12px;
|
|
1165
|
-
padding-left: 12px;
|
|
1166
|
-
margin-right: auto;
|
|
1167
|
-
margin-left: auto;
|
|
1168
|
-
box-sizing: border-box;
|
|
1167
|
+
.r-label-text {
|
|
1168
|
+
vertical-align: middle;
|
|
1169
1169
|
}.r-theme-switcher {
|
|
1170
1170
|
position: relative;
|
|
1171
1171
|
display: flex;
|
|
@@ -1241,16 +1241,65 @@
|
|
|
1241
1241
|
text-decoration: none;
|
|
1242
1242
|
background: var(--r-main-50);
|
|
1243
1243
|
}
|
|
1244
|
-
|
|
1245
|
-
.r-keylink:not(:focus) {
|
|
1246
|
-
width: 1px !important;
|
|
1247
|
-
height: 1px !important;
|
|
1248
|
-
padding: 0 !important;
|
|
1249
|
-
overflow: hidden !important;
|
|
1250
|
-
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
1251
|
-
border: 0 !important;
|
|
1252
|
-
user-select: none;
|
|
1253
|
-
pointer-events: none;
|
|
1244
|
+
|
|
1245
|
+
.r-keylink:not(:focus) {
|
|
1246
|
+
width: 1px !important;
|
|
1247
|
+
height: 1px !important;
|
|
1248
|
+
padding: 0 !important;
|
|
1249
|
+
overflow: hidden !important;
|
|
1250
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
1251
|
+
border: 0 !important;
|
|
1252
|
+
user-select: none;
|
|
1253
|
+
pointer-events: none;
|
|
1254
|
+
box-sizing: border-box;
|
|
1255
|
+
}.r-backdrop {
|
|
1256
|
+
position: fixed;
|
|
1257
|
+
top: 0;
|
|
1258
|
+
right: 0;
|
|
1259
|
+
bottom: 0;
|
|
1260
|
+
left: 0;
|
|
1261
|
+
opacity: 0;
|
|
1262
|
+
visibility: hidden;
|
|
1263
|
+
pointer-events: none;
|
|
1264
|
+
z-index: 100;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
.r-backdrop._visible {
|
|
1268
|
+
opacity: 1;
|
|
1269
|
+
visibility: visible;
|
|
1270
|
+
pointer-events: all;
|
|
1271
|
+
}.r-git-logo {
|
|
1272
|
+
display: block;
|
|
1273
|
+
}.r-external-mark {
|
|
1274
|
+
position: relative;
|
|
1275
|
+
vertical-align: text-top;
|
|
1276
|
+
display: inline-block;
|
|
1277
|
+
margin-left: -4px;
|
|
1278
|
+
margin-right: 2px;
|
|
1279
|
+
width: 6px;
|
|
1280
|
+
height: 6px;
|
|
1281
|
+
box-sizing: border-box;
|
|
1282
|
+
}
|
|
1283
|
+
.r-external-mark::after {
|
|
1284
|
+
content: "";
|
|
1285
|
+
position: absolute;
|
|
1286
|
+
top: 0;
|
|
1287
|
+
right: 0;
|
|
1288
|
+
width: 100%;
|
|
1289
|
+
height: 100%;
|
|
1290
|
+
border-top: 1px solid currentColor;
|
|
1291
|
+
border-right: 1px solid currentColor;
|
|
1292
|
+
box-sizing: border-box;
|
|
1293
|
+
}
|
|
1294
|
+
.r-external-mark::before {
|
|
1295
|
+
content: "";
|
|
1296
|
+
position: absolute;
|
|
1297
|
+
top: 0;
|
|
1298
|
+
right: 0;
|
|
1299
|
+
width: 3px;
|
|
1300
|
+
height: 3px;
|
|
1301
|
+
background-color: currentColor;
|
|
1302
|
+
border-radius: 0 0 0 4px;
|
|
1254
1303
|
box-sizing: border-box;
|
|
1255
1304
|
}.r-contents {
|
|
1256
1305
|
grid-area: contents;
|
|
@@ -1607,54 +1656,13 @@
|
|
|
1607
1656
|
}.r-last-modified {
|
|
1608
1657
|
color: var(--r-main-700);
|
|
1609
1658
|
margin-block-start: 16px;
|
|
1610
|
-
}.r-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
visibility: hidden;
|
|
1618
|
-
pointer-events: none;
|
|
1619
|
-
z-index: 100;
|
|
1620
|
-
}
|
|
1621
|
-
|
|
1622
|
-
.r-backdrop._visible {
|
|
1623
|
-
opacity: 1;
|
|
1624
|
-
visibility: visible;
|
|
1625
|
-
pointer-events: all;
|
|
1626
|
-
}.r-git-logo {
|
|
1627
|
-
display: block;
|
|
1628
|
-
}.r-external-mark {
|
|
1629
|
-
position: relative;
|
|
1630
|
-
vertical-align: text-top;
|
|
1631
|
-
display: inline-block;
|
|
1632
|
-
margin-left: -4px;
|
|
1633
|
-
margin-right: 2px;
|
|
1634
|
-
width: 6px;
|
|
1635
|
-
height: 6px;
|
|
1636
|
-
box-sizing: border-box;
|
|
1637
|
-
}
|
|
1638
|
-
.r-external-mark::after {
|
|
1639
|
-
content: "";
|
|
1640
|
-
position: absolute;
|
|
1641
|
-
top: 0;
|
|
1642
|
-
right: 0;
|
|
1643
|
-
width: 100%;
|
|
1644
|
-
height: 100%;
|
|
1645
|
-
border-top: 1px solid currentColor;
|
|
1646
|
-
border-right: 1px solid currentColor;
|
|
1647
|
-
box-sizing: border-box;
|
|
1648
|
-
}
|
|
1649
|
-
.r-external-mark::before {
|
|
1650
|
-
content: "";
|
|
1651
|
-
position: absolute;
|
|
1652
|
-
top: 0;
|
|
1653
|
-
right: 0;
|
|
1654
|
-
width: 3px;
|
|
1655
|
-
height: 3px;
|
|
1656
|
-
background-color: currentColor;
|
|
1657
|
-
border-radius: 0 0 0 4px;
|
|
1659
|
+
}.r-kbd-key {
|
|
1660
|
+
background-color: var(--r-main-200);
|
|
1661
|
+
font-size: 12px;
|
|
1662
|
+
border-radius: 4px;
|
|
1663
|
+
padding: 5px 8px;
|
|
1664
|
+
min-width: 24px;
|
|
1665
|
+
text-align: center;
|
|
1658
1666
|
box-sizing: border-box;
|
|
1659
1667
|
}.r-kbd-container {
|
|
1660
1668
|
display: flex;
|
|
@@ -1664,14 +1672,25 @@
|
|
|
1664
1672
|
}
|
|
1665
1673
|
.r-kbd-container:hover {
|
|
1666
1674
|
color: var(--r-main-950);
|
|
1667
|
-
}.r-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
+
}.r-anchor-heading:hover .r-anchor-heading-link {
|
|
1676
|
+
visibility: visible;
|
|
1677
|
+
opacity: 1;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.r-anchor-heading-link {
|
|
1681
|
+
visibility: hidden;
|
|
1682
|
+
opacity: 0;
|
|
1683
|
+
transition: opacity 0.3s allow-discrete;
|
|
1684
|
+
padding-inline: 8px;
|
|
1685
|
+
margin-inline-start: -4px;
|
|
1686
|
+
color: var(--r-main-600);
|
|
1687
|
+
text-decoration: none;
|
|
1688
|
+
}
|
|
1689
|
+
.r-anchor-heading-link:hover {
|
|
1690
|
+
color: var(--r-primary-800);
|
|
1691
|
+
}
|
|
1692
|
+
.r-anchor-heading-link::after {
|
|
1693
|
+
content: "#";
|
|
1675
1694
|
}.r-code-section {
|
|
1676
1695
|
position: relative;
|
|
1677
1696
|
margin-block-start: 1.5em;
|
|
@@ -1723,25 +1742,6 @@
|
|
|
1723
1742
|
|
|
1724
1743
|
.r-code-section-filename {
|
|
1725
1744
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1726
|
-
}.r-anchor-heading:hover .r-anchor-heading-link {
|
|
1727
|
-
visibility: visible;
|
|
1728
|
-
opacity: 1;
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
.r-anchor-heading-link {
|
|
1732
|
-
visibility: hidden;
|
|
1733
|
-
opacity: 0;
|
|
1734
|
-
transition: opacity 0.3s allow-discrete;
|
|
1735
|
-
padding-inline: 8px;
|
|
1736
|
-
margin-inline-start: -4px;
|
|
1737
|
-
color: var(--r-main-600);
|
|
1738
|
-
text-decoration: none;
|
|
1739
|
-
}
|
|
1740
|
-
.r-anchor-heading-link:hover {
|
|
1741
|
-
color: var(--r-primary-800);
|
|
1742
|
-
}
|
|
1743
|
-
.r-anchor-heading-link::after {
|
|
1744
|
-
content: "#";
|
|
1745
1745
|
}.r-block {
|
|
1746
1746
|
position: relative;
|
|
1747
1747
|
width: 100%;
|
|
@@ -1752,46 +1752,6 @@
|
|
|
1752
1752
|
scrollbar-color: var(--r-main-200) transparent;
|
|
1753
1753
|
box-sizing: border-box;
|
|
1754
1754
|
z-index: 1;
|
|
1755
|
-
}.r-h1 {
|
|
1756
|
-
font-size: 32px;
|
|
1757
|
-
line-height: 1.4;
|
|
1758
|
-
margin-block-start: 0.67em;
|
|
1759
|
-
margin-block-end: 0.67em;
|
|
1760
|
-
}
|
|
1761
|
-
|
|
1762
|
-
.r-h2 {
|
|
1763
|
-
font-size: 26px;
|
|
1764
|
-
line-height: 1.4;
|
|
1765
|
-
margin-block-start: 0.83em;
|
|
1766
|
-
margin-block-end: 0.83em;
|
|
1767
|
-
}
|
|
1768
|
-
|
|
1769
|
-
.r-h3 {
|
|
1770
|
-
font-size: 22px;
|
|
1771
|
-
line-height: 1.4;
|
|
1772
|
-
margin-block-start: 1em;
|
|
1773
|
-
margin-block-end: 1em;
|
|
1774
|
-
}
|
|
1775
|
-
|
|
1776
|
-
.r-h4 {
|
|
1777
|
-
font-size: 20px;
|
|
1778
|
-
line-height: 1.4;
|
|
1779
|
-
margin-block-start: 1.33em;
|
|
1780
|
-
margin-block-end: 1.33em;
|
|
1781
|
-
}
|
|
1782
|
-
|
|
1783
|
-
.r-h5 {
|
|
1784
|
-
font-size: 18px;
|
|
1785
|
-
line-height: 1.4;
|
|
1786
|
-
margin-block-start: 1.5em;
|
|
1787
|
-
margin-block-end: 1.5em;
|
|
1788
|
-
}
|
|
1789
|
-
|
|
1790
|
-
.r-h6 {
|
|
1791
|
-
font-size: 16px;
|
|
1792
|
-
line-height: 1.4;
|
|
1793
|
-
margin-block-start: 1.8em;
|
|
1794
|
-
margin-block-end: 1.8em;
|
|
1795
1755
|
}.r-blockquote {
|
|
1796
1756
|
padding: 4px 12px 4px 20px;
|
|
1797
1757
|
border: 4px solid var(--r-main-100);
|
|
@@ -1849,6 +1809,46 @@
|
|
|
1849
1809
|
}
|
|
1850
1810
|
.r-blockquote-caution .r-blockquote-title {
|
|
1851
1811
|
color: var(--r-caution);
|
|
1812
|
+
}.r-h1 {
|
|
1813
|
+
font-size: 32px;
|
|
1814
|
+
line-height: 1.4;
|
|
1815
|
+
margin-block-start: 0.67em;
|
|
1816
|
+
margin-block-end: 0.67em;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
.r-h2 {
|
|
1820
|
+
font-size: 26px;
|
|
1821
|
+
line-height: 1.4;
|
|
1822
|
+
margin-block-start: 0.83em;
|
|
1823
|
+
margin-block-end: 0.83em;
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
.r-h3 {
|
|
1827
|
+
font-size: 22px;
|
|
1828
|
+
line-height: 1.4;
|
|
1829
|
+
margin-block-start: 1em;
|
|
1830
|
+
margin-block-end: 1em;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.r-h4 {
|
|
1834
|
+
font-size: 20px;
|
|
1835
|
+
line-height: 1.4;
|
|
1836
|
+
margin-block-start: 1.33em;
|
|
1837
|
+
margin-block-end: 1.33em;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.r-h5 {
|
|
1841
|
+
font-size: 18px;
|
|
1842
|
+
line-height: 1.4;
|
|
1843
|
+
margin-block-start: 1.5em;
|
|
1844
|
+
margin-block-end: 1.5em;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.r-h6 {
|
|
1848
|
+
font-size: 16px;
|
|
1849
|
+
line-height: 1.4;
|
|
1850
|
+
margin-block-start: 1.8em;
|
|
1851
|
+
margin-block-end: 1.8em;
|
|
1852
1852
|
}.r-img {
|
|
1853
1853
|
max-width: 100%;
|
|
1854
1854
|
box-sizing: border-box;
|
|
@@ -2017,6 +2017,10 @@
|
|
|
2017
2017
|
background-color: currentColor;
|
|
2018
2018
|
border-radius: 0 0 0 4px;
|
|
2019
2019
|
box-sizing: border-box;
|
|
2020
|
+
}.r-ol {
|
|
2021
|
+
padding-inline-start: 2rem;
|
|
2022
|
+
margin-block-start: 1em;
|
|
2023
|
+
margin-block-end: 1em;
|
|
2020
2024
|
}.r-li {
|
|
2021
2025
|
line-height: 1.8;
|
|
2022
2026
|
margin-block-start: 6px;
|
|
@@ -2028,10 +2032,6 @@
|
|
|
2028
2032
|
padding-inline-start: 20px;
|
|
2029
2033
|
margin-block-start: 6px;
|
|
2030
2034
|
margin-block-end: 6px;
|
|
2031
|
-
}.r-ol {
|
|
2032
|
-
padding-inline-start: 2rem;
|
|
2033
|
-
margin-block-start: 1em;
|
|
2034
|
-
margin-block-end: 1em;
|
|
2035
2035
|
}.r-ul {
|
|
2036
2036
|
padding-inline-start: 2rem;
|
|
2037
2037
|
margin-block-start: 1em;
|
|
@@ -2054,59 +2054,55 @@
|
|
|
2054
2054
|
z-index: -1;
|
|
2055
2055
|
border-radius: 8px;
|
|
2056
2056
|
border: 1px solid var(--r-main-200);
|
|
2057
|
-
}.r-
|
|
2057
|
+
}.r-td {
|
|
2058
2058
|
padding: 8px 12px;
|
|
2059
2059
|
border-collapse: collapse;
|
|
2060
|
-
background-color: var(--r-main-100);
|
|
2061
|
-
border-bottom: 1px solid var(--r-main-200);
|
|
2062
2060
|
}
|
|
2063
|
-
.r-
|
|
2064
|
-
border-top-left-radius: 6px;
|
|
2065
|
-
}
|
|
2066
|
-
.r-thead .r-th:last-child {
|
|
2067
|
-
border-top-right-radius: 6px;
|
|
2068
|
-
}
|
|
2069
|
-
.r-th:not(:last-child) {
|
|
2061
|
+
.r-td:not(:last-child) {
|
|
2070
2062
|
border-right: 1px solid var(--r-main-200);
|
|
2071
2063
|
}
|
|
2072
2064
|
|
|
2073
|
-
.r-
|
|
2065
|
+
.r-td_left {
|
|
2074
2066
|
text-align: left;
|
|
2075
2067
|
}
|
|
2076
2068
|
|
|
2077
|
-
.r-
|
|
2069
|
+
.r-td_center {
|
|
2078
2070
|
text-align: center;
|
|
2079
2071
|
}
|
|
2080
2072
|
|
|
2081
|
-
.r-
|
|
2073
|
+
.r-td_right {
|
|
2082
2074
|
text-align: right;
|
|
2083
|
-
}.r-
|
|
2075
|
+
}.r-th {
|
|
2084
2076
|
padding: 8px 12px;
|
|
2085
2077
|
border-collapse: collapse;
|
|
2078
|
+
background-color: var(--r-main-100);
|
|
2079
|
+
border-bottom: 1px solid var(--r-main-200);
|
|
2086
2080
|
}
|
|
2087
|
-
.r-
|
|
2081
|
+
.r-thead .r-th:first-child {
|
|
2082
|
+
border-top-left-radius: 6px;
|
|
2083
|
+
}
|
|
2084
|
+
.r-thead .r-th:last-child {
|
|
2085
|
+
border-top-right-radius: 6px;
|
|
2086
|
+
}
|
|
2087
|
+
.r-th:not(:last-child) {
|
|
2088
2088
|
border-right: 1px solid var(--r-main-200);
|
|
2089
2089
|
}
|
|
2090
2090
|
|
|
2091
|
-
.r-
|
|
2091
|
+
.r-th_left {
|
|
2092
2092
|
text-align: left;
|
|
2093
2093
|
}
|
|
2094
2094
|
|
|
2095
|
-
.r-
|
|
2095
|
+
.r-th_center {
|
|
2096
2096
|
text-align: center;
|
|
2097
2097
|
}
|
|
2098
2098
|
|
|
2099
|
-
.r-
|
|
2099
|
+
.r-th_right {
|
|
2100
2100
|
text-align: right;
|
|
2101
2101
|
}.r-tr {
|
|
2102
2102
|
border-collapse: collapse;
|
|
2103
2103
|
}
|
|
2104
2104
|
.r-tr:not(:first-child) {
|
|
2105
2105
|
border-top: 1px solid var(--r-main-200);
|
|
2106
|
-
}.r-task-ol {
|
|
2107
|
-
list-style: none;
|
|
2108
|
-
}.r-task-ul {
|
|
2109
|
-
list-style: none;
|
|
2110
2106
|
}.r-task-li.r-task-li {
|
|
2111
2107
|
margin-block-start: 2px;
|
|
2112
2108
|
margin-block-end: 2px;
|
|
@@ -2136,6 +2132,10 @@
|
|
|
2136
2132
|
|
|
2137
2133
|
.r-task-label-text {
|
|
2138
2134
|
vertical-align: middle;
|
|
2135
|
+
}.r-task-ol {
|
|
2136
|
+
list-style: none;
|
|
2137
|
+
}.r-task-ul {
|
|
2138
|
+
list-style: none;
|
|
2139
2139
|
}.r-tooltip {
|
|
2140
2140
|
font-family: var(--monospace-font, monospace, monospace);
|
|
2141
2141
|
display: none;
|