1
0
mirror of https://github.com/urlysses/1991.git synced 2024-11-26 11:38:05 +11:00

General styling updates (better text hierarchy)

This commit is contained in:
urlysses 2017-03-01 14:19:50 -05:00
parent 0060efb69c
commit 8846cd2a67
2 changed files with 21 additions and 2 deletions

View File

@ -95,7 +95,7 @@ section {
main h1 { main h1 {
margin-top: 8%; margin-top: 8%;
margin-bottom: 0; margin-bottom: 0;
font-family: "Rubik Mono One"; font-family: "Rubik Mono One", sans-serif;
background: #fff; background: #fff;
color: #2637dd; color: #2637dd;
padding: 0.1em 0.3em; padding: 0.1em 0.3em;
@ -106,6 +106,21 @@ main h1 {
h2 { h2 {
margin-top: 5%; margin-top: 5%;
position: relative;
}
h2::first-letter {
color: #2637dd;
}
h2:after {
content: "";
display: block;
width: 0.7em;
height: 2em;
background: #fff;
position: absolute;
top: 0;
left: -0.05em;
z-index: -1;
} }
h1, h2, h3, h4, h5 { h1, h2, h3, h4, h5 {
@ -146,6 +161,10 @@ pre {
overflow: hidden; overflow: hidden;
text-align: left; text-align: left;
} }
p {
margin-top: 2em;
margin-bottom: 2em;
}
::selection { ::selection {
background: #fff; background: #fff;