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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
body {
background-color: #fff;
color: #333;
font-family: monospace;
font-size: 9pt;
margin: 0;
overflow: hidden;
padding: 0;
}
h2 {
font-size: 14pt;
margin: 0.5em 0;
}
#sidebar ul, #sidebar ul li {
list-style: none;
margin: 0;
padding: 0;
}
#sidebar {
background-color: inherit;
}
#sidebar a {
padding: 5px 3px 5px 10px;
}
#sidebar a {
display: block;
}
#sidebar a, #items h2 a {
color: inherit;
}
div#items {
padding: 0 15px;
}
body.noframe div#sidebar {
height: 100%;
left: 0;
overflow: auto;
position: fixed;
top: 0;
width: 250px;
z-index: 999;
}
body.noframe div#items {
height: 100%;
left: 250px;
overflow: auto;
position: absolute;
right: 0;
top: 0;
}
body.noframe div#items.nosidebar {
left: 0;
}
body.frame {
overflow: auto;
}
body.frame #sidebar br {
display: none;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #000;
color: #bdbdbd;
}
a {
color: #56c8ff;
}
}
|