robindoc 0.0.0-experimental-4f05ca6 → 0.0.0-experimental-2d30cfd
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 +422 -422
- package/package.json +1 -1
package/lib/styles.css
CHANGED
|
@@ -1,92 +1,38 @@
|
|
|
1
|
-
.r-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
border-bottom: 1px solid var(--r-main-300);
|
|
6
|
-
height: 60px;
|
|
7
|
-
z-index: 1000;
|
|
8
|
-
box-sizing: border-box;
|
|
1
|
+
.r-footer {
|
|
2
|
+
border-top: 1px solid var(--r-main-300);
|
|
3
|
+
padding-top: 16px;
|
|
4
|
+
padding-bottom: 16px;
|
|
9
5
|
}
|
|
10
6
|
|
|
11
|
-
.r-
|
|
12
|
-
height: 100%;
|
|
7
|
+
.r-footer-row {
|
|
13
8
|
display: flex;
|
|
14
9
|
justify-content: space-between;
|
|
15
10
|
align-items: center;
|
|
16
|
-
gap:
|
|
17
|
-
box-sizing: border-box;
|
|
11
|
+
gap: 32px;
|
|
18
12
|
}
|
|
19
13
|
|
|
20
|
-
.r-
|
|
21
|
-
|
|
22
|
-
|
|
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);
|
|
14
|
+
.r-footer-additional {
|
|
15
|
+
margin-top: 20px;
|
|
16
|
+
justify-content: flex-end;
|
|
29
17
|
}
|
|
30
18
|
|
|
31
|
-
.r-
|
|
32
|
-
|
|
33
|
-
flex-direction: column;
|
|
34
|
-
gap: 12px 16px;
|
|
35
|
-
}
|
|
36
|
-
@media screen and (width >= 1024px) {
|
|
37
|
-
.r-header-nav {
|
|
38
|
-
flex-direction: row;
|
|
39
|
-
}
|
|
19
|
+
.r-copyright {
|
|
20
|
+
color: var(--r-main-800);
|
|
40
21
|
}
|
|
41
22
|
|
|
42
|
-
.r-
|
|
23
|
+
.r-powered {
|
|
24
|
+
font-size: 14px;
|
|
25
|
+
display: block;
|
|
43
26
|
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
27
|
}
|
|
73
28
|
|
|
74
|
-
.r-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
@media screen and (width < 768px) {
|
|
80
|
-
.r-header-sections .r-dropdown {
|
|
81
|
-
flex: 1;
|
|
82
|
-
}
|
|
29
|
+
.r-powered-link {
|
|
30
|
+
font-weight: 600;
|
|
31
|
+
text-decoration: none;
|
|
32
|
+
color: var(--r-main-950);
|
|
83
33
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
max-width: none;
|
|
87
|
-
width: 100%;
|
|
88
|
-
left: 0;
|
|
89
|
-
}
|
|
34
|
+
.r-powered-link:hover {
|
|
35
|
+
color: var(--r-primary-900);
|
|
90
36
|
}.r-root {
|
|
91
37
|
--r-header-height: 60px;
|
|
92
38
|
position: relative;
|
|
@@ -319,6 +265,28 @@
|
|
|
319
265
|
--r-cl-60: #86181d;
|
|
320
266
|
--r-cl-61: #144620;
|
|
321
267
|
--r-cl-62: #c24e00;
|
|
268
|
+
}.r-docs-container {
|
|
269
|
+
min-height: calc(100dvh - var(--r-header-height));
|
|
270
|
+
overflow-wrap: break-word;
|
|
271
|
+
box-sizing: border-box;
|
|
272
|
+
}
|
|
273
|
+
@media screen and (width >= 768px) {
|
|
274
|
+
.r-docs-container {
|
|
275
|
+
display: grid;
|
|
276
|
+
justify-content: center;
|
|
277
|
+
column-gap: 32px;
|
|
278
|
+
grid-template-areas: "sidebar breadcrumbs" "sidebar contents" "sidebar content" "sidebar pagination";
|
|
279
|
+
grid-template-columns: 1fr calc(100% - 248px);
|
|
280
|
+
grid-template-rows: auto auto 1fr auto;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
@media screen and (width >= 1180px) {
|
|
284
|
+
.r-docs-container {
|
|
285
|
+
column-gap: 40px;
|
|
286
|
+
grid-template-areas: "sidebar breadcrumbs contents" "sidebar content contents" "sidebar pagination contents";
|
|
287
|
+
grid-template-columns: 200px 640px 1fr;
|
|
288
|
+
grid-template-rows: auto 1fr auto;
|
|
289
|
+
}
|
|
322
290
|
}.r-blog-container {
|
|
323
291
|
min-height: calc(100dvh - var(--r-header-height));
|
|
324
292
|
overflow-wrap: break-word;
|
|
@@ -342,65 +310,97 @@
|
|
|
342
310
|
top: 8px;
|
|
343
311
|
left: 12px;
|
|
344
312
|
z-index: 1001;
|
|
345
|
-
}.r-
|
|
346
|
-
|
|
347
|
-
|
|
313
|
+
}.r-header {
|
|
314
|
+
position: sticky;
|
|
315
|
+
background-color: var(--r-main-50);
|
|
316
|
+
top: 0;
|
|
317
|
+
border-bottom: 1px solid var(--r-main-300);
|
|
318
|
+
height: 60px;
|
|
319
|
+
z-index: 1000;
|
|
348
320
|
box-sizing: border-box;
|
|
349
321
|
}
|
|
350
|
-
@media screen and (width >= 768px) {
|
|
351
|
-
.r-docs-container {
|
|
352
|
-
display: grid;
|
|
353
|
-
justify-content: center;
|
|
354
|
-
column-gap: 32px;
|
|
355
|
-
grid-template-areas: "sidebar breadcrumbs" "sidebar contents" "sidebar content" "sidebar pagination";
|
|
356
|
-
grid-template-columns: 1fr calc(100% - 248px);
|
|
357
|
-
grid-template-rows: auto auto 1fr auto;
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
@media screen and (width >= 1180px) {
|
|
361
|
-
.r-docs-container {
|
|
362
|
-
column-gap: 40px;
|
|
363
|
-
grid-template-areas: "sidebar breadcrumbs contents" "sidebar content contents" "sidebar pagination contents";
|
|
364
|
-
grid-template-columns: 200px 640px 1fr;
|
|
365
|
-
grid-template-rows: auto 1fr auto;
|
|
366
|
-
}
|
|
367
|
-
}.r-keylink.keylink-to-navigation:focus {
|
|
368
|
-
margin-top: -40px;
|
|
369
|
-
}.r-footer {
|
|
370
|
-
border-top: 1px solid var(--r-main-300);
|
|
371
|
-
padding-top: 16px;
|
|
372
|
-
padding-bottom: 16px;
|
|
373
|
-
}
|
|
374
322
|
|
|
375
|
-
.r-
|
|
323
|
+
.r-header-body {
|
|
324
|
+
height: 100%;
|
|
376
325
|
display: flex;
|
|
377
326
|
justify-content: space-between;
|
|
378
327
|
align-items: center;
|
|
379
|
-
gap:
|
|
328
|
+
gap: 24px;
|
|
329
|
+
box-sizing: border-box;
|
|
380
330
|
}
|
|
381
331
|
|
|
382
|
-
.r-
|
|
383
|
-
|
|
384
|
-
|
|
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;
|
|
385
338
|
}
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
color: var(--r-main-800);
|
|
339
|
+
.r-header-logo:hover, .r-header-logo:focus {
|
|
340
|
+
color: var(--r-main-950);
|
|
389
341
|
}
|
|
390
342
|
|
|
391
|
-
.r-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
343
|
+
.r-header-nav {
|
|
344
|
+
display: flex;
|
|
345
|
+
flex-direction: column;
|
|
346
|
+
gap: 12px 16px;
|
|
347
|
+
}
|
|
348
|
+
@media screen and (width >= 1024px) {
|
|
349
|
+
.r-header-nav {
|
|
350
|
+
flex-direction: row;
|
|
351
|
+
}
|
|
395
352
|
}
|
|
396
353
|
|
|
397
|
-
.r-
|
|
398
|
-
|
|
354
|
+
.r-header-link {
|
|
355
|
+
color: var(--r-main-600);
|
|
399
356
|
text-decoration: none;
|
|
357
|
+
padding: 4px 0;
|
|
358
|
+
transition: color 0.2s;
|
|
359
|
+
box-sizing: border-box;
|
|
360
|
+
}
|
|
361
|
+
.r-header-link:hover, .r-header-link:focus-visible {
|
|
400
362
|
color: var(--r-main-950);
|
|
401
363
|
}
|
|
402
|
-
|
|
403
|
-
|
|
364
|
+
|
|
365
|
+
.r-header-link._target {
|
|
366
|
+
color: var(--r-primary-800);
|
|
367
|
+
}
|
|
368
|
+
.r-header-link._target:hover, .r-header-link._target:focus-visible {
|
|
369
|
+
color: var(--r-primary-700);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.r-header-actions {
|
|
373
|
+
display: flex;
|
|
374
|
+
flex-direction: column-reverse;
|
|
375
|
+
gap: 16px;
|
|
376
|
+
align-items: stretch;
|
|
377
|
+
}
|
|
378
|
+
@media screen and (width >= 1024px) {
|
|
379
|
+
.r-header-actions {
|
|
380
|
+
flex-direction: row;
|
|
381
|
+
align-items: center;
|
|
382
|
+
gap: 28px;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.r-header-sections {
|
|
387
|
+
display: flex;
|
|
388
|
+
align-items: center;
|
|
389
|
+
gap: 12px;
|
|
390
|
+
}
|
|
391
|
+
@media screen and (width < 768px) {
|
|
392
|
+
.r-header-sections .r-dropdown {
|
|
393
|
+
flex: 1;
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
@media screen and (width < 768px) {
|
|
397
|
+
.r-header-sections .r-dropdown-drop {
|
|
398
|
+
max-width: none;
|
|
399
|
+
width: 100%;
|
|
400
|
+
left: 0;
|
|
401
|
+
}
|
|
402
|
+
}.r-keylink.keylink-to-navigation:focus {
|
|
403
|
+
margin-top: -40px;
|
|
404
404
|
}.r-sidebar {
|
|
405
405
|
grid-area: sidebar;
|
|
406
406
|
box-sizing: border-box;
|
|
@@ -725,18 +725,116 @@
|
|
|
725
725
|
|
|
726
726
|
.r-label-text {
|
|
727
727
|
vertical-align: middle;
|
|
728
|
-
}.r-
|
|
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;
|
|
729
737
|
display: flex;
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
}
|
|
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;
|
|
738
745
|
}
|
|
739
|
-
|
|
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);
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.r-keylink:not(:focus) {
|
|
817
|
+
width: 1px !important;
|
|
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;
|
|
826
|
+
}.r-header-menu {
|
|
827
|
+
display: flex;
|
|
828
|
+
justify-content: flex-end;
|
|
829
|
+
order: 1;
|
|
830
|
+
}
|
|
831
|
+
@media screen and (width >= 1024px) {
|
|
832
|
+
.r-header-menu {
|
|
833
|
+
flex: 1;
|
|
834
|
+
order: unset;
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
|
|
740
838
|
.r-header-input:checked ~ .r-header-burger ~ .r-header-responsive {
|
|
741
839
|
display: flex;
|
|
742
840
|
}
|
|
@@ -986,261 +1084,47 @@
|
|
|
986
1084
|
margin: 0;
|
|
987
1085
|
padding: 2px 6px;
|
|
988
1086
|
min-width: 120px;
|
|
989
|
-
max-width: 180px;
|
|
990
|
-
box-sizing: border-box;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
.r-dropdown-link {
|
|
994
|
-
display: block;
|
|
995
|
-
width: 100%;
|
|
996
|
-
text-decoration: none;
|
|
997
|
-
color: var(--r-main-700);
|
|
998
|
-
padding: 4px 8px;
|
|
999
|
-
margin-top: 4px;
|
|
1000
|
-
margin-bottom: 4px;
|
|
1001
|
-
border-radius: 4px;
|
|
1002
|
-
transition: background-color 0.2s;
|
|
1003
|
-
box-sizing: border-box;
|
|
1004
|
-
}
|
|
1005
|
-
.r-dropdown-link:hover {
|
|
1006
|
-
color: var(--r-main-900);
|
|
1007
|
-
background-color: var(--r-main-100);
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
.r-dropdown-link._active {
|
|
1011
|
-
color: var(--r-primary-700);
|
|
1012
|
-
}.r-header-social {
|
|
1013
|
-
display: flex;
|
|
1014
|
-
flex: 1;
|
|
1015
|
-
justify-content: flex-end;
|
|
1016
|
-
}
|
|
1017
|
-
@media screen and (width >= 1024px) {
|
|
1018
|
-
.r-header-social {
|
|
1019
|
-
flex: none;
|
|
1020
|
-
justify-content: unset;
|
|
1021
|
-
}
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
.r-header-social-git {
|
|
1025
|
-
color: var(--r-main-700);
|
|
1026
|
-
transition: color 0.2s;
|
|
1027
|
-
}
|
|
1028
|
-
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
1029
|
-
color: var(--r-main-950);
|
|
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-keylink {
|
|
1038
|
-
display: block;
|
|
1039
|
-
position: relative;
|
|
1040
|
-
padding: 8px 12px;
|
|
1041
|
-
border: 2px solid var(--r-main-500);
|
|
1042
|
-
border-radius: 6px;
|
|
1043
|
-
text-decoration: none;
|
|
1044
|
-
background: var(--r-main-50);
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
.r-keylink:not(:focus) {
|
|
1048
|
-
width: 1px !important;
|
|
1049
|
-
height: 1px !important;
|
|
1050
|
-
padding: 0 !important;
|
|
1051
|
-
overflow: hidden !important;
|
|
1052
|
-
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
1053
|
-
border: 0 !important;
|
|
1054
|
-
user-select: none;
|
|
1055
|
-
pointer-events: none;
|
|
1056
|
-
box-sizing: border-box;
|
|
1057
|
-
}.r-theme-switcher {
|
|
1058
|
-
position: relative;
|
|
1059
|
-
display: flex;
|
|
1060
|
-
gap: 4px;
|
|
1061
|
-
width: 108px;
|
|
1062
|
-
height: 36px;
|
|
1063
|
-
padding: 2px;
|
|
1064
|
-
background-color: var(--r-main-950);
|
|
1065
|
-
border-radius: 14px;
|
|
1066
|
-
box-sizing: border-box;
|
|
1067
|
-
}
|
|
1068
|
-
.r-theme-switcher::before {
|
|
1069
|
-
content: "";
|
|
1070
|
-
position: absolute;
|
|
1071
|
-
display: block;
|
|
1072
|
-
height: 32px;
|
|
1073
|
-
width: 32px;
|
|
1074
|
-
top: 2px;
|
|
1075
|
-
left: 2px;
|
|
1076
|
-
background-color: var(--r-main-50);
|
|
1077
|
-
border-radius: 12px;
|
|
1078
|
-
transition: left 0.2s;
|
|
1079
|
-
box-sizing: border-box;
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
.r-theme-switcher-btn {
|
|
1083
|
-
padding: 8px;
|
|
1084
|
-
background: none;
|
|
1085
|
-
border: 0;
|
|
1086
|
-
border-radius: 12px;
|
|
1087
|
-
cursor: pointer;
|
|
1088
|
-
color: var(--r-main-50);
|
|
1089
|
-
fill: var(--r-main-950);
|
|
1090
|
-
z-index: 1;
|
|
1091
|
-
transition: color 0.2s 0.1s, fill 0.2s;
|
|
1092
|
-
}
|
|
1093
|
-
.r-theme-switcher-btn:hover {
|
|
1094
|
-
color: var(--r-main-50);
|
|
1095
|
-
fill: var(--r-main-50);
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
.r-theme-dark:not(.r-theme-system) .r-theme-switcher::before {
|
|
1099
|
-
left: 2px;
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
.r-theme-dark:not(.r-theme-system) .r-theme-switcher-btn__dark {
|
|
1103
|
-
color: var(--r-main-950);
|
|
1104
|
-
pointer-events: none;
|
|
1105
|
-
}
|
|
1106
|
-
|
|
1107
|
-
.r-theme-switcher::before,
|
|
1108
|
-
.r-theme-system .r-theme-switcher::before {
|
|
1109
|
-
left: 38px;
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
.r-theme-system .r-theme-switcher-btn__system {
|
|
1113
|
-
color: var(--r-main-950);
|
|
1114
|
-
pointer-events: none;
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
.r-theme-light:not(.r-theme-system) .r-theme-switcher::before {
|
|
1118
|
-
left: 74px;
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
.r-theme-light:not(.r-theme-system) .r-theme-switcher-btn__light {
|
|
1122
|
-
color: var(--r-main-950);
|
|
1123
|
-
pointer-events: none;
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
.r-theme-switcher-svg {
|
|
1127
|
-
display: block;
|
|
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;
|
|
1138
|
-
}
|
|
1139
|
-
}
|
|
1140
|
-
|
|
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 {
|
|
1152
|
-
color: var(--r-main-700);
|
|
1153
|
-
text-decoration: none;
|
|
1154
|
-
}
|
|
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 {
|
|
1167
|
-
color: var(--r-main-950);
|
|
1168
|
-
font-weight: 600;
|
|
1169
|
-
}.r-pagination {
|
|
1170
|
-
grid-area: pagination;
|
|
1171
|
-
display: grid;
|
|
1172
|
-
grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
|
|
1173
|
-
gap: 16px;
|
|
1174
|
-
margin-bottom: 40px;
|
|
1175
|
-
}
|
|
1176
|
-
|
|
1177
|
-
.r-pagination-item {
|
|
1178
|
-
position: relative;
|
|
1179
|
-
padding-top: 8px;
|
|
1180
|
-
padding-bottom: 8px;
|
|
1181
|
-
text-decoration: none;
|
|
1182
|
-
font-size: 14px;
|
|
1183
|
-
color: var(--r-main-800);
|
|
1184
|
-
}
|
|
1185
|
-
.r-pagination-item:hover {
|
|
1186
|
-
color: var(--r-main-950);
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
|
-
.r-pagination-item._prev {
|
|
1190
|
-
padding-left: 28px;
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
.r-pagination-item._next {
|
|
1194
|
-
text-align: right;
|
|
1195
|
-
padding-right: 28px;
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
|
-
.r-pagination-text {
|
|
1199
|
-
display: block;
|
|
1200
|
-
line-height: 2;
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
.r-pagination-title {
|
|
1204
|
-
font-weight: 600;
|
|
1205
|
-
font-size: 16px;
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
.r-pagination-icon {
|
|
1209
|
-
position: absolute;
|
|
1210
|
-
top: 50%;
|
|
1211
|
-
transform: translateY(-50%);
|
|
1212
|
-
transition: transform 0.2s;
|
|
1213
|
-
}
|
|
1214
|
-
|
|
1215
|
-
.r-pagination-icon._prev {
|
|
1216
|
-
left: 0;
|
|
1217
|
-
}
|
|
1218
|
-
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1219
|
-
transform: translate(-4px, -50%);
|
|
1220
|
-
}
|
|
1221
|
-
@media screen and (width >= 1180px) {
|
|
1222
|
-
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1223
|
-
transform: translate(-8px, -50%);
|
|
1224
|
-
}
|
|
1087
|
+
max-width: 180px;
|
|
1088
|
+
box-sizing: border-box;
|
|
1225
1089
|
}
|
|
1226
1090
|
|
|
1227
|
-
.r-
|
|
1228
|
-
|
|
1091
|
+
.r-dropdown-link {
|
|
1092
|
+
display: block;
|
|
1093
|
+
width: 100%;
|
|
1094
|
+
text-decoration: none;
|
|
1095
|
+
color: var(--r-main-700);
|
|
1096
|
+
padding: 4px 8px;
|
|
1097
|
+
margin-top: 4px;
|
|
1098
|
+
margin-bottom: 4px;
|
|
1099
|
+
border-radius: 4px;
|
|
1100
|
+
transition: background-color 0.2s;
|
|
1101
|
+
box-sizing: border-box;
|
|
1229
1102
|
}
|
|
1230
|
-
.r-
|
|
1231
|
-
|
|
1103
|
+
.r-dropdown-link:hover {
|
|
1104
|
+
color: var(--r-main-900);
|
|
1105
|
+
background-color: var(--r-main-100);
|
|
1232
1106
|
}
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1107
|
+
|
|
1108
|
+
.r-dropdown-link._active {
|
|
1109
|
+
color: var(--r-primary-700);
|
|
1110
|
+
}.r-header-social {
|
|
1111
|
+
display: flex;
|
|
1112
|
+
flex: 1;
|
|
1113
|
+
justify-content: flex-end;
|
|
1114
|
+
}
|
|
1115
|
+
@media screen and (width >= 1024px) {
|
|
1116
|
+
.r-header-social {
|
|
1117
|
+
flex: none;
|
|
1118
|
+
justify-content: unset;
|
|
1236
1119
|
}
|
|
1237
1120
|
}
|
|
1238
1121
|
|
|
1239
|
-
.r-
|
|
1240
|
-
display: block;
|
|
1241
|
-
}.r-last-modified {
|
|
1122
|
+
.r-header-social-git {
|
|
1242
1123
|
color: var(--r-main-700);
|
|
1243
|
-
|
|
1124
|
+
transition: color 0.2s;
|
|
1125
|
+
}
|
|
1126
|
+
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
1127
|
+
color: var(--r-main-950);
|
|
1244
1128
|
}.r-contents {
|
|
1245
1129
|
grid-area: contents;
|
|
1246
1130
|
}
|
|
@@ -1474,8 +1358,122 @@
|
|
|
1474
1358
|
}
|
|
1475
1359
|
.r-contents-git:hover {
|
|
1476
1360
|
color: var(--r-main-900);
|
|
1477
|
-
}.r-
|
|
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
|
+
}.r-pagination {
|
|
1403
|
+
grid-area: pagination;
|
|
1404
|
+
display: grid;
|
|
1405
|
+
grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
|
|
1406
|
+
gap: 16px;
|
|
1407
|
+
margin-bottom: 40px;
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
.r-pagination-item {
|
|
1411
|
+
position: relative;
|
|
1412
|
+
padding-top: 8px;
|
|
1413
|
+
padding-bottom: 8px;
|
|
1414
|
+
text-decoration: none;
|
|
1415
|
+
font-size: 14px;
|
|
1416
|
+
color: var(--r-main-800);
|
|
1417
|
+
}
|
|
1418
|
+
.r-pagination-item:hover {
|
|
1419
|
+
color: var(--r-main-950);
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
.r-pagination-item._prev {
|
|
1423
|
+
padding-left: 28px;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
.r-pagination-item._next {
|
|
1427
|
+
text-align: right;
|
|
1428
|
+
padding-right: 28px;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.r-pagination-text {
|
|
1432
|
+
display: block;
|
|
1433
|
+
line-height: 2;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.r-pagination-title {
|
|
1437
|
+
font-weight: 600;
|
|
1438
|
+
font-size: 16px;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.r-pagination-icon {
|
|
1442
|
+
position: absolute;
|
|
1443
|
+
top: 50%;
|
|
1444
|
+
transform: translateY(-50%);
|
|
1445
|
+
transition: transform 0.2s;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.r-pagination-icon._prev {
|
|
1449
|
+
left: 0;
|
|
1450
|
+
}
|
|
1451
|
+
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1452
|
+
transform: translate(-4px, -50%);
|
|
1453
|
+
}
|
|
1454
|
+
@media screen and (width >= 1180px) {
|
|
1455
|
+
.r-pagination-item:hover .r-pagination-icon._prev {
|
|
1456
|
+
transform: translate(-8px, -50%);
|
|
1457
|
+
}
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
.r-pagination-icon._next {
|
|
1461
|
+
right: 0;
|
|
1462
|
+
}
|
|
1463
|
+
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1464
|
+
transform: translate(4px, -50%);
|
|
1465
|
+
}
|
|
1466
|
+
@media screen and (width >= 1180px) {
|
|
1467
|
+
.r-pagination-item:hover .r-pagination-icon._next {
|
|
1468
|
+
transform: translate(8px, -50%);
|
|
1469
|
+
}
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
.r-pagination-svg {
|
|
1478
1473
|
display: block;
|
|
1474
|
+
}.r-last-modified {
|
|
1475
|
+
color: var(--r-main-700);
|
|
1476
|
+
margin-block-start: 16px;
|
|
1479
1477
|
}.r-external-mark {
|
|
1480
1478
|
position: relative;
|
|
1481
1479
|
vertical-align: text-top;
|
|
@@ -1507,6 +1505,8 @@
|
|
|
1507
1505
|
background-color: currentColor;
|
|
1508
1506
|
border-radius: 0 0 0 4px;
|
|
1509
1507
|
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,6 +1585,20 @@
|
|
|
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;
|
|
1588
1602
|
}.r-blockquote {
|
|
1589
1603
|
background-color: var(--r-main-100);
|
|
1590
1604
|
padding: 8px 12px 8px 20px;
|
|
@@ -1641,20 +1655,19 @@
|
|
|
1641
1655
|
}
|
|
1642
1656
|
.r-blockquote-caution .r-blockquote-title {
|
|
1643
1657
|
color: var(--r-caution);
|
|
1644
|
-
}.r-code-
|
|
1658
|
+
}.r-code-block {
|
|
1645
1659
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
margin-left: -12px;
|
|
1660
|
+
font-size: 16px;
|
|
1661
|
+
line-height: 1.33;
|
|
1662
|
+
border-radius: 6px;
|
|
1663
|
+
padding: 16px 20px;
|
|
1664
|
+
margin: 0;
|
|
1665
|
+
color: var(--r-primary-800);
|
|
1666
|
+
background-color: var(--r-main-50);
|
|
1667
|
+
overflow-x: auto;
|
|
1668
|
+
scrollbar-width: thin;
|
|
1669
|
+
scrollbar-color: var(--r-main-200) transparent;
|
|
1670
|
+
box-sizing: border-box;
|
|
1658
1671
|
}.r-h1 {
|
|
1659
1672
|
font-size: 32px;
|
|
1660
1673
|
line-height: 1.4;
|
|
@@ -1702,19 +1715,6 @@
|
|
|
1702
1715
|
line-height: 1.8;
|
|
1703
1716
|
margin-block-start: 1em;
|
|
1704
1717
|
margin-block-end: 1em;
|
|
1705
|
-
}.r-code-block {
|
|
1706
|
-
font-family: var(--monospace-font, monospace, monospace);
|
|
1707
|
-
font-size: 16px;
|
|
1708
|
-
line-height: 1.33;
|
|
1709
|
-
border-radius: 6px;
|
|
1710
|
-
padding: 16px 20px;
|
|
1711
|
-
margin: 0;
|
|
1712
|
-
color: var(--r-primary-800);
|
|
1713
|
-
background-color: var(--r-main-50);
|
|
1714
|
-
overflow-x: auto;
|
|
1715
|
-
scrollbar-width: thin;
|
|
1716
|
-
scrollbar-color: var(--r-main-200) transparent;
|
|
1717
|
-
box-sizing: border-box;
|
|
1718
1718
|
}.r-tabs {
|
|
1719
1719
|
margin-block-start: 1.5em;
|
|
1720
1720
|
margin-block-end: 1.75em;
|
|
@@ -1756,22 +1756,6 @@
|
|
|
1756
1756
|
|
|
1757
1757
|
.r-tab-header-code {
|
|
1758
1758
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1759
|
-
}.r-kbd-key {
|
|
1760
|
-
background-color: var(--r-main-200);
|
|
1761
|
-
font-size: 12px;
|
|
1762
|
-
border-radius: 4px;
|
|
1763
|
-
padding: 5px 8px;
|
|
1764
|
-
min-width: 24px;
|
|
1765
|
-
text-align: center;
|
|
1766
|
-
box-sizing: border-box;
|
|
1767
|
-
}.r-kbd-container {
|
|
1768
|
-
display: flex;
|
|
1769
|
-
gap: 4px;
|
|
1770
|
-
font-size: 14px;
|
|
1771
|
-
cursor: pointer;
|
|
1772
|
-
}
|
|
1773
|
-
.r-kbd-container:hover {
|
|
1774
|
-
color: var(--r-main-950);
|
|
1775
1759
|
}.r-modal {
|
|
1776
1760
|
position: fixed;
|
|
1777
1761
|
left: 0;
|
|
@@ -1808,6 +1792,22 @@
|
|
|
1808
1792
|
.r-modal._visible {
|
|
1809
1793
|
transform: translateX(-50%) scale(1);
|
|
1810
1794
|
}
|
|
1795
|
+
}.r-kbd-container {
|
|
1796
|
+
display: flex;
|
|
1797
|
+
gap: 4px;
|
|
1798
|
+
font-size: 14px;
|
|
1799
|
+
cursor: pointer;
|
|
1800
|
+
}
|
|
1801
|
+
.r-kbd-container:hover {
|
|
1802
|
+
color: var(--r-main-950);
|
|
1803
|
+
}.r-kbd-key {
|
|
1804
|
+
background-color: var(--r-main-200);
|
|
1805
|
+
font-size: 12px;
|
|
1806
|
+
border-radius: 4px;
|
|
1807
|
+
padding: 5px 8px;
|
|
1808
|
+
min-width: 24px;
|
|
1809
|
+
text-align: center;
|
|
1810
|
+
box-sizing: border-box;
|
|
1811
1811
|
}.r-copy-button {
|
|
1812
1812
|
position: relative;
|
|
1813
1813
|
padding: 6px;
|
|
@@ -1947,11 +1947,6 @@
|
|
|
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;
|
|
1955
1950
|
}.r-td {
|
|
1956
1951
|
padding: 6px 12px;
|
|
1957
1952
|
border-bottom: 1px solid var(--r-main-400);
|
|
@@ -1963,6 +1958,11 @@
|
|
|
1963
1958
|
border-collapse: collapse;
|
|
1964
1959
|
}.r-thead {
|
|
1965
1960
|
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-2d30cfd",
|
|
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": {
|