Files
site/static/index.css
2022-12-12 20:39:21 -06:00

59 lines
739 B
CSS

code {
color: #ebdbb2;
background-color: #282828;
padding: 2px;
}
body {
font-size: calc(14px + 0.11vw);
width: clamp(373px, 60vw, 80vw);
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;
}
}