Files
site/static/index.css
2023-01-12 20:26:45 -06:00

64 lines
809 B
CSS

pre {
color: #ebdbb2;
background-color: #282828;
padding: 2px;
overflow: scroll;
}
body {
font-size: calc(14px + 0.11vw);
width: 40vw;
color: #222222;
margin: auto;
padding: 2px;
font-family: 'Helvetica Neue', 'Arial Nova', sans-serif;
}
a {
color: teal;
}
a:visited {
color: darkgreen;
}
nav {
font-size: calc(16px + 0.33vh);
display: flex;
flex-direction: row;
list-style-type: none;
}
nav > * {
margin-right: 33px;
}
.link-wrapper {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: 3px;
}
@media (prefers-color-scheme: dark) {
html {
background-color: #222222;
}
body, body * {
color: lightgrey;
}
a {
color: lightyellow;
}
a:visited {
color: cyan;
}
}
@media only screen and (max-width: 620px) {
body { width: 95vw; }
}