robindoc 0.0.0-experimental-b4f8a34 → 0.0.0-experimental-b2c83b2
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 +673 -659
- package/package.json +1 -1
package/lib/styles.css
CHANGED
|
@@ -1,9 +1,115 @@
|
|
|
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.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
|
+
padding-left: 12px;
|
|
19
|
+
padding-right: 12px;
|
|
20
|
+
}
|
|
21
|
+
@media screen and (width >= 1024px) {
|
|
22
|
+
.r-header-body.r-header-body {
|
|
23
|
+
padding-left: 24px;
|
|
24
|
+
padding-right: 24px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.r-header-logo {
|
|
29
|
+
display: block;
|
|
30
|
+
margin-right: 24px;
|
|
31
|
+
color: var(--r-main-700);
|
|
32
|
+
transition: color 0.2s;
|
|
33
|
+
box-sizing: border-box;
|
|
34
|
+
font-size: 1.25rem;
|
|
35
|
+
font-weight: 600;
|
|
36
|
+
text-decoration: none;
|
|
37
|
+
}
|
|
38
|
+
.r-header-logo:hover, .r-header-logo:focus {
|
|
39
|
+
color: var(--r-main-950);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.r-header-nav {
|
|
43
|
+
display: flex;
|
|
44
|
+
flex-direction: column;
|
|
45
|
+
gap: 12px 16px;
|
|
46
|
+
}
|
|
47
|
+
@media screen and (width >= 1024px) {
|
|
48
|
+
.r-header-nav {
|
|
49
|
+
flex-direction: row;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.r-header-link {
|
|
54
|
+
color: var(--r-main-600);
|
|
55
|
+
text-decoration: none;
|
|
56
|
+
padding: 4px 0;
|
|
57
|
+
transition: color 0.2s;
|
|
58
|
+
box-sizing: border-box;
|
|
59
|
+
}
|
|
60
|
+
.r-header-link:hover, .r-header-link:focus-visible {
|
|
61
|
+
color: var(--r-main-950);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.r-header-link._target {
|
|
65
|
+
color: var(--r-primary-800);
|
|
66
|
+
}
|
|
67
|
+
.r-header-link._target:hover, .r-header-link._target:focus-visible {
|
|
68
|
+
color: var(--r-primary-700);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.r-header-actions {
|
|
72
|
+
display: flex;
|
|
73
|
+
flex-direction: column-reverse;
|
|
74
|
+
gap: 16px;
|
|
75
|
+
align-items: stretch;
|
|
76
|
+
}
|
|
77
|
+
@media screen and (width >= 1024px) {
|
|
78
|
+
.r-header-actions {
|
|
79
|
+
flex-direction: row;
|
|
80
|
+
align-items: center;
|
|
81
|
+
gap: 28px;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.r-header-sections {
|
|
86
|
+
display: flex;
|
|
87
|
+
align-items: center;
|
|
88
|
+
gap: 12px;
|
|
89
|
+
}
|
|
90
|
+
@media screen and (width < 768px) {
|
|
91
|
+
.r-header-sections .r-dropdown {
|
|
92
|
+
flex: 1;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
@media screen and (width < 768px) {
|
|
96
|
+
.r-header-sections .r-dropdown-drop {
|
|
97
|
+
max-width: none;
|
|
98
|
+
width: 100%;
|
|
99
|
+
left: 0;
|
|
100
|
+
}
|
|
101
|
+
}.r-footer {
|
|
2
102
|
border-top: 1px solid var(--r-main-300);
|
|
3
103
|
}
|
|
4
104
|
|
|
5
105
|
.r-footer-container.r-footer-container {
|
|
6
|
-
padding: 16px
|
|
106
|
+
padding: 16px 12px;
|
|
107
|
+
}
|
|
108
|
+
@media screen and (width >= 1024px) {
|
|
109
|
+
.r-footer-container.r-footer-container {
|
|
110
|
+
padding-left: 24px;
|
|
111
|
+
padding-right: 24px;
|
|
112
|
+
}
|
|
7
113
|
}
|
|
8
114
|
|
|
9
115
|
.r-footer-row {
|
|
@@ -268,6 +374,24 @@
|
|
|
268
374
|
--r-cl-60: #86181d;
|
|
269
375
|
--r-cl-61: #144620;
|
|
270
376
|
--r-cl-62: #c24e00;
|
|
377
|
+
}.r-blog-container {
|
|
378
|
+
min-height: calc(100dvh - var(--r-header-height));
|
|
379
|
+
overflow-wrap: break-word;
|
|
380
|
+
box-sizing: border-box;
|
|
381
|
+
}
|
|
382
|
+
@media screen and (width >= 1180px) {
|
|
383
|
+
.r-blog-container {
|
|
384
|
+
display: grid;
|
|
385
|
+
justify-content: space-between;
|
|
386
|
+
column-gap: 40px;
|
|
387
|
+
grid-template-areas: "breadcrumbs contents" "content contents" "pagination contents";
|
|
388
|
+
grid-template-columns: 760px 220px;
|
|
389
|
+
grid-template-rows: auto 1fr auto;
|
|
390
|
+
}
|
|
391
|
+
}.r-page-container {
|
|
392
|
+
min-height: calc(100dvh - var(--r-header-height));
|
|
393
|
+
overflow-wrap: break-word;
|
|
394
|
+
box-sizing: border-box;
|
|
271
395
|
}.r-docs-container {
|
|
272
396
|
min-height: calc(100dvh - var(--r-header-height));
|
|
273
397
|
overflow-wrap: break-word;
|
|
@@ -290,198 +414,356 @@
|
|
|
290
414
|
grid-template-columns: 200px 640px 238px;
|
|
291
415
|
grid-template-rows: auto 1fr auto;
|
|
292
416
|
}
|
|
293
|
-
}.
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
417
|
+
}.keylink-to-content {
|
|
418
|
+
position: absolute !important;
|
|
419
|
+
top: 8px;
|
|
420
|
+
left: 12px;
|
|
421
|
+
z-index: 1001;
|
|
422
|
+
}.r-keylink.keylink-to-navigation:focus {
|
|
423
|
+
margin-top: -40px;
|
|
424
|
+
}.r-article {
|
|
425
|
+
padding: 20px 0 40px;
|
|
426
|
+
grid-area: content;
|
|
297
427
|
}
|
|
298
428
|
@media screen and (width >= 1180px) {
|
|
299
|
-
.r-
|
|
300
|
-
|
|
301
|
-
justify-content: space-between;
|
|
302
|
-
column-gap: 40px;
|
|
303
|
-
grid-template-areas: "breadcrumbs contents" "content contents" "pagination contents";
|
|
304
|
-
grid-template-columns: 760px 220px;
|
|
305
|
-
grid-template-rows: auto 1fr auto;
|
|
429
|
+
.r-article {
|
|
430
|
+
padding: 32px 0 40px;
|
|
306
431
|
}
|
|
307
|
-
}.r-header {
|
|
308
|
-
position: sticky;
|
|
309
|
-
background-color: var(--r-main-50);
|
|
310
|
-
top: 0;
|
|
311
|
-
border-bottom: 1px solid var(--r-main-300);
|
|
312
|
-
height: 60px;
|
|
313
|
-
z-index: 1000;
|
|
314
|
-
box-sizing: border-box;
|
|
315
432
|
}
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
align-items: center;
|
|
322
|
-
gap: 24px;
|
|
323
|
-
box-sizing: border-box;
|
|
324
|
-
padding-left: 24px;
|
|
325
|
-
padding-right: 24px;
|
|
433
|
+
.r-article > *:first-child {
|
|
434
|
+
margin-top: 0;
|
|
435
|
+
}
|
|
436
|
+
.r-article > *:last-child {
|
|
437
|
+
margin-bottom: 0;
|
|
326
438
|
}
|
|
327
439
|
|
|
328
|
-
.r-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
440
|
+
.r-checkbox {
|
|
441
|
+
cursor: pointer;
|
|
442
|
+
width: 20px;
|
|
443
|
+
height: 20px;
|
|
444
|
+
margin: 4px;
|
|
445
|
+
vertical-align: middle;
|
|
333
446
|
box-sizing: border-box;
|
|
334
|
-
font-size: 1.25rem;
|
|
335
|
-
font-weight: 600;
|
|
336
|
-
text-decoration: none;
|
|
337
|
-
}
|
|
338
|
-
.r-header-logo:hover, .r-header-logo:focus {
|
|
339
|
-
color: var(--r-main-950);
|
|
340
447
|
}
|
|
341
448
|
|
|
342
|
-
.r-
|
|
343
|
-
|
|
344
|
-
flex-direction: column;
|
|
345
|
-
gap: 12px 16px;
|
|
449
|
+
.r-label {
|
|
450
|
+
cursor: pointer;
|
|
346
451
|
}
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
452
|
+
|
|
453
|
+
.r-task-ol,
|
|
454
|
+
.r-task-ul {
|
|
455
|
+
list-style: none;
|
|
351
456
|
}
|
|
352
457
|
|
|
353
|
-
.r-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
padding:
|
|
357
|
-
|
|
458
|
+
.r-task-label {
|
|
459
|
+
display: block;
|
|
460
|
+
width: 100%;
|
|
461
|
+
padding-top: 2px;
|
|
462
|
+
padding-bottom: 2px;
|
|
358
463
|
box-sizing: border-box;
|
|
359
464
|
}
|
|
360
|
-
.r-
|
|
361
|
-
|
|
465
|
+
.r-task-label:hover .r-checkbox {
|
|
466
|
+
filter: brightness(0.8);
|
|
362
467
|
}
|
|
363
468
|
|
|
364
|
-
.r-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
.r-header-link._target:hover, .r-header-link._target:focus-visible {
|
|
368
|
-
color: var(--r-primary-700);
|
|
469
|
+
.r-task-li.r-task-li {
|
|
470
|
+
margin-block-start: 2px;
|
|
471
|
+
margin-block-end: 2px;
|
|
369
472
|
}
|
|
370
473
|
|
|
371
|
-
.r-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
474
|
+
.r-label-text {
|
|
475
|
+
vertical-align: middle;
|
|
476
|
+
}.r-sidebar {
|
|
477
|
+
grid-area: sidebar;
|
|
478
|
+
box-sizing: border-box;
|
|
376
479
|
}
|
|
377
|
-
@media screen and (width
|
|
378
|
-
.r-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
480
|
+
@media screen and (width < 768px) {
|
|
481
|
+
.r-sidebar {
|
|
482
|
+
position: sticky;
|
|
483
|
+
width: calc(100% + 24px);
|
|
484
|
+
top: var(--r-header-height);
|
|
485
|
+
left: 0;
|
|
486
|
+
margin: 0 -12px;
|
|
487
|
+
background-color: var(--r-main-50);
|
|
488
|
+
border-bottom: 1px solid var(--r-main-200);
|
|
489
|
+
z-index: 10;
|
|
490
|
+
opacity: 0.98;
|
|
491
|
+
padding: 0;
|
|
492
|
+
overflow: auto;
|
|
382
493
|
}
|
|
383
494
|
}
|
|
384
495
|
|
|
385
|
-
.r-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
gap: 12px;
|
|
496
|
+
.r-sidebar-top-mock {
|
|
497
|
+
grid-row-start: 1;
|
|
498
|
+
grid-column-start: 1;
|
|
389
499
|
}
|
|
500
|
+
|
|
390
501
|
@media screen and (width < 768px) {
|
|
391
|
-
.r-
|
|
392
|
-
|
|
502
|
+
.r-sidebar-input:not(:checked) ~ .r-sidebar-btn ~ .r-sidebar-nav {
|
|
503
|
+
display: none;
|
|
393
504
|
}
|
|
394
505
|
}
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
max-width: none;
|
|
398
|
-
width: 100%;
|
|
399
|
-
left: 0;
|
|
400
|
-
}
|
|
401
|
-
}.r-page-container {
|
|
402
|
-
min-height: calc(100dvh - var(--r-header-height));
|
|
403
|
-
overflow-wrap: break-word;
|
|
404
|
-
box-sizing: border-box;
|
|
405
|
-
}.keylink-to-content {
|
|
406
|
-
position: absolute !important;
|
|
407
|
-
top: 8px;
|
|
408
|
-
left: 12px;
|
|
409
|
-
z-index: 1001;
|
|
410
|
-
}.r-keylink.keylink-to-navigation:focus {
|
|
411
|
-
margin-top: -40px;
|
|
412
|
-
}.r-container {
|
|
413
|
-
max-width: 1180px;
|
|
414
|
-
padding-right: 12px;
|
|
415
|
-
padding-left: 12px;
|
|
416
|
-
margin-right: auto;
|
|
417
|
-
margin-left: auto;
|
|
506
|
+
|
|
507
|
+
.r-sidebar-nav {
|
|
418
508
|
box-sizing: border-box;
|
|
419
|
-
}
|
|
509
|
+
}
|
|
510
|
+
@media screen and (width < 768px) {
|
|
511
|
+
.r-sidebar-nav {
|
|
512
|
+
overflow: auto;
|
|
513
|
+
max-height: calc(100dvh - var(--r-header-height) - 41px);
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.r-sidebar-drop {
|
|
518
|
+
margin-top: -4px;
|
|
519
|
+
padding-top: 4px;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.r-sidebar-sublist {
|
|
420
523
|
position: relative;
|
|
421
|
-
|
|
422
|
-
gap: 4px;
|
|
423
|
-
width: 109px;
|
|
424
|
-
height: 37px;
|
|
425
|
-
padding: 2px;
|
|
426
|
-
background-color: var(--r-main-100);
|
|
427
|
-
border: 1px solid var(--r-main-200);
|
|
428
|
-
border-radius: 100px;
|
|
429
|
-
box-sizing: border-box;
|
|
524
|
+
padding-top: 2px;
|
|
430
525
|
}
|
|
431
|
-
.r-
|
|
526
|
+
.r-sidebar-sublist:hover::before {
|
|
527
|
+
background-color: var(--r-primary-800);
|
|
528
|
+
transition-delay: initial;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.r-sidebar-sublist::before {
|
|
432
532
|
content: "";
|
|
433
533
|
position: absolute;
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
left: 2px;
|
|
439
|
-
background-color: var(--r-main-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
transition: left 0.2s;
|
|
534
|
+
top: 0;
|
|
535
|
+
left: -12px;
|
|
536
|
+
right: 0;
|
|
537
|
+
height: 2px;
|
|
538
|
+
border-bottom-left-radius: 2px;
|
|
539
|
+
background-color: var(--r-main-200);
|
|
540
|
+
z-index: 1;
|
|
541
|
+
transition: background-color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
443
542
|
box-sizing: border-box;
|
|
444
543
|
}
|
|
445
544
|
|
|
446
|
-
.r-
|
|
447
|
-
padding:
|
|
448
|
-
|
|
545
|
+
.r-sidebar-nav {
|
|
546
|
+
padding: 32px 4px 32px 2px;
|
|
547
|
+
box-sizing: border-box;
|
|
548
|
+
}
|
|
549
|
+
@media screen and (width < 768px) {
|
|
550
|
+
.r-sidebar-nav {
|
|
551
|
+
padding: 12px;
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
@media screen and (width >= 768px) {
|
|
555
|
+
.r-sidebar-nav {
|
|
556
|
+
position: sticky;
|
|
557
|
+
top: var(--r-header-height);
|
|
558
|
+
overflow: auto;
|
|
559
|
+
scrollbar-width: thin;
|
|
560
|
+
scrollbar-color: var(--r-main-200) transparent;
|
|
561
|
+
scrollbar-gutter: stable;
|
|
562
|
+
max-height: calc(100dvh - var(--r-header-height));
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.r-sidebar-space {
|
|
567
|
+
box-sizing: border-box;
|
|
568
|
+
}
|
|
569
|
+
@media screen and (width < 768px) {
|
|
570
|
+
.r-sidebar-space {
|
|
571
|
+
display: block;
|
|
572
|
+
height: 40px;
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.r-sidebar-btn {
|
|
577
|
+
position: sticky;
|
|
578
|
+
top: 0;
|
|
579
|
+
display: flex;
|
|
580
|
+
width: 100%;
|
|
581
|
+
font-size: 14px;
|
|
449
582
|
border: 0;
|
|
450
|
-
|
|
583
|
+
padding: 12px;
|
|
584
|
+
background: none;
|
|
451
585
|
cursor: pointer;
|
|
452
|
-
color: var(--r-main-
|
|
453
|
-
|
|
586
|
+
color: var(--r-main-800);
|
|
587
|
+
background-color: var(--r-main-50);
|
|
454
588
|
z-index: 1;
|
|
455
|
-
|
|
589
|
+
box-sizing: border-box;
|
|
456
590
|
}
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
591
|
+
@media screen and (width >= 768px) {
|
|
592
|
+
.r-sidebar-btn {
|
|
593
|
+
display: none;
|
|
594
|
+
}
|
|
460
595
|
}
|
|
461
596
|
|
|
462
|
-
.r-
|
|
463
|
-
|
|
597
|
+
.r-sidebar-chevron {
|
|
598
|
+
display: inline;
|
|
599
|
+
margin-right: 6px;
|
|
600
|
+
transition: transform 0.2s;
|
|
601
|
+
box-sizing: border-box;
|
|
464
602
|
}
|
|
465
603
|
|
|
466
|
-
.r-
|
|
467
|
-
|
|
468
|
-
.r-theme-light:not(.r-theme-system) .r-theme-switcher-btn__light {
|
|
469
|
-
color: var(--r-main-950);
|
|
470
|
-
fill: var(--r-main-950);
|
|
471
|
-
pointer-events: none;
|
|
604
|
+
.r-sidebar-input:checked ~ .r-sidebar-btn .r-sidebar-chevron {
|
|
605
|
+
transform: rotate(90deg);
|
|
472
606
|
}
|
|
473
607
|
|
|
474
|
-
.r-
|
|
475
|
-
|
|
476
|
-
|
|
608
|
+
.r-sidebar-list {
|
|
609
|
+
color: var(--r-main-700);
|
|
610
|
+
list-style: none;
|
|
611
|
+
padding: 0;
|
|
612
|
+
margin: 0;
|
|
613
|
+
font-size: 14px;
|
|
614
|
+
box-sizing: border-box;
|
|
477
615
|
}
|
|
478
616
|
|
|
479
|
-
.r-
|
|
480
|
-
|
|
617
|
+
.r-sidebar-drop::details-content {
|
|
618
|
+
overflow: hidden;
|
|
619
|
+
transition: content-visibility 0.4s allow-discrete;
|
|
620
|
+
box-sizing: border-box;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.r-sidebar-sublist {
|
|
624
|
+
margin-left: 12px;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.r-sidebar-drop > .r-sidebar-sublist {
|
|
628
|
+
opacity: 0;
|
|
629
|
+
transition: opacity 0.2s ease;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.r-sidebar-drop[open] > .r-sidebar-sublist {
|
|
633
|
+
opacity: 1;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.r-sidebar-drop > .r-sidebar-sublist > .r-sidebar-li {
|
|
637
|
+
margin-top: -4rem;
|
|
638
|
+
transition: margin-top 0.3s ease;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
@starting-style {
|
|
642
|
+
.r-sidebar-drop[open]._starting-style > .r-sidebar-sublist > .r-sidebar-li {
|
|
643
|
+
margin-top: -4rem;
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.r-sidebar-drop[open] > .r-sidebar-sublist > .r-sidebar-li {
|
|
648
|
+
margin-top: 0;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.r-sidebar-sublist .r-sidebar-link {
|
|
652
|
+
position: relative;
|
|
653
|
+
border-top-left-radius: 0;
|
|
654
|
+
border-bottom-left-radius: 0;
|
|
655
|
+
box-sizing: border-box;
|
|
656
|
+
}
|
|
657
|
+
.r-sidebar-sublist .r-sidebar-link::before {
|
|
658
|
+
content: "";
|
|
659
|
+
position: absolute;
|
|
660
|
+
left: 0;
|
|
661
|
+
top: -1px;
|
|
662
|
+
width: 1px;
|
|
663
|
+
height: calc(100% + 4px);
|
|
664
|
+
background-color: var(--r-main-200);
|
|
665
|
+
transition: background-color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
666
|
+
box-sizing: border-box;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.r-sidebar-li {
|
|
670
|
+
position: relative;
|
|
671
|
+
line-height: 1.5;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.r-sidebar-li._separator {
|
|
675
|
+
background: var(--r-main-200);
|
|
676
|
+
padding: 1px;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.r-sidebar-li._droppable > a {
|
|
680
|
+
padding-right: 32px;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.r-sidebar-li-d0 {
|
|
684
|
+
margin-left: -8px;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.r-sidebar-p {
|
|
688
|
+
margin: 0;
|
|
689
|
+
padding: 4px 10px;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.r-sidebar-heading {
|
|
693
|
+
color: var(--r-main-900);
|
|
694
|
+
font-weight: 600;
|
|
695
|
+
margin-block-end: 4px;
|
|
696
|
+
}
|
|
697
|
+
.r-sidebar-heading:not(:first-child) {
|
|
698
|
+
margin-block-start: 12px;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.r-sidebar-link {
|
|
702
|
+
padding: 4px 10px;
|
|
703
|
+
color: inherit;
|
|
704
|
+
border-bottom: 2px solid transparent;
|
|
705
|
+
border-radius: 2px;
|
|
706
|
+
text-decoration: none;
|
|
707
|
+
display: -webkit-box;
|
|
708
|
+
-webkit-box-orient: vertical;
|
|
709
|
+
-webkit-line-clamp: 3;
|
|
710
|
+
overflow: hidden;
|
|
711
|
+
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;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.r-sidebar-link._target {
|
|
715
|
+
color: var(--r-primary-950);
|
|
716
|
+
background-color: var(--r-main-50);
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.r-sidebar-link:hover {
|
|
720
|
+
color: var(--r-primary-800);
|
|
721
|
+
background-color: var(--r-main-100);
|
|
722
|
+
transition-delay: initial;
|
|
723
|
+
}
|
|
724
|
+
.r-sidebar-link:hover::before {
|
|
725
|
+
background-color: currentColor;
|
|
726
|
+
transition-delay: initial;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.r-sidebar-link._active {
|
|
730
|
+
color: var(--r-primary-700);
|
|
731
|
+
background-color: var(--r-main-50);
|
|
732
|
+
}
|
|
733
|
+
.r-sidebar-link._active::before {
|
|
734
|
+
background-color: currentColor;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.r-sidebar-drop-btn {
|
|
738
|
+
position: absolute;
|
|
739
|
+
right: 3px;
|
|
740
|
+
top: 5px;
|
|
741
|
+
border-radius: 4px;
|
|
742
|
+
padding: 4px;
|
|
743
|
+
list-style: none;
|
|
744
|
+
cursor: pointer;
|
|
745
|
+
transition: color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
746
|
+
}
|
|
747
|
+
.r-sidebar-drop-btn:hover {
|
|
748
|
+
color: var(--r-primary-500);
|
|
749
|
+
transition-delay: initial;
|
|
750
|
+
}
|
|
751
|
+
.r-sidebar-drop-btn::before {
|
|
752
|
+
content: "";
|
|
753
|
+
position: absolute;
|
|
754
|
+
inset: -4px;
|
|
755
|
+
}
|
|
756
|
+
.r-sidebar-drop-btn::-webkit-details-marker {
|
|
757
|
+
display: none;
|
|
481
758
|
}
|
|
482
759
|
|
|
483
|
-
.r-
|
|
760
|
+
.r-sidebar-drop-icon {
|
|
484
761
|
display: block;
|
|
762
|
+
transition: transform 0.2s;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.r-sidebar-drop[open] > .r-sidebar-drop-btn > .r-sidebar-drop-icon {
|
|
766
|
+
transform: rotate(90deg);
|
|
485
767
|
}.r-header-menu {
|
|
486
768
|
display: flex;
|
|
487
769
|
justify-content: flex-end;
|
|
@@ -570,85 +852,6 @@
|
|
|
570
852
|
.r-header-input:checked ~ .r-header-burger .r-burger-line._bottom {
|
|
571
853
|
transform: translateY(0) rotate(-45deg);
|
|
572
854
|
margin-top: 0;
|
|
573
|
-
}.r-dropdown {
|
|
574
|
-
position: relative;
|
|
575
|
-
color: var(--r-main-600);
|
|
576
|
-
transition: color 0.2s 0.1s;
|
|
577
|
-
}
|
|
578
|
-
.r-dropdown:hover, .r-dropdown:focus-within {
|
|
579
|
-
color: var(--r-main-950);
|
|
580
|
-
}
|
|
581
|
-
.r-dropdown:hover .r-dropdown-drop, .r-dropdown:focus-within .r-dropdown-drop {
|
|
582
|
-
visibility: visible;
|
|
583
|
-
pointer-events: all;
|
|
584
|
-
transform: translateY(20px);
|
|
585
|
-
opacity: 1;
|
|
586
|
-
}
|
|
587
|
-
.r-dropdown:hover .r-dropdown-chevron, .r-dropdown:focus-within .r-dropdown-chevron {
|
|
588
|
-
transform: rotate(180deg);
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
.r-dropdown-summary {
|
|
592
|
-
display: flex;
|
|
593
|
-
justify-content: space-between;
|
|
594
|
-
align-items: center;
|
|
595
|
-
width: 100%;
|
|
596
|
-
position: relative;
|
|
597
|
-
color: inherit;
|
|
598
|
-
cursor: pointer;
|
|
599
|
-
padding: 10px 4px;
|
|
600
|
-
font-size: 16px;
|
|
601
|
-
border: 0;
|
|
602
|
-
background: none;
|
|
603
|
-
z-index: 1;
|
|
604
|
-
box-sizing: border-box;
|
|
605
|
-
}
|
|
606
|
-
|
|
607
|
-
.r-dropdown-chevron {
|
|
608
|
-
display: block;
|
|
609
|
-
margin-left: 6px;
|
|
610
|
-
transition: transform 0.3s 0.1s;
|
|
611
|
-
box-sizing: border-box;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
.r-dropdown-drop {
|
|
615
|
-
list-style: none;
|
|
616
|
-
position: absolute;
|
|
617
|
-
top: 16px;
|
|
618
|
-
left: -12px;
|
|
619
|
-
visibility: hidden;
|
|
620
|
-
pointer-events: none;
|
|
621
|
-
opacity: 0;
|
|
622
|
-
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
623
|
-
background-color: var(--r-main-50);
|
|
624
|
-
border: 1px solid var(--r-main-100);
|
|
625
|
-
border-radius: 8px;
|
|
626
|
-
margin: 0;
|
|
627
|
-
padding: 2px 6px;
|
|
628
|
-
min-width: 120px;
|
|
629
|
-
max-width: 180px;
|
|
630
|
-
box-sizing: border-box;
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
.r-dropdown-link {
|
|
634
|
-
display: block;
|
|
635
|
-
width: 100%;
|
|
636
|
-
text-decoration: none;
|
|
637
|
-
color: var(--r-main-700);
|
|
638
|
-
padding: 4px 8px;
|
|
639
|
-
margin-top: 4px;
|
|
640
|
-
margin-bottom: 4px;
|
|
641
|
-
border-radius: 4px;
|
|
642
|
-
transition: background-color 0.2s;
|
|
643
|
-
box-sizing: border-box;
|
|
644
|
-
}
|
|
645
|
-
.r-dropdown-link:hover {
|
|
646
|
-
color: var(--r-main-900);
|
|
647
|
-
background-color: var(--r-main-100);
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
.r-dropdown-link._active {
|
|
651
|
-
color: var(--r-primary-700);
|
|
652
855
|
}.r-search-btn {
|
|
653
856
|
position: relative;
|
|
654
857
|
border-radius: 6px;
|
|
@@ -850,349 +1053,158 @@
|
|
|
850
1053
|
}
|
|
851
1054
|
.r-header-social-git:hover, .r-header-social-git:focus {
|
|
852
1055
|
color: var(--r-main-950);
|
|
853
|
-
}.r-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
padding: 32px 0 40px;
|
|
860
|
-
}
|
|
861
|
-
}
|
|
862
|
-
.r-article > *:first-child {
|
|
863
|
-
margin-top: 0;
|
|
864
|
-
}
|
|
865
|
-
.r-article > *:last-child {
|
|
866
|
-
margin-bottom: 0;
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
.r-checkbox {
|
|
870
|
-
cursor: pointer;
|
|
871
|
-
width: 20px;
|
|
872
|
-
height: 20px;
|
|
873
|
-
margin: 4px;
|
|
874
|
-
vertical-align: middle;
|
|
875
|
-
box-sizing: border-box;
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
.r-label {
|
|
879
|
-
cursor: pointer;
|
|
880
|
-
}
|
|
881
|
-
|
|
882
|
-
.r-task-ol,
|
|
883
|
-
.r-task-ul {
|
|
884
|
-
list-style: none;
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
.r-task-label {
|
|
888
|
-
display: block;
|
|
889
|
-
width: 100%;
|
|
890
|
-
padding-top: 2px;
|
|
891
|
-
padding-bottom: 2px;
|
|
892
|
-
box-sizing: border-box;
|
|
893
|
-
}
|
|
894
|
-
.r-task-label:hover .r-checkbox {
|
|
895
|
-
filter: brightness(0.8);
|
|
896
|
-
}
|
|
897
|
-
|
|
898
|
-
.r-task-li.r-task-li {
|
|
899
|
-
margin-block-start: 2px;
|
|
900
|
-
margin-block-end: 2px;
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
.r-label-text {
|
|
904
|
-
vertical-align: middle;
|
|
905
|
-
}.r-sidebar {
|
|
906
|
-
grid-area: sidebar;
|
|
907
|
-
box-sizing: border-box;
|
|
908
|
-
}
|
|
909
|
-
@media screen and (width < 768px) {
|
|
910
|
-
.r-sidebar {
|
|
911
|
-
position: sticky;
|
|
912
|
-
width: calc(100% + 24px);
|
|
913
|
-
top: var(--r-header-height);
|
|
914
|
-
left: 0;
|
|
915
|
-
margin: 0 -12px;
|
|
916
|
-
background-color: var(--r-main-50);
|
|
917
|
-
border-bottom: 1px solid var(--r-main-200);
|
|
918
|
-
z-index: 10;
|
|
919
|
-
opacity: 0.98;
|
|
920
|
-
padding: 0;
|
|
921
|
-
overflow: auto;
|
|
922
|
-
}
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
.r-sidebar-top-mock {
|
|
926
|
-
grid-row-start: 1;
|
|
927
|
-
grid-column-start: 1;
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
@media screen and (width < 768px) {
|
|
931
|
-
.r-sidebar-input:not(:checked) ~ .r-sidebar-btn ~ .r-sidebar-nav {
|
|
932
|
-
display: none;
|
|
933
|
-
}
|
|
934
|
-
}
|
|
935
|
-
|
|
936
|
-
.r-sidebar-nav {
|
|
1056
|
+
}.r-container {
|
|
1057
|
+
max-width: 1180px;
|
|
1058
|
+
padding-right: 12px;
|
|
1059
|
+
padding-left: 12px;
|
|
1060
|
+
margin-right: auto;
|
|
1061
|
+
margin-left: auto;
|
|
937
1062
|
box-sizing: border-box;
|
|
938
|
-
}
|
|
939
|
-
@media screen and (width < 768px) {
|
|
940
|
-
.r-sidebar-nav {
|
|
941
|
-
overflow: auto;
|
|
942
|
-
max-height: calc(100dvh - var(--r-header-height) - 41px);
|
|
943
|
-
}
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
.r-sidebar-drop {
|
|
947
|
-
margin-top: -4px;
|
|
948
|
-
padding-top: 4px;
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
.r-sidebar-sublist {
|
|
1063
|
+
}.r-dropdown {
|
|
952
1064
|
position: relative;
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
.r-sidebar-sublist:hover::before {
|
|
956
|
-
background-color: var(--r-primary-800);
|
|
957
|
-
transition-delay: initial;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
.r-sidebar-sublist::before {
|
|
961
|
-
content: "";
|
|
962
|
-
position: absolute;
|
|
963
|
-
top: 0;
|
|
964
|
-
left: -12px;
|
|
965
|
-
right: 0;
|
|
966
|
-
height: 2px;
|
|
967
|
-
border-bottom-left-radius: 2px;
|
|
968
|
-
background-color: var(--r-main-200);
|
|
969
|
-
z-index: 1;
|
|
970
|
-
transition: background-color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
971
|
-
box-sizing: border-box;
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
.r-sidebar-nav {
|
|
975
|
-
padding: 32px 4px 32px 2px;
|
|
976
|
-
box-sizing: border-box;
|
|
977
|
-
}
|
|
978
|
-
@media screen and (width < 768px) {
|
|
979
|
-
.r-sidebar-nav {
|
|
980
|
-
padding: 12px;
|
|
981
|
-
}
|
|
1065
|
+
color: var(--r-main-600);
|
|
1066
|
+
transition: color 0.2s 0.1s;
|
|
982
1067
|
}
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
position: sticky;
|
|
986
|
-
top: var(--r-header-height);
|
|
987
|
-
overflow: auto;
|
|
988
|
-
scrollbar-width: thin;
|
|
989
|
-
scrollbar-color: var(--r-main-200) transparent;
|
|
990
|
-
scrollbar-gutter: stable;
|
|
991
|
-
max-height: calc(100dvh - var(--r-header-height));
|
|
992
|
-
}
|
|
1068
|
+
.r-dropdown:hover, .r-dropdown:focus-within {
|
|
1069
|
+
color: var(--r-main-950);
|
|
993
1070
|
}
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
1071
|
+
.r-dropdown:hover .r-dropdown-drop, .r-dropdown:focus-within .r-dropdown-drop {
|
|
1072
|
+
visibility: visible;
|
|
1073
|
+
pointer-events: all;
|
|
1074
|
+
transform: translateY(20px);
|
|
1075
|
+
opacity: 1;
|
|
997
1076
|
}
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
display: block;
|
|
1001
|
-
height: 40px;
|
|
1002
|
-
}
|
|
1077
|
+
.r-dropdown:hover .r-dropdown-chevron, .r-dropdown:focus-within .r-dropdown-chevron {
|
|
1078
|
+
transform: rotate(180deg);
|
|
1003
1079
|
}
|
|
1004
1080
|
|
|
1005
|
-
.r-
|
|
1006
|
-
position: sticky;
|
|
1007
|
-
top: 0;
|
|
1081
|
+
.r-dropdown-summary {
|
|
1008
1082
|
display: flex;
|
|
1083
|
+
justify-content: space-between;
|
|
1084
|
+
align-items: center;
|
|
1009
1085
|
width: 100%;
|
|
1010
|
-
|
|
1086
|
+
position: relative;
|
|
1087
|
+
color: inherit;
|
|
1088
|
+
cursor: pointer;
|
|
1089
|
+
padding: 10px 4px;
|
|
1090
|
+
font-size: 16px;
|
|
1011
1091
|
border: 0;
|
|
1012
|
-
padding: 12px;
|
|
1013
1092
|
background: none;
|
|
1014
|
-
cursor: pointer;
|
|
1015
|
-
color: var(--r-main-800);
|
|
1016
|
-
background-color: var(--r-main-50);
|
|
1017
1093
|
z-index: 1;
|
|
1018
1094
|
box-sizing: border-box;
|
|
1019
1095
|
}
|
|
1020
|
-
@media screen and (width >= 768px) {
|
|
1021
|
-
.r-sidebar-btn {
|
|
1022
|
-
display: none;
|
|
1023
|
-
}
|
|
1024
|
-
}
|
|
1025
1096
|
|
|
1026
|
-
.r-
|
|
1027
|
-
display:
|
|
1028
|
-
margin-
|
|
1029
|
-
transition: transform 0.
|
|
1097
|
+
.r-dropdown-chevron {
|
|
1098
|
+
display: block;
|
|
1099
|
+
margin-left: 6px;
|
|
1100
|
+
transition: transform 0.3s 0.1s;
|
|
1030
1101
|
box-sizing: border-box;
|
|
1031
1102
|
}
|
|
1032
1103
|
|
|
1033
|
-
.r-
|
|
1034
|
-
transform: rotate(90deg);
|
|
1035
|
-
}
|
|
1036
|
-
|
|
1037
|
-
.r-sidebar-list {
|
|
1038
|
-
color: var(--r-main-700);
|
|
1104
|
+
.r-dropdown-drop {
|
|
1039
1105
|
list-style: none;
|
|
1040
|
-
|
|
1106
|
+
position: absolute;
|
|
1107
|
+
top: 16px;
|
|
1108
|
+
left: -12px;
|
|
1109
|
+
visibility: hidden;
|
|
1110
|
+
pointer-events: none;
|
|
1111
|
+
opacity: 0;
|
|
1112
|
+
transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
|
|
1113
|
+
background-color: var(--r-main-50);
|
|
1114
|
+
border: 1px solid var(--r-main-100);
|
|
1115
|
+
border-radius: 8px;
|
|
1041
1116
|
margin: 0;
|
|
1042
|
-
|
|
1117
|
+
padding: 2px 6px;
|
|
1118
|
+
min-width: 120px;
|
|
1119
|
+
max-width: 180px;
|
|
1043
1120
|
box-sizing: border-box;
|
|
1044
1121
|
}
|
|
1045
1122
|
|
|
1046
|
-
.r-
|
|
1047
|
-
|
|
1048
|
-
|
|
1123
|
+
.r-dropdown-link {
|
|
1124
|
+
display: block;
|
|
1125
|
+
width: 100%;
|
|
1126
|
+
text-decoration: none;
|
|
1127
|
+
color: var(--r-main-700);
|
|
1128
|
+
padding: 4px 8px;
|
|
1129
|
+
margin-top: 4px;
|
|
1130
|
+
margin-bottom: 4px;
|
|
1131
|
+
border-radius: 4px;
|
|
1132
|
+
transition: background-color 0.2s;
|
|
1049
1133
|
box-sizing: border-box;
|
|
1050
1134
|
}
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
}
|
|
1055
|
-
|
|
1056
|
-
.r-sidebar-drop > .r-sidebar-sublist {
|
|
1057
|
-
opacity: 0;
|
|
1058
|
-
transition: opacity 0.2s ease;
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
.r-sidebar-drop[open] > .r-sidebar-sublist {
|
|
1062
|
-
opacity: 1;
|
|
1063
|
-
}
|
|
1064
|
-
|
|
1065
|
-
.r-sidebar-drop > .r-sidebar-sublist > .r-sidebar-li {
|
|
1066
|
-
margin-top: -4rem;
|
|
1067
|
-
transition: margin-top 0.3s ease;
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
@starting-style {
|
|
1071
|
-
.r-sidebar-drop[open]._starting-style > .r-sidebar-sublist > .r-sidebar-li {
|
|
1072
|
-
margin-top: -4rem;
|
|
1073
|
-
}
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
.r-sidebar-drop[open] > .r-sidebar-sublist > .r-sidebar-li {
|
|
1077
|
-
margin-top: 0;
|
|
1135
|
+
.r-dropdown-link:hover {
|
|
1136
|
+
color: var(--r-main-900);
|
|
1137
|
+
background-color: var(--r-main-100);
|
|
1078
1138
|
}
|
|
1079
1139
|
|
|
1080
|
-
.r-
|
|
1140
|
+
.r-dropdown-link._active {
|
|
1141
|
+
color: var(--r-primary-700);
|
|
1142
|
+
}.r-theme-switcher {
|
|
1081
1143
|
position: relative;
|
|
1082
|
-
|
|
1083
|
-
|
|
1144
|
+
display: flex;
|
|
1145
|
+
gap: 4px;
|
|
1146
|
+
width: 109px;
|
|
1147
|
+
height: 37px;
|
|
1148
|
+
padding: 2px;
|
|
1149
|
+
background-color: var(--r-main-100);
|
|
1150
|
+
border: 1px solid var(--r-main-200);
|
|
1151
|
+
border-radius: 100px;
|
|
1084
1152
|
box-sizing: border-box;
|
|
1085
1153
|
}
|
|
1086
|
-
.r-
|
|
1154
|
+
.r-theme-switcher::before {
|
|
1087
1155
|
content: "";
|
|
1088
1156
|
position: absolute;
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
width:
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1157
|
+
display: block;
|
|
1158
|
+
height: 32px;
|
|
1159
|
+
width: 32px;
|
|
1160
|
+
top: 2px;
|
|
1161
|
+
left: 2px;
|
|
1162
|
+
background-color: var(--r-main-50);
|
|
1163
|
+
border: 1px solid var(--r-main-200);
|
|
1164
|
+
border-radius: 100px;
|
|
1165
|
+
transition: left 0.2s;
|
|
1095
1166
|
box-sizing: border-box;
|
|
1096
1167
|
}
|
|
1097
1168
|
|
|
1098
|
-
.r-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
.r-sidebar-li._droppable > a {
|
|
1109
|
-
padding-right: 32px;
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
.r-sidebar-li-d0 {
|
|
1113
|
-
margin-left: -8px;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
.r-sidebar-p {
|
|
1117
|
-
margin: 0;
|
|
1118
|
-
padding: 4px 10px;
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
.r-sidebar-heading {
|
|
1122
|
-
color: var(--r-main-900);
|
|
1123
|
-
font-weight: 600;
|
|
1124
|
-
margin-block-end: 4px;
|
|
1125
|
-
}
|
|
1126
|
-
.r-sidebar-heading:not(:first-child) {
|
|
1127
|
-
margin-block-start: 12px;
|
|
1169
|
+
.r-theme-switcher-btn {
|
|
1170
|
+
padding: 8px;
|
|
1171
|
+
background: none;
|
|
1172
|
+
border: 0;
|
|
1173
|
+
border-radius: 100px;
|
|
1174
|
+
cursor: pointer;
|
|
1175
|
+
color: var(--r-main-700);
|
|
1176
|
+
fill: transparent;
|
|
1177
|
+
z-index: 1;
|
|
1178
|
+
transition: color 0.2s 0.1s, fill 0.2s;
|
|
1128
1179
|
}
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
color: inherit;
|
|
1133
|
-
border-bottom: 2px solid transparent;
|
|
1134
|
-
border-radius: 2px;
|
|
1135
|
-
text-decoration: none;
|
|
1136
|
-
display: -webkit-box;
|
|
1137
|
-
-webkit-box-orient: vertical;
|
|
1138
|
-
-webkit-line-clamp: 3;
|
|
1139
|
-
overflow: hidden;
|
|
1140
|
-
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;
|
|
1180
|
+
.r-theme-switcher-btn:hover {
|
|
1181
|
+
color: var(--r-main-950);
|
|
1182
|
+
fill: var(--r-main-600);
|
|
1141
1183
|
}
|
|
1142
1184
|
|
|
1143
|
-
.r-
|
|
1144
|
-
|
|
1145
|
-
background-color: var(--r-main-50);
|
|
1185
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher::before {
|
|
1186
|
+
left: 2px;
|
|
1146
1187
|
}
|
|
1147
1188
|
|
|
1148
|
-
.r-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
background-color: currentColor;
|
|
1155
|
-
transition-delay: initial;
|
|
1189
|
+
.r-theme-dark:not(.r-theme-system) .r-theme-switcher-btn__dark,
|
|
1190
|
+
.r-theme-system .r-theme-switcher-btn__system,
|
|
1191
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher-btn__light {
|
|
1192
|
+
color: var(--r-main-950);
|
|
1193
|
+
fill: var(--r-main-950);
|
|
1194
|
+
pointer-events: none;
|
|
1156
1195
|
}
|
|
1157
1196
|
|
|
1158
|
-
.r-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
}
|
|
1162
|
-
.r-sidebar-link._active::before {
|
|
1163
|
-
background-color: currentColor;
|
|
1197
|
+
.r-theme-switcher::before,
|
|
1198
|
+
.r-theme-system .r-theme-switcher::before {
|
|
1199
|
+
left: 38px;
|
|
1164
1200
|
}
|
|
1165
1201
|
|
|
1166
|
-
.r-
|
|
1167
|
-
|
|
1168
|
-
right: 3px;
|
|
1169
|
-
top: 5px;
|
|
1170
|
-
border-radius: 4px;
|
|
1171
|
-
padding: 4px;
|
|
1172
|
-
list-style: none;
|
|
1173
|
-
cursor: pointer;
|
|
1174
|
-
transition: color 0.2s cubic-bezier(0, 0.66, 0.58, 1) 0.05s;
|
|
1175
|
-
}
|
|
1176
|
-
.r-sidebar-drop-btn:hover {
|
|
1177
|
-
color: var(--r-primary-500);
|
|
1178
|
-
transition-delay: initial;
|
|
1179
|
-
}
|
|
1180
|
-
.r-sidebar-drop-btn::before {
|
|
1181
|
-
content: "";
|
|
1182
|
-
position: absolute;
|
|
1183
|
-
inset: -4px;
|
|
1184
|
-
}
|
|
1185
|
-
.r-sidebar-drop-btn::-webkit-details-marker {
|
|
1186
|
-
display: none;
|
|
1202
|
+
.r-theme-light:not(.r-theme-system) .r-theme-switcher::before {
|
|
1203
|
+
left: 74px;
|
|
1187
1204
|
}
|
|
1188
1205
|
|
|
1189
|
-
.r-
|
|
1206
|
+
.r-theme-switcher-svg {
|
|
1190
1207
|
display: block;
|
|
1191
|
-
transition: transform 0.2s;
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
.r-sidebar-drop[open] > .r-sidebar-drop-btn > .r-sidebar-drop-icon {
|
|
1195
|
-
transform: rotate(90deg);
|
|
1196
1208
|
}.r-keylink {
|
|
1197
1209
|
display: block;
|
|
1198
1210
|
position: relative;
|
|
@@ -1213,55 +1225,47 @@
|
|
|
1213
1225
|
user-select: none;
|
|
1214
1226
|
pointer-events: none;
|
|
1215
1227
|
box-sizing: border-box;
|
|
1216
|
-
}.r-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1228
|
+
}.r-breadcrumbs {
|
|
1229
|
+
grid-area: breadcrumbs;
|
|
1230
|
+
list-style: none;
|
|
1231
|
+
margin: 0;
|
|
1232
|
+
padding: 20px 0 0;
|
|
1233
|
+
line-height: 2;
|
|
1234
|
+
}
|
|
1235
|
+
@media screen and (width >= 768px) {
|
|
1236
|
+
.r-breadcrumbs {
|
|
1237
|
+
padding: 32px 0 0;
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.r-breadcrumb {
|
|
1242
|
+
display: inline;
|
|
1226
1243
|
}
|
|
1227
1244
|
|
|
1228
|
-
.r-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
}.r-git-logo {
|
|
1233
|
-
display: block;
|
|
1234
|
-
}.r-external-mark {
|
|
1235
|
-
position: relative;
|
|
1236
|
-
vertical-align: text-top;
|
|
1237
|
-
display: inline-block;
|
|
1238
|
-
margin-left: -4px;
|
|
1239
|
-
margin-right: 2px;
|
|
1240
|
-
width: 6px;
|
|
1241
|
-
height: 6px;
|
|
1242
|
-
box-sizing: border-box;
|
|
1245
|
+
.r-breadcrumb._previous::after {
|
|
1246
|
+
content: "/";
|
|
1247
|
+
font-weight: 600;
|
|
1248
|
+
margin-inline: 8px;
|
|
1243
1249
|
}
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
right: 0;
|
|
1249
|
-
width: 100%;
|
|
1250
|
-
height: 100%;
|
|
1251
|
-
border-top: 1px solid currentColor;
|
|
1252
|
-
border-right: 1px solid currentColor;
|
|
1253
|
-
box-sizing: border-box;
|
|
1250
|
+
|
|
1251
|
+
.r-breadcrumb-link {
|
|
1252
|
+
color: var(--r-main-700);
|
|
1253
|
+
text-decoration: none;
|
|
1254
1254
|
}
|
|
1255
|
-
.r-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1255
|
+
.r-breadcrumb-link:hover {
|
|
1256
|
+
color: var(--r-primary-800);
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.r-breadcrumb-link,
|
|
1260
|
+
.r-breadcrumb-title {
|
|
1261
|
+
display: inline;
|
|
1262
|
+
padding: 6px 0;
|
|
1263
|
+
margin: 0;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.r-breadcrumb-title {
|
|
1267
|
+
color: var(--r-main-950);
|
|
1268
|
+
font-weight: 600;
|
|
1265
1269
|
}.r-contents {
|
|
1266
1270
|
grid-area: contents;
|
|
1267
1271
|
}
|
|
@@ -1501,50 +1505,6 @@
|
|
|
1501
1505
|
}
|
|
1502
1506
|
.r-contents-git:hover {
|
|
1503
1507
|
color: var(--r-main-900);
|
|
1504
|
-
}.r-breadcrumbs {
|
|
1505
|
-
grid-area: breadcrumbs;
|
|
1506
|
-
list-style: none;
|
|
1507
|
-
margin: 0;
|
|
1508
|
-
padding: 20px 0 0;
|
|
1509
|
-
line-height: 2;
|
|
1510
|
-
}
|
|
1511
|
-
@media screen and (width >= 768px) {
|
|
1512
|
-
.r-breadcrumbs {
|
|
1513
|
-
padding: 32px 0 0;
|
|
1514
|
-
}
|
|
1515
|
-
}
|
|
1516
|
-
|
|
1517
|
-
.r-breadcrumb {
|
|
1518
|
-
display: inline;
|
|
1519
|
-
}
|
|
1520
|
-
|
|
1521
|
-
.r-breadcrumb._previous::after {
|
|
1522
|
-
content: "/";
|
|
1523
|
-
font-weight: 600;
|
|
1524
|
-
margin-inline: 8px;
|
|
1525
|
-
}
|
|
1526
|
-
|
|
1527
|
-
.r-breadcrumb-link {
|
|
1528
|
-
color: var(--r-main-700);
|
|
1529
|
-
text-decoration: none;
|
|
1530
|
-
}
|
|
1531
|
-
.r-breadcrumb-link:hover {
|
|
1532
|
-
color: var(--r-primary-800);
|
|
1533
|
-
}
|
|
1534
|
-
|
|
1535
|
-
.r-breadcrumb-link,
|
|
1536
|
-
.r-breadcrumb-title {
|
|
1537
|
-
display: inline;
|
|
1538
|
-
padding: 6px 0;
|
|
1539
|
-
margin: 0;
|
|
1540
|
-
}
|
|
1541
|
-
|
|
1542
|
-
.r-breadcrumb-title {
|
|
1543
|
-
color: var(--r-main-950);
|
|
1544
|
-
font-weight: 600;
|
|
1545
|
-
}.r-last-modified {
|
|
1546
|
-
color: var(--r-main-700);
|
|
1547
|
-
margin-block-start: 16px;
|
|
1548
1508
|
}.r-pagination {
|
|
1549
1509
|
grid-area: pagination;
|
|
1550
1510
|
display: grid;
|
|
@@ -1617,6 +1577,58 @@
|
|
|
1617
1577
|
|
|
1618
1578
|
.r-pagination-svg {
|
|
1619
1579
|
display: block;
|
|
1580
|
+
}.r-last-modified {
|
|
1581
|
+
color: var(--r-main-700);
|
|
1582
|
+
margin-block-start: 16px;
|
|
1583
|
+
}.r-backdrop {
|
|
1584
|
+
position: fixed;
|
|
1585
|
+
top: 0;
|
|
1586
|
+
right: 0;
|
|
1587
|
+
bottom: 0;
|
|
1588
|
+
left: 0;
|
|
1589
|
+
opacity: 0;
|
|
1590
|
+
visibility: hidden;
|
|
1591
|
+
pointer-events: none;
|
|
1592
|
+
z-index: 100;
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
.r-backdrop._visible {
|
|
1596
|
+
opacity: 1;
|
|
1597
|
+
visibility: visible;
|
|
1598
|
+
pointer-events: all;
|
|
1599
|
+
}.r-git-logo {
|
|
1600
|
+
display: block;
|
|
1601
|
+
}.r-external-mark {
|
|
1602
|
+
position: relative;
|
|
1603
|
+
vertical-align: text-top;
|
|
1604
|
+
display: inline-block;
|
|
1605
|
+
margin-left: -4px;
|
|
1606
|
+
margin-right: 2px;
|
|
1607
|
+
width: 6px;
|
|
1608
|
+
height: 6px;
|
|
1609
|
+
box-sizing: border-box;
|
|
1610
|
+
}
|
|
1611
|
+
.r-external-mark::after {
|
|
1612
|
+
content: "";
|
|
1613
|
+
position: absolute;
|
|
1614
|
+
top: 0;
|
|
1615
|
+
right: 0;
|
|
1616
|
+
width: 100%;
|
|
1617
|
+
height: 100%;
|
|
1618
|
+
border-top: 1px solid currentColor;
|
|
1619
|
+
border-right: 1px solid currentColor;
|
|
1620
|
+
box-sizing: border-box;
|
|
1621
|
+
}
|
|
1622
|
+
.r-external-mark::before {
|
|
1623
|
+
content: "";
|
|
1624
|
+
position: absolute;
|
|
1625
|
+
top: 0;
|
|
1626
|
+
right: 0;
|
|
1627
|
+
width: 3px;
|
|
1628
|
+
height: 3px;
|
|
1629
|
+
background-color: currentColor;
|
|
1630
|
+
border-radius: 0 0 0 4px;
|
|
1631
|
+
box-sizing: border-box;
|
|
1620
1632
|
}.r-kbd-container {
|
|
1621
1633
|
display: flex;
|
|
1622
1634
|
gap: 4px;
|
|
@@ -1704,6 +1716,7 @@
|
|
|
1704
1716
|
.r-code-section-filename {
|
|
1705
1717
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1706
1718
|
}.r-block {
|
|
1719
|
+
position: relative;
|
|
1707
1720
|
width: 100%;
|
|
1708
1721
|
overflow: auto;
|
|
1709
1722
|
margin-block-start: 12px;
|
|
@@ -1711,6 +1724,7 @@
|
|
|
1711
1724
|
scrollbar-width: thin;
|
|
1712
1725
|
scrollbar-color: var(--r-main-200) transparent;
|
|
1713
1726
|
box-sizing: border-box;
|
|
1727
|
+
z-index: 1;
|
|
1714
1728
|
}.r-blockquote {
|
|
1715
1729
|
padding: 4px 12px 4px 20px;
|
|
1716
1730
|
border: 4px solid var(--r-main-100);
|
|
@@ -1768,6 +1782,19 @@
|
|
|
1768
1782
|
}
|
|
1769
1783
|
.r-blockquote-caution .r-blockquote-title {
|
|
1770
1784
|
color: var(--r-caution);
|
|
1785
|
+
}.r-code-block {
|
|
1786
|
+
font-family: var(--monospace-font, monospace, monospace);
|
|
1787
|
+
font-size: 16px;
|
|
1788
|
+
line-height: 1.33;
|
|
1789
|
+
border-radius: 6px;
|
|
1790
|
+
padding: 16px 20px;
|
|
1791
|
+
margin: 0;
|
|
1792
|
+
color: var(--r-primary-800);
|
|
1793
|
+
background-color: var(--r-main-50);
|
|
1794
|
+
overflow-x: auto;
|
|
1795
|
+
scrollbar-width: thin;
|
|
1796
|
+
scrollbar-color: var(--r-main-200) transparent;
|
|
1797
|
+
box-sizing: border-box;
|
|
1771
1798
|
}.r-code-span {
|
|
1772
1799
|
font-family: var(--monospace-font, monospace, monospace);
|
|
1773
1800
|
background-color: var(--r-main-100);
|
|
@@ -1782,19 +1809,6 @@
|
|
|
1782
1809
|
|
|
1783
1810
|
.r-code-span + .r-content-link-external {
|
|
1784
1811
|
margin-left: -12px;
|
|
1785
|
-
}.r-code-block {
|
|
1786
|
-
font-family: var(--monospace-font, monospace, monospace);
|
|
1787
|
-
font-size: 16px;
|
|
1788
|
-
line-height: 1.33;
|
|
1789
|
-
border-radius: 6px;
|
|
1790
|
-
padding: 16px 20px;
|
|
1791
|
-
margin: 0;
|
|
1792
|
-
color: var(--r-primary-800);
|
|
1793
|
-
background-color: var(--r-main-50);
|
|
1794
|
-
overflow-x: auto;
|
|
1795
|
-
scrollbar-width: thin;
|
|
1796
|
-
scrollbar-color: var(--r-main-200) transparent;
|
|
1797
|
-
box-sizing: border-box;
|
|
1798
1812
|
}.r-h1 {
|
|
1799
1813
|
font-size: 32px;
|
|
1800
1814
|
line-height: 1.4;
|
|
@@ -1926,34 +1940,6 @@
|
|
|
1926
1940
|
|
|
1927
1941
|
.r-copy-button-svg {
|
|
1928
1942
|
display: block;
|
|
1929
|
-
}.r-copy-text {
|
|
1930
|
-
position: relative;
|
|
1931
|
-
cursor: pointer;
|
|
1932
|
-
background: none;
|
|
1933
|
-
border: 0;
|
|
1934
|
-
padding: 0;
|
|
1935
|
-
font: inherit;
|
|
1936
|
-
padding: 6px 0;
|
|
1937
|
-
}
|
|
1938
|
-
.r-copy-text:hover {
|
|
1939
|
-
color: var(--r-main-950);
|
|
1940
|
-
}
|
|
1941
|
-
.r-copy-text::before {
|
|
1942
|
-
content: "";
|
|
1943
|
-
position: absolute;
|
|
1944
|
-
bottom: 0;
|
|
1945
|
-
left: 0;
|
|
1946
|
-
width: 100%;
|
|
1947
|
-
height: 1px;
|
|
1948
|
-
background: linear-gradient(to right, currentColor 30%, transparent 0%, transparent 80%, currentColor 80%) repeat-x 0px/8px;
|
|
1949
|
-
transition: background 0.2s;
|
|
1950
|
-
box-sizing: border-box;
|
|
1951
|
-
opacity: 0.6;
|
|
1952
|
-
}
|
|
1953
|
-
|
|
1954
|
-
.r-copy-text:active,
|
|
1955
|
-
.r-copy-text._active {
|
|
1956
|
-
color: var(--r-success);
|
|
1957
1943
|
}.r-content-link {
|
|
1958
1944
|
text-decoration: none;
|
|
1959
1945
|
color: inherit;
|
|
@@ -2003,6 +1989,34 @@
|
|
|
2003
1989
|
background-color: currentColor;
|
|
2004
1990
|
border-radius: 0 0 0 4px;
|
|
2005
1991
|
box-sizing: border-box;
|
|
1992
|
+
}.r-copy-text {
|
|
1993
|
+
position: relative;
|
|
1994
|
+
cursor: pointer;
|
|
1995
|
+
background: none;
|
|
1996
|
+
border: 0;
|
|
1997
|
+
padding: 0;
|
|
1998
|
+
font: inherit;
|
|
1999
|
+
padding: 6px 0;
|
|
2000
|
+
}
|
|
2001
|
+
.r-copy-text:hover {
|
|
2002
|
+
color: var(--r-main-950);
|
|
2003
|
+
}
|
|
2004
|
+
.r-copy-text::before {
|
|
2005
|
+
content: "";
|
|
2006
|
+
position: absolute;
|
|
2007
|
+
bottom: 0;
|
|
2008
|
+
left: 0;
|
|
2009
|
+
width: 100%;
|
|
2010
|
+
height: 1px;
|
|
2011
|
+
background: linear-gradient(to right, currentColor 30%, transparent 0%, transparent 80%, currentColor 80%) repeat-x 0px/8px;
|
|
2012
|
+
transition: background 0.2s;
|
|
2013
|
+
box-sizing: border-box;
|
|
2014
|
+
opacity: 0.6;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
.r-copy-text:active,
|
|
2018
|
+
.r-copy-text._active {
|
|
2019
|
+
color: var(--r-success);
|
|
2006
2020
|
}.r-li {
|
|
2007
2021
|
line-height: 1.8;
|
|
2008
2022
|
margin-block-start: 6px;
|
|
@@ -2058,6 +2072,11 @@
|
|
|
2058
2072
|
|
|
2059
2073
|
.r-td_right {
|
|
2060
2074
|
text-align: right;
|
|
2075
|
+
}.r-tr {
|
|
2076
|
+
border-collapse: collapse;
|
|
2077
|
+
}
|
|
2078
|
+
.r-tr:not(:first-child) {
|
|
2079
|
+
border-top: 1px solid var(--r-main-200);
|
|
2061
2080
|
}.r-th {
|
|
2062
2081
|
padding: 8px 12px;
|
|
2063
2082
|
border-collapse: collapse;
|
|
@@ -2084,15 +2103,6 @@
|
|
|
2084
2103
|
|
|
2085
2104
|
.r-th_right {
|
|
2086
2105
|
text-align: right;
|
|
2087
|
-
}.r-tr {
|
|
2088
|
-
border-collapse: collapse;
|
|
2089
|
-
}
|
|
2090
|
-
.r-tr:not(:first-child) {
|
|
2091
|
-
border-top: 1px solid var(--r-main-200);
|
|
2092
|
-
}.r-task-ol {
|
|
2093
|
-
list-style: none;
|
|
2094
|
-
}.r-task-ul {
|
|
2095
|
-
list-style: none;
|
|
2096
2106
|
}.r-task-li.r-task-li {
|
|
2097
2107
|
margin-block-start: 2px;
|
|
2098
2108
|
margin-block-end: 2px;
|
|
@@ -2122,6 +2132,10 @@
|
|
|
2122
2132
|
|
|
2123
2133
|
.r-task-label-text {
|
|
2124
2134
|
vertical-align: middle;
|
|
2135
|
+
}.r-task-ol {
|
|
2136
|
+
list-style: none;
|
|
2137
|
+
}.r-task-ul {
|
|
2138
|
+
list-style: none;
|
|
2125
2139
|
}.r-tooltip {
|
|
2126
2140
|
font-family: var(--monospace-font, monospace, monospace);
|
|
2127
2141
|
display: none;
|