Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*!
2
 * Bootstrap Docs (https://getbootstrap.com/)
3
 * Copyright 2011-2020 The Bootstrap Authors
4
 * Copyright 2011-2020 Twitter, Inc.
5
 * Licensed under the Creative Commons Attribution 3.0 Unported License.
6
 * For details, see https://creativecommons.org/licenses/by/3.0/.
7
 */
8
.bd-content > h2[id],
9
.bd-content > h3[id],
10
.bd-content > h4[id] {
11
  pointer-events: none;
12
}
13
.bd-content > h2[id]::before,
14
.bd-content > h3[id]::before,
15
.bd-content > h4[id]::before {
16
  display: block;
17
  height: 6rem;
18
  margin-top: -6rem;
19
  content: "";
20
}
21
.bd-content > .table {
22
  max-width: 100%;
23
  margin-bottom: 1.5rem;
24
}
25
@media (max-width: 991.98px) {
26
  .bd-content > .table {
27
    display: block;
28
    overflow-x: auto;
29
  }
30
  .bd-content > .table.table-bordered {
31
    border: 0;
32
  }
33
}
34
.bd-content > .table th:first-child,
35
.bd-content > .table td:first-child {
36
  padding-left: 0;
37
}
38
.bd-content > .table th:not(:last-child),
39
.bd-content > .table td:not(:last-child) {
40
  padding-right: 1.5rem;
41
}
42
.bd-content > .table td:first-child > code {
43
  white-space: nowrap;
44
}
45
 
46
.bd-content-title {
47
  display: block;
48
  pointer-events: auto;
49
}
50
 
51
.bd-content > h2:not(:first-child) {
52
  margin-top: 3rem;
53
}
54
.bd-content > h3 {
55
  margin-top: 1.5rem;
56
}
57
.bd-content > ul li,
58
.bd-content > ol li {
59
  margin-bottom: 0.25rem;
60
}
61
 
62
.bd-title {
63
  margin-bottom: 0.5rem;
64
  font-size: 3rem;
65
}
66
 
67
.bd-lead {
68
  font-size: 1.5rem;
69
  font-weight: 300;
70
}
71
 
72
.bd-text-purple {
73
  color: #563d7c;
74
}
75
 
76
.bd-text-purple-bright {
77
  color: #7952b3;
78
}
79
 
80
.skippy {
81
  display: block;
82
  padding: 1em;
83
  color: #fff;
84
  text-align: center;
85
  background-color: #563d7c;
86
  outline: 0;
87
}
88
.skippy:hover {
89
  color: #fff;
90
}
91
 
92
.skippy-text {
93
  padding: 0.5em;
94
  outline: 1px dotted;
95
}
96
 
97
.sidebar {
98
  line-height: 1.8;
99
  font-size: 90%;
100
}
101
 
102
@media (min-width: 576px) {
103
  .sidebar {
104
    border-right: 1px solid #dee2e6;
105
    border-bottom: 1px solid #dee2e6;
106
  }
107
}
108
.sidebar .dropdown-menu .dropdown-item {
109
  white-space: normal;
110
  text-transform: capitalize;
111
}
112
 
113
.docs-sidebar ul {
114
  list-style: none;
115
  padding: 0;
116
  margin: 0;
117
}
118
 
119
.docs-sidebar > ul {
120
  padding: 0 2px;
121
}
122
 
123
.docs-sidebar a {
124
  position: relative;
125
  display: flex;
126
  align-items: center;
127
  color: #212529;
128
  text-decoration: none;
129
  padding: 0.3rem 0.5rem;
130
  border-top: solid 1px #dee2e6;
131
}
132
.docs-sidebar a.dropdown-toggle::after {
133
  margin-left: auto;
134
  font-size: 14px;
135
  color: #ced4da;
136
}
137
 
138
.docs-sidebar a:hover {
139
  background-color: #e9ecef;
140
}
141
 
142
.docs-sidebar > ul > li li a {
143
  padding-left: 1rem;
144
  border-top: solid 1px transparent;
145
}
146
 
147
.docs-sidebar > ul ul > li li a {
148
  padding-left: 2rem;
149
  border-top: solid 1px transparent;
150
}
151
 
152
@media screen and (max-width: 480px) {
153
  .docs-sidebar > ul > li:last-child a {
154
    border-bottom: solid 1px #dee2e6;
155
  }
156
}
157
.docs-sidebar .active > a {
158
  background: #dee2e6;
159
  font-weight: bold;
160
}
161
 
162
.docs-sidebar .slide-menu .has-sub-menu:not(.parent) ul {
163
  display: none;
164
}
165
 
166
.secondnav {
167
  z-index: 0;
168
  position: fixed;
169
  width: 100%;
170
  height: calc(100vh - 50px);
171
  top: 50px;
172
  overflow-y: auto;
173
}
174
 
175
#TableOfContents > ul {
176
  font-size: 90%;
177
  padding-left: 0;
178
  padding-top: 1rem;
179
  border-left: 1px solid #dee2e6;
180
}
181
#TableOfContents > ul ul {
182
  padding-left: 1rem;
