robindoc 0.0.0-experimental-2d30cfd → 0.0.0-experimental-11b183c
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 +301 -301
- package/package.json +1 -1
package/lib/styles.css
CHANGED
|
@@ -1,4 +1,93 @@
|
|
|
1
|
-
.r-
|
|
1
|
+
.r-header {
|
|
2
|
+
position: sticky;
|
|
3
|
+
background-color: var(--r-main-50);
|
|
4
|
+
top: 0;
|
|
5
|
+
border-bottom: 1px solid var(--r-main-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-main-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-main-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-main-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-main-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 {
|
|
2
91
|
border-top: 1px solid var(--r-main-300);
|
|
3
92
|
padding-top: 16px;
|
|
4
93
|
padding-bottom: 16px;
|
|
@@ -310,95 +399,58 @@
|
|
|
310
399
|
top: 8px;
|
|
311
400
|
left: 12px;
|
|
312
401
|
z-index: 1001;
|
|
313
|
-
}.r-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
top: 0;
|
|
317
|
-
border-bottom: 1px solid var(--r-main-300);
|
|
318
|
-
height: 60px;
|
|
319
|
-
z-index: 1000;
|
|
320
|
-
box-sizing: border-box;
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
.r-header-body {
|
|
324
|
-
height: 100%;
|
|
325
|
-
display: flex;
|
|
326
|
-
justify-content: space-between;
|
|
327
|
-
align-items: center;
|
|
328
|
-
gap: 24px;
|
|
329
|
-
box-sizing: border-box;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.r-header-logo {
|
|
333
|
-
display: block;
|
|
334
|
-
margin-right: 24px;
|
|
335
|
-
color: var(--r-main-700);
|
|
336
|
-
transition: color 0.2s;
|
|
337
|
-
box-sizing: border-box;
|
|
402
|
+
}.r-article {
|
|
403
|
+
padding: 20px 0 40px;
|
|
404
|
+
grid-area: content;
|
|
338
405
|
}
|
|
339
|
-
|
|
340
|
-
|
|
406
|
+
@media screen and (width >= 1180px) {
|
|
407
|
+
.r-article {
|
|
408
|
+
padding: 32px 0 40px;
|
|
409
|
+
}
|
|
341
410
|
}
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
display: flex;
|
|
345
|
-
flex-direction: column;
|
|
346
|
-
gap: 12px 16px;
|
|
411
|
+
.r-article > *:first-child {
|
|
412
|
+
margin-top: 0;
|
|
347
413
|
}
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
flex-direction: row;
|
|
351
|
-
}
|
|
414
|
+
.r-article > *:last-child {
|
|
415
|
+
margin-bottom: 0;
|
|
352
416
|
}
|
|
353
417
|
|
|
354
|
-
.r-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
418
|
+
.r-checkbox {
|
|
419
|
+
cursor: pointer;
|
|
420
|
+
width: 20px;
|
|
421
|
+
height: 20px;
|
|
422
|
+
margin: 4px;
|
|
423
|
+
vertical-align: middle;
|
|
359
424
|
box-sizing: border-box;
|
|
360
425
|
}
|
|
361
|
-
.r-header-link:hover, .r-header-link:focus-visible {
|
|
362
|
-
color: var(--r-main-950);
|
|
363
|
-
}
|
|
364
426
|
|
|
365
|
-
.r-
|
|
366
|
-
|
|
427
|
+
.r-label {
|
|
428
|
+
cursor: pointer;
|
|
367
429
|
}
|
|
368
|
-
|
|
369
|
-
|
|
430
|
+
|
|
431
|
+
.r-task-ol,
|
|
432
|
+
.r-task-ul {
|
|
433
|
+
list-style: none;
|
|
370
434
|
}
|
|
371
435
|
|
|
372
|
-
.r-
|
|
373
|
-
display:
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
436
|
+
.r-task-label {
|
|
437
|
+
display: block;
|
|
438
|
+
width: 100%;
|
|
439
|
+
padding-top: 2px;
|
|
440
|
+
padding-bottom: 2px;
|
|
441
|
+
box-sizing: border-box;
|
|
377
442
|
}
|
|
378
|
-
|
|
379
|
-
.
|
|
380
|
-
flex-direction: row;
|
|
381
|
-
align-items: center;
|
|
382
|
-
gap: 28px;
|
|
383
|
-
}
|
|
443
|
+
.r-task-label:hover .r-checkbox {
|
|
444
|
+
filter: brightness(0.8);
|
|
384
445
|
}
|
|
385
446
|
|
|
386
|
-
.r-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
gap: 12px;
|
|
390
|
-
}
|
|
391
|
-
@media screen and (width < 768px) {
|
|
392
|
-
.r-header-sections .r-dropdown {
|
|
393
|
-
flex: 1;
|
|
394
|
-
}
|
|
447
|
+
.r-task-li.r-task-li {
|
|
448
|
+
margin-block-start: 2px;
|
|
449
|
+
margin-block-end: 2px;
|
|
395
450
|
}
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
width: 100%;
|
|
400
|
-
left: 0;
|
|
401
|
-
}
|
|
451
|
+
|
|
452
|
+
.r-label-text {
|
|
453
|
+
vertical-align: middle;
|
|
402
454
|
}.r-keylink.keylink-to-navigation:focus {
|
|
403
455
|
margin-top: -40px;
|
|
404
456
|
}.r-sidebar {
|
|
@@ -667,162 +719,12 @@
|
|
|
667
719
|
}
|
|
668
720
|
|
|
669
721
|
.r-sidebar-drop-icon {
|
|
670
|
-
display: block;
|
|
671
|
-
transition: transform 0.2s;
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
.r-sidebar-drop[open] > .r-sidebar-drop-btn > .r-sidebar-drop-icon {
|
|
675
|
-
transform: rotate(90deg);
|
|
676
|
-
}.r-article {
|
|
677
|
-
padding: 20px 0 40px;
|
|
678
|
-
grid-area: content;
|
|
679
|
-
}
|
|
680
|
-
@media screen and (width >= 1180px) {
|
|
681
|
-
.r-article {
|
|
682
|
-
padding: 32px 0 40px;
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
.r-article > *:first-child {
|
|
686
|
-
margin-top: 0;
|
|
687
|
-
}
|
|
688
|
-
.r-article > *:last-child {
|
|
689
|
-
margin-bottom: 0;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
.r-checkbox {
|
|
693
|
-
cursor: pointer;
|
|
694
|
-
width: 20px;
|
|
695
|
-
height: 20px;
|
|
696
|
-
margin: 4px;
|
|
697
|
-
vertical-align: middle;
|
|
698
|
-
box-sizing: border-box;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
.r-label {
|
|
702
|
-
cursor: pointer;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.r-task-ol,
|
|
706
|
-
.r-task-ul {
|
|
707
|
-
list-style: none;
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
.r-task-label {
|
|
711
|
-
display: block;
|
|
712
|
-
width: 100%;
|
|
713
|
-
padding-top: 2px;
|
|
714
|
-
padding-bottom: 2px;
|
|
715
|
-
box-sizing: border-box;
|
|
716
|
-
}
|
|
717
|
-
.r-task-label:hover .r-checkbox {
|
|
718
|
-
filter: brightness(0.8);
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.r-task-li.r-task-li {
|
|
722
|
-
margin-block-start: 2px;
|
|
723
|
-
margin-block-end: 2px;
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
.r-label-text {
|
|
727
|
-
vertical-align: middle;
|
|
728
|
-
}.r-container {
|
|
729
|
-
max-width: 1180px;
|
|
730
|
-
padding-right: 12px;
|
|
731
|
-
padding-left: 12px;
|
|
732
|
-
margin-right: auto;
|
|
733
|
-
margin-left: auto;
|
|
734
|
-
box-sizing: border-box;
|
|
735
|
-
}.r-theme-switcher {
|
|
736
|
-
position: relative;
|
|
737
|
-
display: flex;
|
|
738
|
-
gap: 4px;
|
|
739
|
-
width: 108px;
|
|
740
|
-
height: 36px;
|
|
741
|
-
padding: 2px;
|
|
742
|
-
background-color: var(--r-main-950);
|
|
743
|
-
border-radius: 14px;
|
|
744
|
-
box-sizing: border-box;
|
|
745
|
-
}
|
|
746
|
-
.r-theme-switcher::before {
|
|
747
|
-
content: "";
|
|
748
|
-
position: absolute;
|
|
749
|
-
display: block;
|
|
750
|
-
height: 32px;
|
|
751
|
-
width: 32px;
|
|
752
|
-
top: 2px;
|
|
753
|
-
left: 2px;
|
|
754
|
-
background-color: var(--r-main-50);
|
|
755
|
-
border-radius: 12px;
|
|
756
|
-
transition: left 0.2s;
|
|
757
|
-
box-sizing: border-box;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.r-theme-switcher-btn {
|
|
761
|
-
padding: 8px;
|
|
762
|
-
background: none;
|
|
763
|
-
border: 0;
|
|
764
|
-
border-radius: 12px;
|
|
765
|
-
cursor: pointer;
|
|
766
|
-
color: var(--r-main-50);
|
|
767
|
-
fill: var(--r-main-950);
|
|
768
|
-
z-index: 1;
|
|
769
|
-
transition: color 0.2s 0.1s, fill 0.2s;
|
|
770
|
-
}
|
|
771
|
-
.r-theme-switcher-btn:hover {
|
|
772
|
-
color: var(--r-main-50);
|
|
773
|
-
fill: var(--r-main-50);
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
.r-theme-dark:not(.r-theme-system) .r-theme-switcher::before {
|
|
777
|
-
left: 2px;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
.r-theme-dark:not(.r-theme-system) .r-theme-switcher-btn__dark {
|
|
781
|
-
color: var(--r-main-950);
|
|
782
|
-
pointer-events: none;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
.r-theme-switcher::before,
|
|
786
|
-
.r-theme-system .r-theme-switcher::before {
|
|
787
|
-
left: 38px;
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
.r-theme-system .r-theme-switcher-btn__system {
|
|
791
|
-
color: var(--r-main-950);
|
|
792
|
-
pointer-events: none;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
.r-theme-light:not(.r-theme-system) .r-theme-switcher::before {
|
|
796
|
-
left: 74px;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
.r-theme-light:not(.r-theme-system) .r-theme-switcher-btn__light {
|
|
800
|
-
color: var(--r-main-950);
|
|
801
|
-
pointer-events: none;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
.r-theme-switcher-svg {
|
|
805
|
-
display: block;
|
|
806
|
-
}.r-keylink {
|
|
807
|
-
display: block;
|
|
808
|
-
position: relative;
|
|
809
|
-
padding: 8px 12px;
|
|
810
|
-
border: 2px solid var(--r-main-500);
|
|
811
|
-
border-radius: 6px;
|
|
812
|
-
text-decoration: none;
|
|
813
|
-
background: var(--r-main-50);
|
|
722
|
+
display: block;
|
|
723
|
+
transition: transform 0.2s;
|
|
814
724
|
}
|
|
815
725
|
|
|
816
|
-
.r-
|
|
817
|
-
|
|
818
|
-
height: 1px !important;
|
|
819
|
-
padding: 0 !important;
|
|
820
|
-
overflow: hidden !important;
|
|
821
|
-
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
822
|
-
border: 0 !important;
|
|
823
|
-
user-select: none;
|
|
824
|
-
pointer-events: none;
|
|
825
|
-
box-sizing: border-box;
|
|
726
|
+
.r-sidebar-drop[open] > .r-sidebar-drop-btn > .r-sidebar-drop-icon {
|
|
727
|
+
transform: rotate(90deg);
|
|
826
728
|
}.r-header-menu {
|
|
827
729
|
display: flex;
|
|
828
730
|
justify-content: flex-end;
|
|
@@ -1028,6 +930,24 @@
|
|
|
1028
930
|
font-size: 14px;
|
|
1029
931
|
color: var(--r-main-600);
|
|
1030
932
|
margin: 12px 0 0;
|
|
933
|
+
}.r-header-social {
|
|
934
|
+
display: flex;
|
|
935
|
+
flex: 1;
|
|
936
|
+
justify-content: flex-end;
|
|
937
|
+
}
|
|
938
|
+
@media screen and (width >= 1024px) {
|
|
939
|
+
.r-header-social {
|
|
940
|
+
flex: none;
|
|
941
|
+
justify-content: unset;
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.r-header-social-git {
|
|
946
|
+
color: var(--r-main-700);
|
|
947
|
+
transition: color 0.2s;
|
|
948
|
+
}
|
|
949
|
+
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
950
|
+
color: var(--r-main-950);
|
|
1031
951
|
}.r-dropdown {
|
|
1032
952
|
position: relative;
|
|
1033
953
|
color: var(--r-main-600);
|
|
@@ -1107,24 +1027,145 @@
|
|
|
1107
1027
|
|
|
1108
1028
|
.r-dropdown-link._active {
|
|
1109
1029
|
color: var(--r-primary-700);
|
|
1110
|
-
}.r-
|
|
1030
|
+
}.r-container {
|
|
1031
|
+
max-width: 1180px;
|
|
1032
|
+
padding-right: 12px;
|
|
1033
|
+
padding-left: 12px;
|
|
1034
|
+
margin-right: auto;
|
|
1035
|
+
margin-left: auto;
|
|
1036
|
+
box-sizing: border-box;
|
|
1037
|
+
}.r-theme-switcher {
|
|
1038
|
+
position: relative;
|
|
1111
1039
|
display: flex;
|
|
1112
|
-
|
|
1113
|
-
|
|
1040
|
+
gap: 4px;
|
|
1041
|
+
width: 108px;
|
|
1042
|
+
height: 36px;
|
|
1043
|
+
padding: 2px;
|
|
1044
|
+
background-color: var(--r-main-950);
|
|
1045
|
+
border-radius: 14px;
|
|
1046
|
+
box-sizing: border-box;
|
|
1114
1047
|
}
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1048
|
+
.r-theme-switcher::before {
|
|
1049
|
+
content: "";
|
|
1050
|
+
position: absolute;
|
|
1051
|
+
display: block;
|
|
1052
|
+
height: 32px;
|
|
1053
|
+
width: 32px;
|
|
1054
|
+
top: 2px;
|
|
1055
|
+
left: 2px;
|
|
1056
|
+
background-color: var(--r-main-50);
|
|
1057
|
+
border-radius: 12px;
|
|
1058
|
+
transition: left 0.2s;
|
|
1059
|
+
box-sizing: border-box;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.r-theme-switcher-btn {
|
|
1063
|
+
padding: 8px;
|
|
1064
|
+
background: none;
|
|
1065
|
+
border: 0;
|
|
1066
|
+
border-radius: 12px;
|
|
1067
|
+
cursor: pointer;
|
|
1068
|
+
color: var(--r-main-50);
|
|
1069
|
+
fill: var(--r-main-950);
|
|
1070
|
+
z-index: 1;
|
|
1071
|
+
transition: color 0.2s 0.1s, fill 0.2s;
|
|
1072
|
+
}
|
|
1073
|
+
.r-theme-switcher-btn:hover {
|
|
1074
|
+
color: var(--r-main-50);
|
|
1075
|
+
fill: var(--r-main-50);
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher::before {
|
|
1079
|
+
left: 2px;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher-btn__dark {
|
|
1083
|
+
color: var(--r-main-950);
|
|
1084
|
+
pointer-events: none;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.r-theme-switcher::before,
|
|
1088
|
+
.r-theme-system .r-theme-switcher::before {
|
|
1089
|
+
left: 38px;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.r-theme-system .r-theme-switcher-btn__system {
|
|
1093
|
+
color: var(--r-main-950);
|
|
1094
|
+
pointer-events: none;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher::before {
|
|
1098
|
+
left: 74px;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher-btn__light {
|
|
1102
|
+
color: var(--r-main-950);
|
|
1103
|
+
pointer-events: none;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
.r-theme-switcher-svg {
|
|
1107
|
+
display: block;
|
|
1108
|
+
}.r-keylink {
|
|
1109
|
+
display: block;
|
|
1110
|
+
position: relative;
|
|
1111
|
+
padding: 8px 12px;
|
|
1112
|
+
border: 2px solid var(--r-main-500);
|
|
1113
|
+
border-radius: 6px;
|
|
1114
|
+
text-decoration: none;
|
|
1115
|
+
background: var(--r-main-50);
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.r-keylink:not(:focus) {
|
|
1119
|
+
width: 1px !important;
|
|
1120
|
+
height: 1px !important;
|
|
1121
|
+
padding: 0 !important;
|
|
1122
|
+
overflow: hidden !important;
|
|
1123
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
1124
|
+
border: 0 !important;
|
|
1125
|
+
user-select: none;
|
|
1126
|
+
pointer-events: none;
|
|
1127
|
+
box-sizing: border-box;
|
|
1128
|
+
}.r-breadcrumbs {
|
|
1129
|
+
grid-area: breadcrumbs;
|
|
1130
|
+
list-style: none;
|
|
1131
|
+
margin: 0;
|
|
1132
|
+
padding: 20px 0 0;
|
|
1133
|
+
line-height: 2;
|
|
1134
|
+
}
|
|
1135
|
+
@media screen and (width >= 768px) {
|
|
1136
|
+
.r-breadcrumbs {
|
|
1137
|
+
padding: 32px 0 0;
|
|
1119
1138
|
}
|
|
1120
1139
|
}
|
|
1121
1140
|
|
|
1122
|
-
.r-
|
|
1141
|
+
.r-breadcrumb {
|
|
1142
|
+
display: inline;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.r-breadcrumb._previous::after {
|
|
1146
|
+
content: "/";
|
|
1147
|
+
font-weight: 600;
|
|
1148
|
+
margin-inline: 8px;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
.r-breadcrumb-link {
|
|
1123
1152
|
color: var(--r-main-700);
|
|
1124
|
-
|
|
1153
|
+
text-decoration: none;
|
|
1125
1154
|
}
|
|
1126
|
-
.r-
|
|
1155
|
+
.r-breadcrumb-link:hover {
|
|
1156
|
+
color: var(--r-primary-800);
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.r-breadcrumb-link,
|
|
1160
|
+
.r-breadcrumb-title {
|
|
1161
|
+
display: inline;
|
|
1162
|
+
padding: 6px 0;
|
|
1163
|
+
margin: 0;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.r-breadcrumb-title {
|
|
1127
1167
|
color: var(--r-main-950);
|
|
1168
|
+
font-weight: 600;
|
|
1128
1169
|
}.r-contents {
|
|
1129
1170
|
grid-area: contents;
|
|
1130
1171
|
}
|
|
@@ -1358,47 +1399,6 @@
|
|
|
1358
1399
|
}
|
|
1359
1400
|
.r-contents-git:hover {
|
|
1360
1401
|
color: var(--r-main-900);
|
|
1361
|
-
}.r-breadcrumbs {
|
|
1362
|
-
grid-area: breadcrumbs;
|
|
1363
|
-
list-style: none;
|
|
1364
|
-
margin: 0;
|
|
1365
|
-
padding: 20px 0 0;
|
|
1366
|
-
line-height: 2;
|
|
1367
|
-
}
|
|
1368
|
-
@media screen and (width >= 768px) {
|
|
1369
|
-
.r-breadcrumbs {
|
|
1370
|
-
padding: 32px 0 0;
|
|
1371
|
-
}
|
|
1372
|
-
}
|
|
1373
|
-
|
|
1374
|
-
.r-breadcrumb {
|
|
1375
|
-
display: inline;
|
|
1376
|
-
}
|
|
1377
|
-
|
|
1378
|
-
.r-breadcrumb._previous::after {
|
|
1379
|
-
content: "/";
|
|
1380
|
-
font-weight: 600;
|
|
1381
|
-
margin-inline: 8px;
|
|
1382
|
-
}
|
|
1383
|
-
|
|
1384
|
-
.r-breadcrumb-link {
|
|
1385
|
-
color: var(--r-main-700);
|
|
1386
|
-
text-decoration: none;
|
|
1387
|
-
}
|
|
1388
|
-
.r-breadcrumb-link:hover {
|
|
1389
|
-
color: var(--r-primary-800);
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
|
-
.r-breadcrumb-link,
|
|
1393
|
-
.r-breadcrumb-title {
|
|
1394
|
-
display: inline;
|
|
1395
|
-
padding: 6px 0;
|
|
1396
|
-
margin: 0;
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
|
-
.r-breadcrumb-title {
|
|
1400
|
-
color: var(--r-main-950);
|
|
1401
|
-
font-weight: 600;
|
|
1402
1402
|
}.r-pagination {
|
|
1403
1403
|
grid-area: pagination;
|
|
1404
1404
|
display: grid;
|
|
@@ -1474,6 +1474,8 @@
|
|
|
1474
1474
|
}.r-last-modified {
|
|
1475
1475
|
color: var(--r-main-700);
|
|
1476
1476
|
margin-block-start: 16px;
|
|
1477
|
+
}.r-git-logo {
|
|
1478
|
+
display: block;
|
|
1477
1479
|
}.r-external-mark {
|
|
1478
1480
|
position: relative;
|
|
1479
1481
|
vertical-align: text-top;
|
|
@@ -1505,8 +1507,6 @@
|
|
|
1505
1507
|
background-color: currentColor;
|
|
1506
1508
|
border-radius: 0 0 0 4px;
|
|
1507
1509
|
box-sizing: border-box;
|
|
1508
|
-
}.r-git-logo {
|
|
1509
|
-
display: block;
|
|
1510
1510
|
}.r-anchor-heading:hover .r-anchor-heading-link {
|
|
1511
1511
|
visibility: visible;
|
|
1512
1512
|
opacity: 1;
|
|
@@ -1585,20 +1585,6 @@
|
|
|
1585
1585
|
scrollbar-width: thin;
|
|
1586
1586
|
scrollbar-color: var(--r-main-200) transparent;
|
|
1587
1587
|
box-sizing: border-box;
|
|
1588
|
-
}.r-code-span {
|
|
1589
|
-
font-family: var(--monospace-font, monospace, monospace);
|
|
1590
|
-
background-color: var(--r-main-100);
|
|
1591
|
-
border: 1px solid var(--r-main-200);
|
|
1592
|
-
color: var(--r-main-950);
|
|
1593
|
-
border-radius: 4px;
|
|
1594
|
-
padding: 2px 6px;
|
|
1595
|
-
font-size: inherit;
|
|
1596
|
-
font-weight: 500;
|
|
1597
|
-
letter-spacing: 0.5px;
|
|
1598
|
-
}
|
|
1599
|
-
|
|
1600
|
-
.r-code-span + .r-content-link-external {
|
|
1601
|
-
margin-left: -12px;
|
|
1602
1588
|
}.r-blockquote {
|
|
1603
1589
|
background-color: var(--r-main-100);
|
|
1604
1590
|
padding: 8px 12px 8px 20px;
|
|
@@ -1655,6 +1641,20 @@
|
|
|
1655
1641
|
}
|
|
1656
1642
|
.r-blockquote-caution .r-blockquote-title {
|
|
1657
1643
|
color: var(--r-caution);
|
|
1644
|
+
}.r-code-span {
|
|
1645
|
+
font-family: var(--monospace-font, monospace, monospace);
|
|
1646
|
+
background-color: var(--r-main-100);
|
|
1647
|
+
border: 1px solid var(--r-main-200);
|
|
1648
|
+
color: var(--r-main-950);
|
|
1649
|
+
border-radius: 4px;
|
|
1650
|
+
padding: 2px 6px;
|
|
1651
|
+
font-size: inherit;
|
|
1652
|
+
font-weight: 500;
|
|
1653
|
+
letter-spacing: 0.5px;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
.r-code-span + .r-content-link-external {
|
|
1657
|
+
margin-left: -12px;
|
|
1658
1658
|
}.r-code-block {
|
|
1659
1659
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1660
1660
|
font-size: 16px;
|
|
@@ -1947,6 +1947,11 @@
|
|
|
1947
1947
|
padding-inline-start: 2rem;
|
|
1948
1948
|
margin-block-start: 1em;
|
|
1949
1949
|
margin-block-end: 1em;
|
|
1950
|
+
}.r-table {
|
|
1951
|
+
min-width: 100%;
|
|
1952
|
+
text-align: left;
|
|
1953
|
+
border-collapse: collapse;
|
|
1954
|
+
box-sizing: border-box;
|
|
1950
1955
|
}.r-td {
|
|
1951
1956
|
padding: 6px 12px;
|
|
1952
1957
|
border-bottom: 1px solid var(--r-main-400);
|
|
@@ -1958,11 +1963,6 @@
|
|
|
1958
1963
|
border-collapse: collapse;
|
|
1959
1964
|
}.r-thead {
|
|
1960
1965
|
background-color: var(--r-main-100);
|
|
1961
|
-
}.r-table {
|
|
1962
|
-
min-width: 100%;
|
|
1963
|
-
text-align: left;
|
|
1964
|
-
border-collapse: collapse;
|
|
1965
|
-
box-sizing: border-box;
|
|
1966
1966
|
}.r-task-li.r-task-li {
|
|
1967
1967
|
margin-block-start: 2px;
|
|
1968
1968
|
margin-block-end: 2px;
|
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-11b183c",
|
|
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": {
|