We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c373c90 + f6f9eba commit de5a5e8Copy full SHA for de5a5e8
docs/source/_static/css/custom.css
@@ -1,18 +1,29 @@
1
+/* Make the title bigger */
2
.wy-side-nav-search > a {
3
font-size: 160%;
4
}
5
6
+/* Search box adjustments */
7
.wy-side-nav-search input[type="text"] {
8
padding: 10px 15px;
9
font-size: 100%;
10
border-radius: 10px;
11
12
13
+/* Set visited links to blue */
14
.section a:visited,
15
footer a:visited {
16
color: #2980b9;
17
18
19
+/* Make home icon black instead of purple */
20
a.icon.icon-home:visited {
21
color: unset;
22
23
+
24
+/* Change code highlight background on dark mode */
25
+@media (prefers-color-scheme: dark) {
26
+ .rst-content .highlight {
27
+ background: #26292b;
28
+ }
29
+}
0 commit comments