Files
firestuff/include/style.css
2019-04-14 06:00:53 +00:00

52 lines
631 B
CSS

body {
font-family: Monospace, Courier;
font-size: 16px;
max-width: 900px;
padding-left: 2ch;
padding-right: 3ch;
margin: 0 auto;
color: #d8d8d8;
background: black;
}
@media (max-width: 500px) { /* For small screen decices */
body {
font-size: 12px;
}
}
a {
color: #d8d8d8;
font-weight: bold;
}
img {
border: none;
}
p {
margin-top: 0px;
margin-bottom: 25pt;
text-align: justify;
}
sup {
vertical-align: 0.3em;
font-size: 0.65em;
}
hr {
border-top: 0.1px solid white;
}
pre {
background-color: black;
border: 1px solid white;
padding-left: 2ch;
padding-top: 1ch;
padding-bottom: 1ch;
}