templates/style-alt.css (view raw)
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 |
body {
color: #222;
background-color: #eee;
}
a {
color: #3173b4;
}
a:hover {
color: #014384;
}
code,
pre {
color: darkgreen;
}
.contrast svg {
transform: rotate(180deg);
}
blockquote {
color: #555;
}
td, th {
border: 1px solid #111;
}
th, tr:nth-child(even) {
background-color: rgba(0, 0, 0, .1);
}
pre> code::before {
color: #444;
}
|