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
|
/* Override some aspects of the pydata-sphinx-theme */
:root {
--pst-color-active-navigation: 0, 91, 129;
/* Use normal text color (like h3, ..) instead of primary color */
--pst-color-h1: var(--pst-color-text-base);
--pst-color-h2: var(--pst-color-text-base);
--pst-header-height: 0px;
}
@media (min-width: 768px) {
@supports (position: -webkit-sticky) or (position: sticky) {
.bd-sidebar {
padding-top: 3rem;
}
}
}
/* no pink for code */
code {
color: #3b444b;
}
/* Larger font size for sidebar*/
.bd-sidebar .nav > li > a {
font-size: 1em;
}
/* New element: brand text instead of logo */
/* .navbar-brand-text {
padding: 1rem;
} */
a.navbar-brand-text {
color: #333;
font-size: xx-large;
}
|