Files
firestuff/include/style.css
2019-04-24 05:38:53 +00:00

115 lines
1.2 KiB
CSS

body {
font-family: monospace, Courier;
font-size: 16px;
max-width: 800px;
padding-left: 2ch;
padding-right: 3ch;
margin: 0 auto;
color: #d8d8d8;
background: black;
}
a {
color: #d8d8d8;
text-decoration: underline dotted;
}
p {
text-align: justify;
}
hr {
width: 100%;
border-top: 0.1px solid white;
}
img {
max-width: 100%;
}
header {
text-align: center;
margin-bottom: 20px;
}
footer {
text-align: center;
}
h1, h2, h3, h4 {
font-size: 17px;
}
h1 a {
text-decoration: none;
}
h2 {
font-weight: bold;
text-transform: uppercase;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
h3 {
font-weight: bold;
margin-top: 2em;
}
h4 {
font-weight: normal;
}
.index ol {
list-style: none;
padding: 0;
}
.index ol li {
margin-bottom: 2px;
}
.index ol li a {
font-weight: bold;
}
ul li, ol li {
margin-top: 5px;
margin-bottom: 5px;
}
code {
display: block;
white-space: pre;
font-family: monospace, Courier;
font-size: 16px;
background-color: #e8e8e8;
color: black;
border: 1px solid black;
padding: 1ch;
margin: 1ch;
overflow: scroll;
}
@media (max-width: 500px) {
body {
font-size: 13px;
}
code {
font-size: 13px;
}
h1, h2, h3, h4 {
font-size: 14px;
}
}