brintos

brintos / linux-shallow public Read only

0
0
Text · 579 B · 55b6e1c Raw
38 lines · css
1/* -*- coding: utf-8; mode: css -*-2 *3 * Sphinx HTML theme customization: color settings for RTD (non-dark) theme4 *5 */6 7/* Improve contrast and increase size for easier reading. */8 9body {10	color: black;11}12 13.wy-menu-vertical li.current a {14	color: #505050;15}16 17.wy-menu-vertical li.on a, .wy-menu-vertical li.current > a {18	color: #303030;19}20 21div[class^="highlight"] pre {22	color: black;23}24 25@media screen {26 27    /* Menu selection and keystrokes */28 29    span.menuselection {30	color: blue;31    }32 33    code.kbd, code.kbd span {34	color: white;35	background-color: darkblue;36    }37}38