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
|
/* override text color */
.wy-menu-vertical a {
color: #000000;
}
/* Sidebar background color */
.wy-nav-side, div.wy-side-nav-search {
background-color: rgb(198, 197, 213, 0); /* full alpha */
}
/* Sidebar link click color */
.wy-menu-vertical .toctree-l1 > a:active {
background-color: rgb(198, 197, 213);
color: rgb(0, 0, 0);
}
/* Link color is darker to make hovering more clear */
.wy-menu-vertical .toctree-l1 > a:hover {
background-color: rgb(198, 197, 213);
color: rgb(0, 0, 0);
}
.wy-menu-vertical li.current > a:hover, .wy-menu-vertical li.current > a:active {
color: #404040;
background-color: #F5F5F5;
}
/* On hover over logo */
.wy-side-nav-search > a:hover, .wy-side-nav-search .wy-dropdown > a:hover {
background: inherit;
}
/* Border around search box */
.wy-side-nav-search input[type="text"] {
border: 0px;
}
|