183
}
184
#TableOfContents > ul li {
185
  display: block;
186
}
187
#TableOfContents > ul li a {
188
  display: block;
189
  padding: 0.125rem 1.5rem;
190
  color: #212529;
191
}
192
#TableOfContents > ul li a:hover {
193
  color: #007bff;
194
  text-decoration: none;
195
}
196
 
197
.bd-toc nav {
198
  padding-top: 0.125em;
199
  padding-bottom: 0.125em;
200
  border-left: 0.25em solid #e9ecef;
201
}
202
.bd-toc nav > ul {
203
  padding-left: 0.5rem;
204
  margin-bottom: 0;
205
}
206
.bd-toc nav > ul > li {
207
  display: block;
208
}
209
.bd-toc nav li ul li {
210
  margin-bottom: 0.25rem;
211
  list-style-type: disc;
212
}
213
.bd-toc nav a code {
214
  font: inherit;
215
}
216
 
217
.bd-footer {
218
  font-size: 0.875rem;
219
  color: #63707c;
220
}
221
.bd-footer a {
222
  font-weight: 600;
223
  color: #495057;
224
}
225
.bd-footer a:hover, .bd-footer a:focus {
226
  color: #007bff;
227
}
228
.bd-footer p {
229
  margin-bottom: 0;
230
}
231
 
232
.bd-footer-links {
233
  padding-left: 0;
234
  margin-bottom: 1rem;
235
}
236
.bd-footer-links li {
237
  display: inline-block;
238
}
239
.bd-footer-links li + li {
240
  margin-left: 1rem;
241
}
242
 
243
.bd-example-row .row > .col,
244
.bd-example-row .row > [class^=col-] {
245
  padding-top: 0.75rem;
246
  padding-bottom: 0.75rem;
247
  background-color: rgba(86, 61, 124, 0.15);
248
  border: 1px solid rgba(86, 61, 124, 0.2);
249
}
250
.bd-example-row .row + .row {
251
  margin-top: 1rem;
252
}
253
 
254
.bd-example-row-flex-cols .row {
255
  min-height: 10rem;
256
  background-color: rgba(255, 0, 0, 0.1);
257
}
258
 
259
.bd-highlight {
260
  background-color: rgba(86, 61, 124, 0.15);
261
  border: 1px solid rgba(86, 61, 124, 0.15);
262
}
263
 
264
.bd-example-responsive-containers [class^=container] {
265
  padding-top: 0.75rem;
266
  padding-bottom: 0.75rem;
267
  background-color: rgba(86, 61, 124, 0.15);
268
  border: 1px solid rgba(86, 61, 124, 0.2);
269
}
270
 
