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
|
div.admonition.admonition-bibtex> .admonition-title::after {
content: "\f02d"; /* fa-book icon */
}
/*
Use much smaller font for h1, h2 etc.
They are absurdly large in the standard style
https://pydata-sphinx-theme.readthedocs.io/en/v0.12.0/user_guide/styling.html
*/
html {
--pst-font-size-h1: 23px;
--pst-font-size-h2: 21px;
--pst-font-size-h3: 19px;
--pst-font-size-h4: 17px;
}
/* links */
a {
color: #E09709 !important;
text-decoration: none
}
a:visited {
color: #E09709 !important;
text-decoration: none
}
a:hover {
color: #E09709 !important;
text-decoration: underline
}
|