Files
marisa/example/static/marisa.css
shinyoukai 22f63e7ac4 なるほど
git-svn-id: file:///srv/svn/repo/marisa/trunk@71 d6811dac-2434-b64a-9ddc-f563ab233461
2025-12-07 20:04:59 +00:00

49 lines
693 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;
overflow: auto;
}
.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;
}
}