271
.example-container {
272
  width: 800px;
273
  width: 100%;
274
  padding-right: 15px;
275
  padding-left: 15px;
276
  margin-right: auto;
277
  margin-left: auto;
278
}
279
 
280
.example-row {
281
  display: flex;
282
  flex-wrap: wrap;
283
  margin-right: -15px;
284
  margin-left: -15px;
285
}
286
 
287
.example-content-main {
288
  position: relative;
289
  width: 100%;
290
  padding-right: 15px;
291
  padding-left: 15px;
292
}
293
@media (min-width: 576px) {
294
  .example-content-main {
295
    flex: 0 0 50%;
296
    max-width: 50%;
297
  }
298
}
299
@media (min-width: 992px) {
300
  .example-content-main {
301
    flex: 0 0 66.66666667%;
302
    max-width: 66.66666667%;
303
  }
304
}
305
 
306
.example-content-secondary {
307
  position: relative;
308
  width: 100%;
309
  padding-right: 15px;
310
  padding-left: 15px;
311
}
312
@media (min-width: 576px) {
313
  .example-content-secondary {
314
    flex: 0 0 50%;
315
    max-width: 50%;
316
  }
317
}
318
@media (min-width: 992px) {
319
  .example-content-secondary {
320
    flex: 0 0 33.33333333%;
321
    max-width: 33.33333333%;
322
  }
323
}
324
 
325
.bd-example {
326
  position: relative;
327
  padding: 1rem;
328
  margin: 1rem -15px 0;
329
  border: solid #f8f9fa;
330
  border-width: 0.2rem 0 0;
331
}
332
.bd-example::after {
333
  display: block;
334
  clear: both;
335
  content: "";
336
}
337
@media (min-width: 576px) {
338
  .bd-example {
339
    padding: 1.5rem;
340
    margin-right: 0;
341
    margin-left: 0;
342
    border-width: 0.2rem;
343
  }
344
}
345
.bd-example + .highlight,
346
.bd-example + .clipboard + .highlight {
347
  margin-top: 0;
348
}
349
.bd-example + p {
350
  margin-top: 2rem;
351
}
352
.bd-example > .form-control + .form-control {
353
  margin-top: 0.5rem;
354
}
355
.bd-example > .nav + .nav,
356
.bd-example > .alert + .alert,
357
.bd-example > .navbar + .navbar,
358
.bd-example > .progress + .progress {
359
  margin-top: 1rem;
360
}
361
.bd-example > .dropdown-menu {
362
  position: static;
363
  display: block;
364
}
365
 
366
.bd-example > svg + svg,
367
.bd-example > img + img {
368
  margin-left: 0.5rem;
369
}
370
 
371
.bd-example > .btn,
372
.bd-example > .btn-group {
373
  margin-top: 0.25rem;
374
  margin-bottom: 0.25rem;
375
}
376
.bd-example > .btn-toolbar + .btn-toolbar {
377
  margin-top: 0.5rem;
378
}
379
 
380
.bd-example > .list-group {
381
  max-width: 400px;
382
}
383
 
384
.bd-example > [class*=list-group-horizontal] {
385
  max-width: 100%;
386
}
387
 
388
.bd-example .fixed-top,
389
.bd-example .sticky-top {
390
  position: static;
391
  margin: -1rem -1rem 1rem;
392
}
393
.bd-example .fixed-bottom {
394
  position: static;
395
  margin: 1rem -1rem -1rem;
396
}
397
@media (min-width: 576px) {
398
  .bd-example .fixed-top,
399
  .bd-example .sticky-top {
400
    margin: -1.5rem -1.5rem 1rem;
401
  }
402
  .bd-example .fixed-bottom {
403
    margin: 1rem -1.5rem -1.5rem;
404
  }
405
}
406
 
407
.bd-example .pagination {
408
  margin-top: 0.5rem;
409
  margin-bottom: 0.5rem;
410
}
411
 
