stevengibone.com/web/style.css
2024-05-26 22:04:00 +02:00

70 lines
798 B
CSS

body {
font-family: monospace;
font-size: 21px;
max-width: 80ch;
margin: auto;
background: black;
color: lime;
border: solid 2px;
padding: 15px;
}
a {
color: orange;
text-decoration: underline dotted;
}
a:visited {
color: chocolate;
}
h1,h2,h3 {
border-bottom: dashed 1px;
}
p {
margin: 1em 0em 1em;
}
pre {
border: solid 2px;
padding: 15px;
font-size: 16px;
}
ul {
margin: initial;
list-style-type: "> "
}
hr {
margin-top: 20px;
border: 1px solid lime;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin: 0% 2%;
}
footer ul {
list-style: none;
}
@media (prefers-color-scheme: light) {
body {
background: oldlace;
color: darkslategrey;
}
a {
color: chocolate;
}
a:visited {
color: maroon;
}
hr {
border: 1px solid darkslategrey;
}
}