49 lines
1.7 KiB
CSS
49 lines
1.7 KiB
CSS
/*Indentation.*/
|
|
div.doc-contents:not(.first) {
|
|
padding-left: 35px; /*25px is the default*/
|
|
border-left: .15rem solid #ededed;
|
|
}
|
|
|
|
.doc-heading .highlight {
|
|
font-size: 18px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/*Mark external links as such. */
|
|
a.external::after,
|
|
a.autorefs-external::after {
|
|
/* <https://primer.style/octicons/arrow-up-right-24>*/
|
|
mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path></svg>');
|
|
-webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path></svg>');
|
|
content: ' ';
|
|
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
position: relative;
|
|
|
|
height: 1em;
|
|
width: 1em;
|
|
background-color: var(--md-typeset-a-color);
|
|
}
|
|
|
|
a.external:hover::after,
|
|
a.autorefs-external:hover::after {
|
|
background-color: var(--md-accent-fg-color);
|
|
}
|
|
|
|
/* Fancier color for operators such as * and |. */
|
|
.doc-signature .o {
|
|
color: var(--md-code-hl-special-color);
|
|
}
|
|
|
|
/* Fancier color for constants such as None, True, and False. */
|
|
.doc-signature .kc {
|
|
color: var(--md-code-hl-constant-color);
|
|
}
|
|
|
|
/* Fancier color for built-in types (only useful when cross-references are used). */
|
|
.doc-signature .n > a[href^="https://docs.python.org/"][href*="/functions.html#"],
|
|
.doc-signature .n > a[href^="https://docs.python.org/"][href*="/stdtypes.html#"] {
|
|
color: var(--md-code-hl-constant-color);
|
|
}
|