412
.bd-example-modal {
413
  background-color: #fafafa;
414
}
415
.bd-example-modal .modal {
416
  position: static;
417
  display: block;
418
}
419
 
420
.tooltip-demo a {
421
  white-space: nowrap;
422
}
423
 
424
.scrollspy-example {
425
  position: relative;
426
  height: 200px;
427
  margin-top: 0.5rem;
428
  overflow: auto;
429
}
430
 
431
.scrollspy-example-2 {
432
  position: relative;
433
  height: 350px;
434
  overflow: auto;
435
}
436
 
437
.bd-example-border-utils [class^=border] {
438
  display: inline-block;
439
  width: 5rem;
440
  height: 5rem;
441
  margin: 0.25rem;
442
  background-color: #f5f5f5;
443
}
444
 
445
.bd-example-border-utils-0 [class^=border] {
446
  border: 1px solid #dee2e6;
447
}
448
 
449
.highlight {
450
  padding: 1rem;
451
  margin-top: 1rem;
452
  margin-bottom: 1rem;
453
  background-color: #f8f9fa;
454
  -ms-overflow-style: -ms-autohiding-scrollbar;
455
}
456
@media (min-width: 576px) {
457
  .highlight {
458
    padding: 1.5rem;
459
  }
460
}
461
 
462
.bd-content .highlight {
463
  margin-right: -15px;
464
  margin-left: -15px;
465
}
466
@media (min-width: 576px) {
467
  .bd-content .highlight {
468
    margin-right: 0;
469
    margin-left: 0;
470
  }
471
}
472
 
473
.highlight pre {
474
  padding: 0;
475
  margin-top: 0;
476
  margin-bottom: 0;
477
  background-color: transparent;
478
  border: 0;
479
}
480
.highlight pre code {
481
  font-size: inherit;
482
  color: #212529;
483
}
484
 
485
.bd-callout {
486
  padding: 1.25rem;
487
  margin-top: 1.25rem;
488
  margin-bottom: 1.25rem;
489
  border: 1px solid #e9ecef;
490
  border-left-width: 0.25rem;
491
  border-radius: 0.25rem;
492
}
493
.bd-callout h4 {
494
  margin-bottom: 0.25rem;
495
}
496
.bd-callout p:last-child {
497
  margin-bottom: 0;
498
}
499
.bd-callout code {
500
  border-radius: 0.25rem;
501
}
502
.bd-callout + .bd-callout {
503
  margin-top: -0.25rem;
504
}
505
 
506
.bd-callout-info {
507
  border-left-color: #5bc0de;
508
}
509
.bd-callout-info h4 {
510
  color: #5bc0de;
511
}
512
 
513
.bd-callout-warning {
514
  border-left-color: #f0ad4e;
515
}
516
.bd-callout-warning h4 {
517
  color: #f0ad4e;
518
}
519
 
520
.bd-callout-danger {
521
  border-left-color: #d9534f;
522
}
523
.bd-callout-danger h4 {
524
  color: #d9534f;
525
}
526
 
527
.swatch-blue {
528
  color: #fff;
529
  background-color: #007bff;
530
}
531
 
532
.swatch-indigo {
533
  color: #fff;
534
  background-color: #6610f2;
535
}
536
 
537
.swatch-purple {
538
  color: #fff;
539
  background-color: #6f42c1;
540
}
541
 
542
.swatch-pink {
543
  color: #fff;
544
  background-color: #e83e8c;
545
}
546
 
547
.swatch-red {
548
  color: #fff;
549
  background-color: #dc3545;
550
}
551
 
552
.swatch-orange {
553
  color: #212529;
554
  background-color: #fd7e14;
555
}
556
 
557
.swatch-yellow {
558
  color: #212529;
559
  background-color: #ffc107;
560
}
561
 
562
.swatch-green {
563
  color: #fff;
564
  background-color: #28a745;
565
}
566
 
