Files
marisa/example/static/marisa.css
shinyoukai 6cd6e9d610 HERE WE G- *camera breaks against face*
git-svn-id: file:///srv/svn/repo/marisa/trunk@70 d6811dac-2434-b64a-9ddc-f563ab233461
2025-12-07 01:10:41 +00:00

48 lines
673 B
CSS

html {
font-family: monospace;
}
body {
background-color: white;
color: black;
}
a {
color: red;
}
a:hover, a:visited {
color: orange:;
}
pre {
border: 2px solid red;
padding-top: 7px;
}
.header {
text-align: center;
border-bottom: 2px solid red;
}
.footer {
border-top: 2px solid red;
text-align: center;
}
@media(prefer-color-scheme: dark) {
body {
background-color: black;
color: white;
}
a {
color: white;
}
a:hover, a:visited {
color: silver;
}
pre {
border: 2px solid silver;
}
.header {
border-bottom: 2px solid silver;
}
.footer {
border-top: 2px solid silver;
}
}