webserver.c/public/index.css
2024-09-13 10:49:46 -07:00

35 lines
555 B
CSS

:root {
--bg: #0d1017;
--fg: #ffffff;
--link: #ff8f40;
}
html {
background: var(--bg);
color: var(--fg);
font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
font-size: 16px;
}
body {
max-width: 760px;
margin: auto;
}
a {
text-decoration: none;
color: var(--link);
}
a:hover {
text-decoration: underline;
}
nav {
border-bottom: 1px dotted var(--link);
padding: 1rem 0 1rem 0;
}
nav a {
margin-right: 0.25rem;
}