File size: 1,810 Bytes
3eedfa7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | @media (prefers-color-scheme: dark) {
span.nc {
text-decoration: none !important;
}
}
.admonition-manim-example {
padding: 0;
display: flex;
flex-direction: column;
}
.admonition-manim-example p.admonition-title {
font-weight: 600;
font-size: 0.925rem;
margin: 0;
}
.admonition-manim-example .highlight-python {
margin: 0;
}
.admonition-manim-example .highlight {
border-radius: 0;
}
.admonition-manim-example .highlight pre {
font-size: 15px;
}
.manim-video {
width: 100%;
padding: 8px 0;
outline: 0;
}
.admonition-manim-example .manim-video {
padding: 0;
}
.admonition-manim-example img {
margin-bottom: 0;
}
.admonition-manim-example p:last-child {
margin-top: 0;
padding-left: 0.5rem;
padding-bottom: 0.15rem;
font-size: 15px;
}
.admonition-manim-example .copybtn {
margin-right: 6px;
font-size: 18px;
}
.admonition-manim-example .copybtn:hover {
cursor: pointer;
}
p.rubric{
text-transform: capitalize;
font-size: 1.25rem;
font-weight: bold;
}
.sig-param{
color: var(--color-content-foreground);
}
dl.c .field-list dt, dl.cpp .field-list dt, dl.js .field-list dt, dl.py .field-list dt {
text-transform: capitalize;
font-weight: bold;
font-size: var(--font-size--normal);
}
h4, h5, h6{
text-transform: none;
}
/* yikes-ish attempt at bugfix for navbar on some browsers */
.sidebar-tree a.internal.reference {
display: table-cell;
}
.manim-binder-button {
text-transform: capitalize;
padding: 10px 20px;
margin: 10px 0;
}
.manim-binder-wrapper {
background-color: var(--color-code-background);
color: var(--color-code-foreground);
}
.manim-binder-title {
margin-top: 0;
}
.manim-binder-button-wrapper {
margin: 0px 10px;
}
|