Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/source/_static/css/custom.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
/* Make the title bigger */
.wy-side-nav-search > a {
font-size: 160%;
}

/* Search box adjustments */
.wy-side-nav-search input[type="text"] {
padding: 10px 15px;
font-size: 100%;
border-radius: 10px;
}

/* Set visited links to blue */
.section a:visited,
footer a:visited {
color: #2980b9;
}

/* Make home icon black instead of purple */
a.icon.icon-home:visited {
color: unset;
}

/* Change code highlight background on dark mode */
@media (prefers-color-scheme: dark) {
.rst-content .highlight {
background: #26292b;
}
}