Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.3-rc2 37 lines 579 B view raw
1/* -*- coding: utf-8; mode: css -*- 2 * 3 * Sphinx HTML theme customization: color settings for RTD (non-dark) theme 4 * 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}