slime-quest-web/site-static/style.css

53 lines
No EOL
644 B
CSS

/* questden colors */
body {
background: #FFFFEE;
}
main {
max-width: 40rem;
margin: 0 auto;
}
.post {
max-width: 40rem;
background: #F0E0D6;
text-align: left;
margin: 1rem auto;
padding: 1rem;
}
.post img {
display: block;
margin: 0 auto;
}
/* nav links are a bulleted list without the bullets */
nav ul {
list-style: none;
padding-left: 0;
}
nav li {
display: inline;
}
nav li + li::before {
content: ' | ';
}
/* ms paint adventures */
h1, h2, .next {
font-family: consolas, monospace, sans-serif;
font-weight: bold;
}
h1 {
text-align: center;
}
h2 {
color: #CC1105;
}
.next {
font-size: xx-large;
}