Forgot <p>

This commit is contained in:
Sophia Atkinson 2022-01-20 11:52:55 -08:00 committed by GitHub
parent 144031c8ef
commit ebd0c4b621
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 75 additions and 55 deletions

130
main.css
View File

@ -4,102 +4,122 @@ MIT License
*/ */
body { body {
background: #121212; background: #121212;
} }
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { h1 a,
color: #fff; h2 a,
text-decoration: none; h3 a,
h4 a,
h5 a,
h6 a {
color: #fff;
text-decoration: none;
} }
h1 { h1 {
color: #fff; color: #fff;
font-size: 2em; font-family: monospace, monospace;
line-height: 1.5em; font-size: 2em;
line-height: 1.5em;
} }
h2 { h2 {
color: #fff; color: #fff;
font-size: 1.5em; font-family: monospace, monospace;
line-height: 1.5em; font-size: 1.5em;
line-height: 1.5em;
} }
h3 { h3 {
color: #fff; color: #fff;
font-size: 1.25em; font-family: monospace, monospace;
line-height: 1.5em; font-size: 1.25em;
line-height: 1.5em;
} }
h4 { h4 {
color: #fff; color: #fff;
font-size: 1.1em; font-family: monospace, monospace;
line-height: 1.5em; font-size: 1.1em;
line-height: 1.5em;
} }
h5 { h5 {
color: #fff; color: #fff;
font-size: 0.9em; font-family: monospace, monospace;
line-height: 1.5em; font-size: 0.9em;
line-height: 1.5em;
} }
h6 { h6 {
color: #fff; color: #fff;
font-size: 0.7em; font-family: monospace, monospace;
line-height: 1.5em; font-size: 0.7em;
line-height: 1.5em;
} }
sub { sub {
color: #fff; color: #fff;
font-size: 0.8em; font-family: monospace, monospace;
position: relative; font-size: 0.8em;
top: 0.5em; position: relative;
top: 0.5em;
} }
sup { sup {
color: #fff; color: #fff;
font-size: 0.8em; font-family: monospace, monospace;
position: relative; font-size: 0.8em;
top: -0.5em; position: relative;
top: -0.5em;
} }
hr { hr {
border: 0; border: 0;
border-bottom: solid 2px #fff; border-bottom: solid 2px #fff;
margin: 2em 0; margin: 2em 0;
} }
hr.major { hr.major {
margin: 3em 0; margin: 3em 0;
} }
blockquote { blockquote {
border-left: solid 6px #121212; border-left: solid 6px #121212;
font-style: italic; font-style: italic;
margin: 0 0 2em 0; margin: 0 0 2em 0;
padding: 0.5em 0 0.5em 1.5em; padding: 0.5em 0 0.5em 1.5em;
} }
code { code {
background: #fff; background: #fff;
border-radius: 0.35em; border-radius: 0.35em;
border: solid 2px #121212; border: solid 2px #121212;
font-family: "Courier New", monospace; font-family: "Courier New", monospace;
font-size: 0.9em; font-size: 0.9em;
margin: 0 0.25em; margin: 0 0.25em;
padding: 0.25em 0.65em; padding: 0.25em 0.65em;
} }
pre { pre {
color: #fff; color: #fff;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
font-family: "Courier New", monospace; font-family: "Courier New", monospace;
font-size: 0.9em; font-size: 0.9em;
margin: 0 0 2em 0; margin: 0 0 2em 0;
} }
pre code { pre code {
color: #fff; color: #fff;
display: block; display: block;
line-height: 1.75em; line-height: 1.75em;
padding: 1em 1.5em; padding: 1em 1.5em;
overflow-x: auto; overflow-x: auto;
}
p {
color: #fff;
font-family: monospace, monospace;
font-size: 1em
} }