567
.swatch-teal {
568
  color: #fff;
569
  background-color: #20c997;
570
}
571
 
572
.swatch-cyan {
573
  color: #fff;
574
  background-color: #17a2b8;
575
}
576
 
577
.swatch-white {
578
  color: #212529;
579
  background-color: #fff;
580
}
581
 
582
.swatch-gray {
583
  color: #fff;
584
  background-color: #6c757d;
585
}
586
 
587
.swatch-gray-dark {
588
  color: #fff;
589
  background-color: #343a40;
590
}
591
 
592
.swatch-100 {
593
  color: #212529;
594
  background-color: #f8f9fa;
595
}
596
 
597
.swatch-200 {
598
  color: #212529;
599
  background-color: #e9ecef;
600
}
601
 
602
.swatch-300 {
603
  color: #212529;
604
  background-color: #dee2e6;
605
}
606
 
607
.swatch-400 {
608
  color: #212529;
609
  background-color: #ced4da;
610
}
611
 
612
.swatch-500 {
613
  color: #212529;
614
  background-color: #adb5bd;
615
}
616
 
617
.swatch-600 {
618
  color: #fff;
619
  background-color: #6c757d;
620
}
621
 
622
.swatch-700 {
623
  color: #fff;
624
  background-color: #495057;
625
}
626
 
627
.swatch-800 {
628
  color: #fff;
629
  background-color: #343a40;
630
}
631
 
632
.swatch-900 {
633
  color: #fff;
634
  background-color: #212529;
635
}
636
 
637
.bd-clipboard {
638
  position: relative;
639
  display: none;
640
  float: right;
641
}
642
.bd-clipboard + .highlight {
643
  margin-top: 0;
644
}
645
@media (min-width: 768px) {
646
  .bd-clipboard {
647
    display: block;
648
  }
649
}
650
 
651
.btn-clipboard {
652
  position: absolute;
653
  top: 0.5rem;
654
  right: 0.5rem;
655
  z-index: 10;
656
  display: block;
657
  padding: 0.25rem 0.5rem;
658
  font-size: 0.75em;
659
  color: #343a40;
660
  background-color: transparent;
661
  border: 0;
662
  border-radius: 0.25rem;
663
}
664
.btn-clipboard:hover {
665
  color: #fff;
666
  background-color: #007bff;
667
}
668
 
669
.bd-placeholder-img {
670
  font-size: 1.125rem;
671
  text-anchor: middle;
672
  user-select: none;
673
}
674
 
675
.bd-placeholder-img-lg {
676
  font-size: 3.5rem;
677
}
678
 
679
/* NEW Background .chroma { background-color: #f0f0f0; } */
680
/* NEW Error .chroma .err { } */
681
/* NEW LineTableTD .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; } */
682
/* NEW LineTable .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; overflow: auto; display: block; } */
683
/* NEW LineHighlight .chroma .hl { display: block; width: 100%; background-color: #ffffcc; } */
684
/* NEW LineNumbersTable .chroma .lnt { margin-right: .4em; padding: 0 .4em; } */
685
/* NEW LineNumbers .chroma .ln { margin-right: .4em; padding: 0 .4em; } */
686
/* LiteralStringDelimiter */
687
.chroma .dl {
688
  color: #4070a0;
689
} /* NEW */
690
/* Comment */
691
.chroma .c {
692
  color: #727272;
693
}
694
 
695
/* CommentMultiline */
696
.chroma .c1 {
697
  color: #727272;
698
}
699
 
700
/* CommentHashbang */
701
.chroma .ch {
702
  font-style: italic;
703
  color: #60a0b0;
704
} /* NEW */
705
/* CommentMultiline */
706
.chroma .cm {
707
  color: #727272;
708
}
709
 
710
/* CommentPreproc */
711
.chroma .cp {
712
  color: #008085;
713
}
714
 
