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
|
/**
* The code in this module is mostly borrowed/adapted from PyScaffold and was originally
* published under the MIT license
* The original PyScaffold license can be found in 'NOTICE.txt'
*/
/* .row-odd td { */
/* background-color: #f3f6f6 !important; */
/* } */
article .align-center:not(table) {
display: block;
}
dl:not([class]) dt {
color: var(--color-brand-content);
}
ol > li::marker {
/* font-weight: bold; */
color: var(--color-foreground-muted);
}
blockquote {
background-color: var(--color-sidebar-background);
border-left: solid 0.2rem var(--color-foreground-border);
padding-left: 1rem;
}
blockquote p:first-child {
margin-top: 0.1rem;
}
blockquote p:last-child {
margin-bottom: 0.1rem;
}
.mobile-header,
.mobile-header.scrolled {
border-bottom: solid 1px var(--color-background-border);
box-shadow: none;
}
.section[id$="package"] h1 {
color: var(--color-brand-content);
}
.section[id^="module"] h2 {
color: var(--color-brand-primary);
background-color: var(--color-brand-muted);
border-top: solid 0.2rem var(--color-brand-primary);
padding: 0.2rem 0.5rem;
/* font-family: var(--font-stack--monospace); */
}
.section[id^="module"] h2:last-child {
display: none;
}
.sidebar-tree .current-page > .reference {
background: var(--color-brand-muted);
}
.py.class,
.py.exception,
.py.function,
.py.data {
border-top: solid 0.2rem var(--color-brand-muted);
}
|