yiki/yiki.css

69 lines
972 B
CSS

body {
font-family: sans-serif;
color: yellow;
background: black;
}
hr {
border: solid 2px yellow;
}
a {
color: yellow;
}
a:visited {
text-decoration: underline magenta;
}
a:hover {
text-decoration: underline lime;
}
a:active {
text-decoration: underline aqua;
}
nav {
font-size: 12pt;
font-family: monospace;
}
.header-anchor {
color: gray;
text-decoration: none;
}
a.header-anchor:hover {
color: lightgray;
}
@media (prefers-color-scheme: light) {
body {
color: black;
background: lightyellow;
}
hr {
border-color: black;
}
a {
color: black
}
a:visited {
text-decoration: underline purple;
}
a:hover {
text-decoration: underline green;
}
a:active {
text-decoration: underline teal;
}
}
@media only print {
body {
color: black;
background: white;
}
hr {
border-color: black;
}
a, a:visited {
color: black;
text-decoration: underline black;
}
}