715
/* CommentPreprocFile */
716
.chroma .cpf {
717
  color: #007020;
718
} /* NEW */
719
/* CommentSpecial */
720
.chroma .cs {
721
  color: #727272;
722
}
723
 
724
/* GenericDeleted */
725
.chroma .gd {
726
  background-color: #fcc;
727
  border: 1px solid #c00;
728
}
729
 
730
/* GenericEmph */
731
.chroma .ge {
732
  font-style: italic;
733
}
734
 
735
/* GenericHeading */
736
.chroma .gh {
737
  color: #030;
738
}
739
 
740
/* GenericInserted */
741
.chroma .gi {
742
  background-color: #cfc;
743
  border: 1px solid #0c0;
744
}
745
 
746
/* GenericUnderline */
747
.chroma .gl {
748
  text-decoration: underline;
749
} /* NEW */
750
/* GenericOutput */
751
.chroma .go {
752
  color: #aaa;
753
}
754
 
755
/* GenericPrompt */
756
.chroma .gp {
757
  color: #009;
758
}
759
 
760
/* GenericError */
761
.chroma .gr {
762
  color: #f00;
763
}
764
 
765
/* GenericStrong */
766
.chroma .gs {
767
  font-weight: 700;
768
} /* NEW */
769
/* GenericTraceback */
770
.chroma .gt {
771
  color: #9c6;
772
}
773
 
774
/* GenericSubheading */
775
.chroma .gu {
776
  color: #030;
777
}
778
 
779
/* LiteralNumberIntegerLong */
780
.chroma .il {
781
  color: #c24f19;
782
}
783
 
784
/* Keyword */
785
.chroma .k {
786
  color: #069;
787
}
788
 
789
/* KeywordConstant */
790
.chroma .kc {
791
  color: #069;
792
}
793
 
794
/* KeywordDeclaration */
795
.chroma .kd {
796
  color: #069;
797
}
798
 
799
/* KeywordNamespace */
800
.chroma .kn {
801
  color: #069;
802
}
803
 
804
/* KeywordPseudo */
805
.chroma .kp {
806
  color: #069;
807
}
808
 
809
/* KeywordReserved */
810
.chroma .kr {
811
  color: #069;
812
}
813
 
814
/* KeywordType */
815
.chroma .kt {
816
  color: #078;
817
}
818
 
819
/* LiteralNumber */
820
.chroma .m {
821
  color: #c24f19;
822
}
823
 
824
/* LiteralNumberFloat */
825
.chroma .mf {
826
  color: #c24f19;
827
}
828
 
829
/* LiteralNumberBin */
830
.chroma .mb {
831
  color: #40a070;
832
} /* NEW */
833
/* LiteralNumberHex */
834
.chroma .mh {
835
  color: #c24f19;
836
}
837
 
838
/* LiteralNumberInteger */
839
.chroma .mi {
840
  color: #c24f19;
841
}
842
 
843
/* LiteralNumberOct */
844
.chroma .mo {
845
  color: #c24f19;
846
}
847
 
848
/* NameAttribute */
849
.chroma .na {
850
  color: #006ee0;
851
}
852
 
853
/* NameBuiltin */
854
.chroma .nb {
855
  color: #366;
856
}
857
 
858
/* NameClass */
859
.chroma .nc {
860
  color: #168174;
861
}
862
 
863
/* NameDecorator */
864
.chroma .nd {
865
  color: #6b62de;
866
}
867
 
868
/* NameException */
869
.chroma .ne {
870
  color: #c00;
871
}
872
 
873
/* NameFunction */
874
.chroma .nf {
875
  color: #b715f4;
876
}
877
 
878
/* NameEntity */
879
.chroma .ni {
880
  color: #727272;
881
}
882
 
883
/* NameLabel */
884
.chroma .nl {
885
  color: #6b62de;
886
}
887
 
888
/* NameNamespace */
889
.chroma .nn {
890
  color: #007ca5;
891
}
892
 
