robindoc 0.0.0-experimental-d1e1e97 → 0.0.0-experimental-27006f2
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 +355 -355
- package/package.json +1 -1
package/lib/styles.css
CHANGED
|
@@ -1,93 +1,4 @@
|
|
|
1
|
-
.r-
|
|
2
|
-
position: sticky;
|
|
3
|
-
background-color: var(--r-body);
|
|
4
|
-
top: 0;
|
|
5
|
-
border-bottom: 1px solid var(--r-neutral-300);
|
|
6
|
-
height: 60px;
|
|
7
|
-
z-index: 1000;
|
|
8
|
-
box-sizing: border-box;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.r-header-body {
|
|
12
|
-
height: 100%;
|
|
13
|
-
display: flex;
|
|
14
|
-
justify-content: space-between;
|
|
15
|
-
align-items: center;
|
|
16
|
-
gap: 24px;
|
|
17
|
-
box-sizing: border-box;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.r-header-logo {
|
|
21
|
-
display: block;
|
|
22
|
-
margin-right: 24px;
|
|
23
|
-
color: var(--r-neutral-700);
|
|
24
|
-
transition: color 0.2s;
|
|
25
|
-
box-sizing: border-box;
|
|
26
|
-
}
|
|
27
|
-
.r-header-logo:hover, .r-header-logo:focus {
|
|
28
|
-
color: var(--r-neutral-950);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.r-header-nav {
|
|
32
|
-
display: flex;
|
|
33
|
-
flex-direction: column;
|
|
34
|
-
gap: 12px 16px;
|
|
35
|
-
}
|
|
36
|
-
@media screen and (width >= 1024px) {
|
|
37
|
-
.r-header-nav {
|
|
38
|
-
flex-direction: row;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.r-header-link {
|
|
43
|
-
color: var(--r-neutral-600);
|
|
44
|
-
text-decoration: none;
|
|
45
|
-
padding: 4px 0;
|
|
46
|
-
transition: color 0.2s;
|
|
47
|
-
box-sizing: border-box;
|
|
48
|
-
}
|
|
49
|
-
.r-header-link:hover, .r-header-link:focus-visible {
|
|
50
|
-
color: var(--r-neutral-950);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.r-header-link._target {
|
|
54
|
-
color: var(--r-primary-800);
|
|
55
|
-
}
|
|
56
|
-
.r-header-link._target:hover, .r-header-link._target:focus-visible {
|
|
57
|
-
color: var(--r-primary-700);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.r-header-actions {
|
|
61
|
-
display: flex;
|
|
62
|
-
flex-direction: column-reverse;
|
|
63
|
-
gap: 16px;
|
|
64
|
-
align-items: stretch;
|
|
65
|
-
}
|
|
66
|
-
@media screen and (width >= 1024px) {
|
|
67
|
-
.r-header-actions {
|
|
68
|
-
flex-direction: row;
|
|
69
|
-
align-items: center;
|
|
70
|
-
gap: 28px;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.r-header-sections {
|
|
75
|
-
display: flex;
|
|
76
|
-
align-items: center;
|
|
77
|
-
gap: 12px;
|
|
78
|
-
}
|
|
79
|
-
@media screen and (width < 768px) {
|
|
80
|
-
.r-header-sections .r-dropdown {
|
|
81
|
-
flex: 1;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
@media screen and (width < 768px) {
|
|
85
|
-
.r-header-sections .r-dropdown-drop {
|
|
86
|
-
max-width: none;
|
|
87
|
-
width: 100%;
|
|
88
|
-
left: 0;
|
|
89
|
-
}
|
|
90
|
-
}.r-footer {
|
|
1
|
+
.r-footer {
|
|
91
2
|
border-top: 1px solid var(--r-neutral-300);
|
|
92
3
|
padding-top: 24px;
|
|
93
4
|
padding-bottom: 24px;
|
|
@@ -422,6 +333,95 @@
|
|
|
422
333
|
--r-cl-60: #86181d;
|
|
423
334
|
--r-cl-61: #144620;
|
|
424
335
|
--r-cl-62: #c24e00;
|
|
336
|
+
}.r-header {
|
|
337
|
+
position: sticky;
|
|
338
|
+
background-color: var(--r-body);
|
|
339
|
+
top: 0;
|
|
340
|
+
border-bottom: 1px solid var(--r-neutral-300);
|
|
341
|
+
height: 60px;
|
|
342
|
+
z-index: 1000;
|
|
343
|
+
box-sizing: border-box;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.r-header-body {
|
|
347
|
+
height: 100%;
|
|
348
|
+
display: flex;
|
|
349
|
+
justify-content: space-between;
|
|
350
|
+
align-items: center;
|
|
351
|
+
gap: 24px;
|
|
352
|
+
box-sizing: border-box;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.r-header-logo {
|
|
356
|
+
display: block;
|
|
357
|
+
margin-right: 24px;
|
|
358
|
+
color: var(--r-neutral-700);
|
|
359
|
+
transition: color 0.2s;
|
|
360
|
+
box-sizing: border-box;
|
|
361
|
+
}
|
|
362
|
+
.r-header-logo:hover, .r-header-logo:focus {
|
|
363
|
+
color: var(--r-neutral-950);
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.r-header-nav {
|
|
367
|
+
display: flex;
|
|
368
|
+
flex-direction: column;
|
|
369
|
+
gap: 12px 16px;
|
|
370
|
+
}
|
|
371
|
+
@media screen and (width >= 1024px) {
|
|
372
|
+
.r-header-nav {
|
|
373
|
+
flex-direction: row;
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.r-header-link {
|
|
378
|
+
color: var(--r-neutral-600);
|
|
379
|
+
text-decoration: none;
|
|
380
|
+
padding: 4px 0;
|
|
381
|
+
transition: color 0.2s;
|
|
382
|
+
box-sizing: border-box;
|
|
383
|
+
}
|
|
384
|
+
.r-header-link:hover, .r-header-link:focus-visible {
|
|
385
|
+
color: var(--r-neutral-950);
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.r-header-link._target {
|
|
389
|
+
color: var(--r-primary-800);
|
|
390
|
+
}
|
|
391
|
+
.r-header-link._target:hover, .r-header-link._target:focus-visible {
|
|
392
|
+
color: var(--r-primary-700);
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.r-header-actions {
|
|
396
|
+
display: flex;
|
|
397
|
+
flex-direction: column-reverse;
|
|
398
|
+
gap: 16px;
|
|
399
|
+
align-items: stretch;
|
|
400
|
+
}
|
|
401
|
+
@media screen and (width >= 1024px) {
|
|
402
|
+
.r-header-actions {
|
|
403
|
+
flex-direction: row;
|
|
404
|
+
align-items: center;
|
|
405
|
+
gap: 28px;
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.r-header-sections {
|
|
410
|
+
display: flex;
|
|
411
|
+
align-items: center;
|
|
412
|
+
gap: 12px;
|
|
413
|
+
}
|
|
414
|
+
@media screen and (width < 768px) {
|
|
415
|
+
.r-header-sections .r-dropdown {
|
|
416
|
+
flex: 1;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
@media screen and (width < 768px) {
|
|
420
|
+
.r-header-sections .r-dropdown-drop {
|
|
421
|
+
max-width: none;
|
|
422
|
+
width: 100%;
|
|
423
|
+
left: 0;
|
|
424
|
+
}
|
|
425
425
|
}.r-docs-container {
|
|
426
426
|
min-height: calc(100dvh - var(--r-header-height));
|
|
427
427
|
overflow-wrap: break-word;
|
|
@@ -467,6 +467,57 @@
|
|
|
467
467
|
top: 8px;
|
|
468
468
|
left: 12px;
|
|
469
469
|
z-index: 1001;
|
|
470
|
+
}.keylink-to-navigation {
|
|
471
|
+
margin-top: -40px;
|
|
472
|
+
}.r-article {
|
|
473
|
+
padding: 20px 0 80px;
|
|
474
|
+
grid-area: content;
|
|
475
|
+
}
|
|
476
|
+
@media screen and (width >= 1180px) {
|
|
477
|
+
.r-article {
|
|
478
|
+
padding: 32px 0 80px;
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
.r-article > *:first-child {
|
|
482
|
+
margin-top: 0;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.r-checkbox {
|
|
486
|
+
cursor: pointer;
|
|
487
|
+
width: 20px;
|
|
488
|
+
height: 20px;
|
|
489
|
+
margin: 4px;
|
|
490
|
+
vertical-align: middle;
|
|
491
|
+
box-sizing: border-box;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.r-label {
|
|
495
|
+
cursor: pointer;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.r-task-ol,
|
|
499
|
+
.r-task-ul {
|
|
500
|
+
list-style: none;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.r-task-label {
|
|
504
|
+
display: block;
|
|
505
|
+
width: 100%;
|
|
506
|
+
padding-top: 2px;
|
|
507
|
+
padding-bottom: 2px;
|
|
508
|
+
box-sizing: border-box;
|
|
509
|
+
}
|
|
510
|
+
.r-task-label:hover .r-checkbox {
|
|
511
|
+
filter: brightness(0.8);
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.r-task-li.r-task-li {
|
|
515
|
+
margin-block-start: 2px;
|
|
516
|
+
margin-block-end: 2px;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.r-label-text {
|
|
520
|
+
vertical-align: middle;
|
|
470
521
|
}.r-sidebar {
|
|
471
522
|
grid-area: sidebar;
|
|
472
523
|
box-sizing: border-box;
|
|
@@ -741,57 +792,84 @@
|
|
|
741
792
|
|
|
742
793
|
.r-sidebar-drop[open] > .r-sidebar-drop-btn > .r-sidebar-drop-icon {
|
|
743
794
|
transform: rotate(90deg);
|
|
744
|
-
}.
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
padding:
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
795
|
+
}.r-container {
|
|
796
|
+
max-width: 1180px;
|
|
797
|
+
padding-right: 12px;
|
|
798
|
+
padding-left: 12px;
|
|
799
|
+
margin-right: auto;
|
|
800
|
+
margin-left: auto;
|
|
801
|
+
box-sizing: border-box;
|
|
802
|
+
}.r-theme-switcher {
|
|
803
|
+
position: relative;
|
|
804
|
+
display: flex;
|
|
805
|
+
gap: 4px;
|
|
806
|
+
width: 108px;
|
|
807
|
+
height: 36px;
|
|
808
|
+
padding: 2px;
|
|
809
|
+
background-color: var(--r-neutral-950);
|
|
810
|
+
border-radius: 14px;
|
|
811
|
+
box-sizing: border-box;
|
|
754
812
|
}
|
|
755
|
-
.r-
|
|
756
|
-
|
|
813
|
+
.r-theme-switcher::before {
|
|
814
|
+
content: "";
|
|
815
|
+
position: absolute;
|
|
816
|
+
display: block;
|
|
817
|
+
height: 32px;
|
|
818
|
+
width: 32px;
|
|
819
|
+
top: 2px;
|
|
820
|
+
left: 2px;
|
|
821
|
+
background-color: var(--r-body);
|
|
822
|
+
border-radius: 12px;
|
|
823
|
+
transition: left 0.2s;
|
|
824
|
+
box-sizing: border-box;
|
|
757
825
|
}
|
|
758
826
|
|
|
759
|
-
.r-
|
|
827
|
+
.r-theme-switcher-btn {
|
|
828
|
+
padding: 8px;
|
|
829
|
+
background: none;
|
|
830
|
+
border: 0;
|
|
831
|
+
border-radius: 12px;
|
|
760
832
|
cursor: pointer;
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
833
|
+
color: var(--r-neutral-50);
|
|
834
|
+
fill: var(--r-neutral-950);
|
|
835
|
+
z-index: 1;
|
|
836
|
+
transition: color 0.2s 0.1s, fill 0.2s;
|
|
837
|
+
}
|
|
838
|
+
.r-theme-switcher-btn:hover {
|
|
839
|
+
color: var(--r-neutral-50);
|
|
840
|
+
fill: var(--r-neutral-50);
|
|
766
841
|
}
|
|
767
842
|
|
|
768
|
-
.r-
|
|
769
|
-
|
|
843
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher::before {
|
|
844
|
+
left: 2px;
|
|
770
845
|
}
|
|
771
846
|
|
|
772
|
-
.r-
|
|
773
|
-
|
|
774
|
-
|
|
847
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher-btn__dark {
|
|
848
|
+
color: var(--r-neutral-950);
|
|
849
|
+
pointer-events: none;
|
|
775
850
|
}
|
|
776
851
|
|
|
777
|
-
.r-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
padding-top: 2px;
|
|
781
|
-
padding-bottom: 2px;
|
|
782
|
-
box-sizing: border-box;
|
|
852
|
+
.r-theme-switcher::before,
|
|
853
|
+
.r-theme-system .r-theme-switcher::before {
|
|
854
|
+
left: 38px;
|
|
783
855
|
}
|
|
784
|
-
|
|
785
|
-
|
|
856
|
+
|
|
857
|
+
.r-theme-system .r-theme-switcher-btn__system {
|
|
858
|
+
color: var(--r-neutral-950);
|
|
859
|
+
pointer-events: none;
|
|
786
860
|
}
|
|
787
861
|
|
|
788
|
-
.r-
|
|
789
|
-
|
|
790
|
-
margin-block-end: 2px;
|
|
862
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher::before {
|
|
863
|
+
left: 74px;
|
|
791
864
|
}
|
|
792
865
|
|
|
793
|
-
.r-
|
|
794
|
-
|
|
866
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher-btn__light {
|
|
867
|
+
color: var(--r-neutral-950);
|
|
868
|
+
pointer-events: none;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.r-theme-switcher-svg {
|
|
872
|
+
display: block;
|
|
795
873
|
}.r-header-menu {
|
|
796
874
|
display: flex;
|
|
797
875
|
justify-content: flex-end;
|
|
@@ -996,31 +1074,6 @@
|
|
|
996
1074
|
font-size: 14px;
|
|
997
1075
|
color: var(--r-neutral-600);
|
|
998
1076
|
margin: 12px 0 0;
|
|
999
|
-
}.r-header-social {
|
|
1000
|
-
display: flex;
|
|
1001
|
-
flex: 1;
|
|
1002
|
-
justify-content: flex-end;
|
|
1003
|
-
}
|
|
1004
|
-
@media screen and (width >= 1024px) {
|
|
1005
|
-
.r-header-social {
|
|
1006
|
-
flex: none;
|
|
1007
|
-
justify-content: unset;
|
|
1008
|
-
}
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
.r-header-social-git {
|
|
1012
|
-
color: var(--r-neutral-700);
|
|
1013
|
-
transition: color 0.2s;
|
|
1014
|
-
}
|
|
1015
|
-
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
1016
|
-
color: var(--r-neutral-950);
|
|
1017
|
-
}.r-container {
|
|
1018
|
-
max-width: 1180px;
|
|
1019
|
-
padding-right: 12px;
|
|
1020
|
-
padding-left: 12px;
|
|
1021
|
-
margin-right: auto;
|
|
1022
|
-
margin-left: auto;
|
|
1023
|
-
box-sizing: border-box;
|
|
1024
1077
|
}.r-dropdown {
|
|
1025
1078
|
position: relative;
|
|
1026
1079
|
color: var(--r-neutral-600);
|
|
@@ -1049,128 +1102,75 @@
|
|
|
1049
1102
|
cursor: pointer;
|
|
1050
1103
|
padding: 10px 4px;
|
|
1051
1104
|
font-size: 16px;
|
|
1052
|
-
border: 0;
|
|
1053
|
-
background: none;
|
|
1054
|
-
z-index: 1;
|
|
1055
|
-
box-sizing: border-box;
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
|
-
.r-dropdown-chevron {
|
|
1059
|
-
display: block;
|
|
1060
|
-
margin-left: 6px;
|
|
1061
|
-
transition: transform 0.3s 0.1s;
|
|
1062
|
-
box-sizing: border-box;
|
|
1063
|
-
}
|
|
1064
|
-
|
|
1065
|
-
.r-dropdown-drop {
|
|
1066
|
-
list-style: none;
|
|
1067
|
-
position: absolute;
|
|
1068
|
-
top: 16px;
|
|
1069
|
-
left: -12px;
|
|
1070
|
-
visibility: hidden;
|
|
1071
|
-
pointer-events: none;
|
|
1072
|
-
opacity: 0;
|
|
1073
|
-
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
1074
|
-
background-color: var(--r-neutral-50);
|
|
1075
|
-
border: 1px solid var(--r-neutral-100);
|
|
1076
|
-
border-radius: 8px;
|
|
1077
|
-
margin: 0;
|
|
1078
|
-
padding: 2px 6px;
|
|
1079
|
-
min-width: 120px;
|
|
1080
|
-
max-width: 180px;
|
|
1081
|
-
box-sizing: border-box;
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1084
|
-
.r-dropdown-link {
|
|
1085
|
-
display: block;
|
|
1086
|
-
width: 100%;
|
|
1087
|
-
text-decoration: none;
|
|
1088
|
-
color: var(--r-neutral-700);
|
|
1089
|
-
padding: 4px 8px;
|
|
1090
|
-
margin-top: 4px;
|
|
1091
|
-
margin-bottom: 4px;
|
|
1092
|
-
border-radius: 4px;
|
|
1093
|
-
transition: background-color 0.2s;
|
|
1094
|
-
box-sizing: border-box;
|
|
1095
|
-
}
|
|
1096
|
-
.r-dropdown-link:hover {
|
|
1097
|
-
color: var(--r-neutral-900);
|
|
1098
|
-
background-color: var(--r-neutral-100);
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
.r-dropdown-link._active {
|
|
1102
|
-
color: var(--r-primary-700);
|
|
1103
|
-
}.r-theme-switcher {
|
|
1104
|
-
position: relative;
|
|
1105
|
-
display: flex;
|
|
1106
|
-
gap: 4px;
|
|
1107
|
-
width: 108px;
|
|
1108
|
-
height: 36px;
|
|
1109
|
-
padding: 2px;
|
|
1110
|
-
background-color: var(--r-neutral-950);
|
|
1111
|
-
border-radius: 14px;
|
|
1112
|
-
box-sizing: border-box;
|
|
1113
|
-
}
|
|
1114
|
-
.r-theme-switcher::before {
|
|
1115
|
-
content: "";
|
|
1116
|
-
position: absolute;
|
|
1117
|
-
display: block;
|
|
1118
|
-
height: 32px;
|
|
1119
|
-
width: 32px;
|
|
1120
|
-
top: 2px;
|
|
1121
|
-
left: 2px;
|
|
1122
|
-
background-color: var(--r-body);
|
|
1123
|
-
border-radius: 12px;
|
|
1124
|
-
transition: left 0.2s;
|
|
1125
|
-
box-sizing: border-box;
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
.r-theme-switcher-btn {
|
|
1129
|
-
padding: 8px;
|
|
1130
|
-
background: none;
|
|
1131
|
-
border: 0;
|
|
1132
|
-
border-radius: 12px;
|
|
1133
|
-
cursor: pointer;
|
|
1134
|
-
color: var(--r-neutral-50);
|
|
1135
|
-
fill: var(--r-neutral-950);
|
|
1136
|
-
z-index: 1;
|
|
1137
|
-
transition: color 0.2s 0.1s, fill 0.2s;
|
|
1138
|
-
}
|
|
1139
|
-
.r-theme-switcher-btn:hover {
|
|
1140
|
-
color: var(--r-neutral-50);
|
|
1141
|
-
fill: var(--r-neutral-50);
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
.r-theme-dark:not(.r-theme-system) .r-theme-switcher::before {
|
|
1145
|
-
left: 2px;
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1148
|
-
.r-theme-dark:not(.r-theme-system) .r-theme-switcher-btn__dark {
|
|
1149
|
-
color: var(--r-neutral-950);
|
|
1150
|
-
pointer-events: none;
|
|
1105
|
+
border: 0;
|
|
1106
|
+
background: none;
|
|
1107
|
+
z-index: 1;
|
|
1108
|
+
box-sizing: border-box;
|
|
1151
1109
|
}
|
|
1152
1110
|
|
|
1153
|
-
.r-
|
|
1154
|
-
|
|
1155
|
-
left:
|
|
1111
|
+
.r-dropdown-chevron {
|
|
1112
|
+
display: block;
|
|
1113
|
+
margin-left: 6px;
|
|
1114
|
+
transition: transform 0.3s 0.1s;
|
|
1115
|
+
box-sizing: border-box;
|
|
1156
1116
|
}
|
|
1157
1117
|
|
|
1158
|
-
.r-
|
|
1159
|
-
|
|
1118
|
+
.r-dropdown-drop {
|
|
1119
|
+
list-style: none;
|
|
1120
|
+
position: absolute;
|
|
1121
|
+
top: 16px;
|
|
1122
|
+
left: -12px;
|
|
1123
|
+
visibility: hidden;
|
|
1160
1124
|
pointer-events: none;
|
|
1125
|
+
opacity: 0;
|
|
1126
|
+
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
1127
|
+
background-color: var(--r-neutral-50);
|
|
1128
|
+
border: 1px solid var(--r-neutral-100);
|
|
1129
|
+
border-radius: 8px;
|
|
1130
|
+
margin: 0;
|
|
1131
|
+
padding: 2px 6px;
|
|
1132
|
+
min-width: 120px;
|
|
1133
|
+
max-width: 180px;
|
|
1134
|
+
box-sizing: border-box;
|
|
1161
1135
|
}
|
|
1162
1136
|
|
|
1163
|
-
.r-
|
|
1164
|
-
|
|
1137
|
+
.r-dropdown-link {
|
|
1138
|
+
display: block;
|
|
1139
|
+
width: 100%;
|
|
1140
|
+
text-decoration: none;
|
|
1141
|
+
color: var(--r-neutral-700);
|
|
1142
|
+
padding: 4px 8px;
|
|
1143
|
+
margin-top: 4px;
|
|
1144
|
+
margin-bottom: 4px;
|
|
1145
|
+
border-radius: 4px;
|
|
1146
|
+
transition: background-color 0.2s;
|
|
1147
|
+
box-sizing: border-box;
|
|
1148
|
+
}
|
|
1149
|
+
.r-dropdown-link:hover {
|
|
1150
|
+
color: var(--r-neutral-900);
|
|
1151
|
+
background-color: var(--r-neutral-100);
|
|
1165
1152
|
}
|
|
1166
1153
|
|
|
1167
|
-
.r-
|
|
1168
|
-
color: var(--r-
|
|
1169
|
-
|
|
1154
|
+
.r-dropdown-link._active {
|
|
1155
|
+
color: var(--r-primary-700);
|
|
1156
|
+
}.r-header-social {
|
|
1157
|
+
display: flex;
|
|
1158
|
+
flex: 1;
|
|
1159
|
+
justify-content: flex-end;
|
|
1160
|
+
}
|
|
1161
|
+
@media screen and (width >= 1024px) {
|
|
1162
|
+
.r-header-social {
|
|
1163
|
+
flex: none;
|
|
1164
|
+
justify-content: unset;
|
|
1165
|
+
}
|
|
1170
1166
|
}
|
|
1171
1167
|
|
|
1172
|
-
.r-
|
|
1173
|
-
|
|
1168
|
+
.r-header-social-git {
|
|
1169
|
+
color: var(--r-neutral-700);
|
|
1170
|
+
transition: color 0.2s;
|
|
1171
|
+
}
|
|
1172
|
+
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
1173
|
+
color: var(--r-neutral-950);
|
|
1174
1174
|
}.r-keylink {
|
|
1175
1175
|
display: block;
|
|
1176
1176
|
position: relative;
|
|
@@ -1191,47 +1191,6 @@
|
|
|
1191
1191
|
user-select: none;
|
|
1192
1192
|
pointer-events: none;
|
|
1193
1193
|
box-sizing: border-box;
|
|
1194
|
-
}.r-breadcrumbs {
|
|
1195
|
-
grid-area: breadcrumbs;
|
|
1196
|
-
list-style: none;
|
|
1197
|
-
margin: 0;
|
|
1198
|
-
padding: 20px 0 0;
|
|
1199
|
-
line-height: 2;
|
|
1200
|
-
}
|
|
1201
|
-
@media screen and (width >= 768px) {
|
|
1202
|
-
.r-breadcrumbs {
|
|
1203
|
-
padding: 32px 0 0;
|
|
1204
|
-
}
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
.r-breadcrumb {
|
|
1208
|
-
display: inline;
|
|
1209
|
-
}
|
|
1210
|
-
|
|
1211
|
-
.r-breadcrumb._previous::after {
|
|
1212
|
-
content: "/";
|
|
1213
|
-
font-weight: 600;
|
|
1214
|
-
margin-inline: 8px;
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
.r-breadcrumb-link {
|
|
1218
|
-
color: var(--r-neutral-700);
|
|
1219
|
-
text-decoration: none;
|
|
1220
|
-
}
|
|
1221
|
-
.r-breadcrumb-link:hover {
|
|
1222
|
-
color: var(--r-primary-800);
|
|
1223
|
-
}
|
|
1224
|
-
|
|
1225
|
-
.r-breadcrumb-link,
|
|
1226
|
-
.r-breadcrumb-title {
|
|
1227
|
-
display: inline;
|
|
1228
|
-
padding: 6px 0;
|
|
1229
|
-
margin: 0;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
.r-breadcrumb-title {
|
|
1233
|
-
color: var(--r-neutral-950);
|
|
1234
|
-
font-weight: 600;
|
|
1235
1194
|
}.r-contents {
|
|
1236
1195
|
grid-area: contents;
|
|
1237
1196
|
}
|
|
@@ -1465,6 +1424,47 @@
|
|
|
1465
1424
|
}
|
|
1466
1425
|
.r-contents-git:hover {
|
|
1467
1426
|
color: var(--r-neutral-900);
|
|
1427
|
+
}.r-breadcrumbs {
|
|
1428
|
+
grid-area: breadcrumbs;
|
|
1429
|
+
list-style: none;
|
|
1430
|
+
margin: 0;
|
|
1431
|
+
padding: 20px 0 0;
|
|
1432
|
+
line-height: 2;
|
|
1433
|
+
}
|
|
1434
|
+
@media screen and (width >= 768px) {
|
|
1435
|
+
.r-breadcrumbs {
|
|
1436
|
+
padding: 32px 0 0;
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
.r-breadcrumb {
|
|
1441
|
+
display: inline;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.r-breadcrumb._previous::after {
|
|
1445
|
+
content: "/";
|
|
1446
|
+
font-weight: 600;
|
|
1447
|
+
margin-inline: 8px;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
.r-breadcrumb-link {
|
|
1451
|
+
color: var(--r-neutral-700);
|
|
1452
|
+
text-decoration: none;
|
|
1453
|
+
}
|
|
1454
|
+
.r-breadcrumb-link:hover {
|
|
1455
|
+
color: var(--r-primary-800);
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
.r-breadcrumb-link,
|
|
1459
|
+
.r-breadcrumb-title {
|
|
1460
|
+
display: inline;
|
|
1461
|
+
padding: 6px 0;
|
|
1462
|
+
margin: 0;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
.r-breadcrumb-title {
|
|
1466
|
+
color: var(--r-neutral-950);
|
|
1467
|
+
font-weight: 600;
|
|
1468
1468
|
}.r-pagination {
|
|
1469
1469
|
grid-area: pagination;
|
|
1470
1470
|
display: grid;
|
|
@@ -1575,6 +1575,25 @@
|
|
|
1575
1575
|
background-color: currentColor;
|
|
1576
1576
|
border-radius: 0 0 0 4px;
|
|
1577
1577
|
box-sizing: border-box;
|
|
1578
|
+
}.r-anchor-heading:hover .r-anchor-heading-link {
|
|
1579
|
+
visibility: visible;
|
|
1580
|
+
opacity: 1;
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
.r-anchor-heading-link {
|
|
1584
|
+
visibility: hidden;
|
|
1585
|
+
opacity: 0;
|
|
1586
|
+
transition: opacity 0.3s allow-discrete;
|
|
1587
|
+
padding-inline: 8px;
|
|
1588
|
+
margin-inline-start: -4px;
|
|
1589
|
+
color: var(--r-neutral-600);
|
|
1590
|
+
text-decoration: none;
|
|
1591
|
+
}
|
|
1592
|
+
.r-anchor-heading-link:hover {
|
|
1593
|
+
color: var(--r-link-base-hovered);
|
|
1594
|
+
}
|
|
1595
|
+
.r-anchor-heading-link::after {
|
|
1596
|
+
content: "#";
|
|
1578
1597
|
}.r-code-section {
|
|
1579
1598
|
position: relative;
|
|
1580
1599
|
margin-block-start: 1.5em;
|
|
@@ -1619,25 +1638,6 @@
|
|
|
1619
1638
|
|
|
1620
1639
|
.r-code-section-filename {
|
|
1621
1640
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1622
|
-
}.r-anchor-heading:hover .r-anchor-heading-link {
|
|
1623
|
-
visibility: visible;
|
|
1624
|
-
opacity: 1;
|
|
1625
|
-
}
|
|
1626
|
-
|
|
1627
|
-
.r-anchor-heading-link {
|
|
1628
|
-
visibility: hidden;
|
|
1629
|
-
opacity: 0;
|
|
1630
|
-
transition: opacity 0.3s allow-discrete;
|
|
1631
|
-
padding-inline: 8px;
|
|
1632
|
-
margin-inline-start: -4px;
|
|
1633
|
-
color: var(--r-neutral-600);
|
|
1634
|
-
text-decoration: none;
|
|
1635
|
-
}
|
|
1636
|
-
.r-anchor-heading-link:hover {
|
|
1637
|
-
color: var(--r-link-base-hovered);
|
|
1638
|
-
}
|
|
1639
|
-
.r-anchor-heading-link::after {
|
|
1640
|
-
content: "#";
|
|
1641
1641
|
}.r-block {
|
|
1642
1642
|
width: 100%;
|
|
1643
1643
|
overflow: auto;
|
|
@@ -1646,6 +1646,21 @@
|
|
|
1646
1646
|
scrollbar-width: thin;
|
|
1647
1647
|
scrollbar-color: var(--r-neutral-200) transparent;
|
|
1648
1648
|
box-sizing: border-box;
|
|
1649
|
+
}.r-code-block {
|
|
1650
|
+
font-family: var(--monospace-font, monospace, monospace);
|
|
1651
|
+
font-size: 16px;
|
|
1652
|
+
line-height: 1.33;
|
|
1653
|
+
border-radius: 6px;
|
|
1654
|
+
padding: 16px 20px;
|
|
1655
|
+
margin-block-start: 1.5em;
|
|
1656
|
+
margin-block-end: 1.75em;
|
|
1657
|
+
color: var(--r-primary-800);
|
|
1658
|
+
background-color: var(--r-neutral-50);
|
|
1659
|
+
border: 1px solid var(--r-neutral-300);
|
|
1660
|
+
overflow-x: auto;
|
|
1661
|
+
scrollbar-width: thin;
|
|
1662
|
+
scrollbar-color: var(--r-neutral-200) transparent;
|
|
1663
|
+
box-sizing: border-box;
|
|
1649
1664
|
}.r-blockquote {
|
|
1650
1665
|
background-color: var(--r-neutral-100);
|
|
1651
1666
|
padding: 8px 12px 8px 20px;
|
|
@@ -1714,21 +1729,6 @@
|
|
|
1714
1729
|
|
|
1715
1730
|
.r-code-span + .r-content-link-external {
|
|
1716
1731
|
margin-left: -12px;
|
|
1717
|
-
}.r-code-block {
|
|
1718
|
-
font-family: var(--monospace-font, monospace, monospace);
|
|
1719
|
-
font-size: 16px;
|
|
1720
|
-
line-height: 1.33;
|
|
1721
|
-
border-radius: 6px;
|
|
1722
|
-
padding: 16px 20px;
|
|
1723
|
-
margin-block-start: 1.5em;
|
|
1724
|
-
margin-block-end: 1.75em;
|
|
1725
|
-
color: var(--r-primary-800);
|
|
1726
|
-
background-color: var(--r-neutral-50);
|
|
1727
|
-
border: 1px solid var(--r-neutral-300);
|
|
1728
|
-
overflow-x: auto;
|
|
1729
|
-
scrollbar-width: thin;
|
|
1730
|
-
scrollbar-color: var(--r-neutral-200) transparent;
|
|
1731
|
-
box-sizing: border-box;
|
|
1732
1732
|
}.r-h1 {
|
|
1733
1733
|
font-size: 32px;
|
|
1734
1734
|
line-height: 1.4;
|
|
@@ -1819,6 +1819,22 @@
|
|
|
1819
1819
|
|
|
1820
1820
|
.r-tab-header-code {
|
|
1821
1821
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1822
|
+
}.r-kbd-container {
|
|
1823
|
+
display: flex;
|
|
1824
|
+
gap: 4px;
|
|
1825
|
+
font-size: 14px;
|
|
1826
|
+
cursor: pointer;
|
|
1827
|
+
}
|
|
1828
|
+
.r-kbd-container:hover {
|
|
1829
|
+
color: var(--r-neutral-950);
|
|
1830
|
+
}.r-kbd-key {
|
|
1831
|
+
background-color: var(--r-neutral-200);
|
|
1832
|
+
font-size: 12px;
|
|
1833
|
+
border-radius: 4px;
|
|
1834
|
+
padding: 5px 8px;
|
|
1835
|
+
min-width: 24px;
|
|
1836
|
+
text-align: center;
|
|
1837
|
+
box-sizing: border-box;
|
|
1822
1838
|
}.r-modal {
|
|
1823
1839
|
position: fixed;
|
|
1824
1840
|
left: 0;
|
|
@@ -1854,22 +1870,6 @@
|
|
|
1854
1870
|
.r-modal._visible {
|
|
1855
1871
|
transform: translateX(-50%) scale(1);
|
|
1856
1872
|
}
|
|
1857
|
-
}.r-kbd-container {
|
|
1858
|
-
display: flex;
|
|
1859
|
-
gap: 4px;
|
|
1860
|
-
font-size: 14px;
|
|
1861
|
-
cursor: pointer;
|
|
1862
|
-
}
|
|
1863
|
-
.r-kbd-container:hover {
|
|
1864
|
-
color: var(--r-neutral-950);
|
|
1865
|
-
}.r-kbd-key {
|
|
1866
|
-
background-color: var(--r-neutral-200);
|
|
1867
|
-
font-size: 12px;
|
|
1868
|
-
border-radius: 4px;
|
|
1869
|
-
padding: 5px 8px;
|
|
1870
|
-
min-width: 24px;
|
|
1871
|
-
text-align: center;
|
|
1872
|
-
box-sizing: border-box;
|
|
1873
1873
|
}.r-copy-button {
|
|
1874
1874
|
position: relative;
|
|
1875
1875
|
padding: 8px;
|
|
@@ -2049,10 +2049,10 @@
|
|
|
2049
2049
|
|
|
2050
2050
|
.r-task-label-text {
|
|
2051
2051
|
vertical-align: middle;
|
|
2052
|
-
}.r-task-ul {
|
|
2053
|
-
list-style: none;
|
|
2054
2052
|
}.r-task-ol {
|
|
2055
2053
|
list-style: none;
|
|
2054
|
+
}.r-task-ul {
|
|
2055
|
+
list-style: none;
|
|
2056
2056
|
}.r-backdrop {
|
|
2057
2057
|
position: fixed;
|
|
2058
2058
|
top: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "robindoc",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-27006f2",
|
|
4
4
|
"description": "Robindoc is a framework for automatically creating documentation websites based on markdown files, built on React.js Server Components",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"scripts": {
|