blob: 8fde9f893ed255f47dd10135a6a3bd4af5d69e31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Fix partly obscured last TOC element */
.wy-menu {
padding-bottom: 20px;
}
/* Use Minetest green instead of blue */
.wy-nav-content a {
color: hsl(100, 40%, 40%);
}
.wy-nav-content a:hover {
color: hsl(100, 30%, 30%);
}
.wy-side-nav-search, .wy-nav-top, .wy-menu-vertical a:active {
background: hsl(100, 40%, 40%);
}
|