893
/* NameConstant */
894
.chroma .no {
895
  color: #360;
896
}
897
 
898
/* NameTag */
899
.chroma .nt {
900
  color: #2f6f9f;
901
}
902
 
903
/* NameVariable */
904
.chroma .nv {
905
  color: #033;
906
}
907
 
908
/* Operator */
909
.chroma .o {
910
  color: #555;
911
}
912
 
913
/* OperatorWord */
914
.chroma .ow {
915
  color: #000;
916
}
917
 
918
/* LiteralString */
919
.chroma .s {
920
  color: #d73038;
921
}
922
 
923
/* LiteralStringSingle */
924
.chroma .s1 {
925
  color: #c30;
926
}
927
 
928
/* LiteralStringDouble */
929
.chroma .s2 {
930
  color: #c30;
931
}
932
 
933
/* LiteralStringAffix */
934
.chroma .sa {
935
  color: #4070a0;
936
} /* NEW */
937
/* LiteralStringBacktick */
938
.chroma .sb {
939
  color: #c30;
940
}
941
 
942
/* LiteralStringChar */
943
.chroma .sc {
944
  color: #c30;
945
}
946
 
947
/* LiteralStringDoc */
948
.chroma .sd {
949
  font-style: italic;
950
  color: #c30;
951
}
952
 
953
/* LiteralStringEscape */
954
.chroma .se {
955
  color: #c30;
956
}
957
 
958
/* LiteralStringHeredoc */
959
.chroma .sh {
960
  color: #c30;
961
}
962
 
963
/* LiteralStringInterpol */
964
.chroma .si {
965
  color: #a00;
966
}
967
 
968
/* LiteralStringRegex */
969
.chroma .sr {
970
  color: #337e7e;
971
}
972
 
973
/* LiteralStringSymbol */
974
.chroma .ss {
975
  color: #fc3;
976
}
977
 
978
/* LiteralStringOther */
979
.chroma .sx {
980
  color: #c30;
981
}
982
 
983
/* TextWhitespace */
984
.chroma .w {
985
  color: #bbb;
986
}
987
 
988
.chroma .language-bash::before,
989
.chroma .language-sh::before {
990
  color: #009;
991
  content: "$ ";
992
  user-select: none;
993
}
994
.chroma .language-bash .m,
995
.chroma .language-sh .m {
996
  color: inherit;
997
}
998
.chroma .language-powershell::before {
999
  color: #009;
1000
  content: "PM> ";
1001
  user-select: none;
1002
}
1003
 
1004
.anchorjs-link {
1005
  font-weight: 400;
1006
  color: rgba(0, 123, 255, 0.5);
1007
  transition: color 0.15s ease-in-out;
1008
}
1009
@media (prefers-reduced-motion: reduce) {
1010
  .anchorjs-link {
1011
    transition: none;
1012
  }
1013
}
1014
.anchorjs-link:hover {
1015
  color: #007bff;
1016
  text-decoration: none;
1017
}
1018
 
1019
.path-admin-tool-componentlibrary #page.drawers {
1020
  padding-left: 0;
1021
  padding-right: 0;
1022
}
1023
.path-admin-tool-componentlibrary #page.drawers .main-inner {
1024
  margin: 0;
1025
  padding: 0;
1026
  border-radius: 0;
1027
}
1028
.path-admin-tool-componentlibrary #page.drawers div[role=main] {
1029
  padding: 0;
1030
}
1031
.path-admin-tool-componentlibrary #page-header,
1032
.path-admin-tool-componentlibrary #maincontent,
1033
.path-admin-tool-componentlibrary .secondarynavigation {
1034
  display: none;
1035
}
1036
.path-admin-tool-componentlibrary #region-main {
1037
  padding: 0;
1038
  border: 0;
1039
}
1040
 
1041
/*# sourceMappingURL=docs.css.map */