diff options
Diffstat (limited to 'static/stylesheets')
-rw-r--r-- | static/stylesheets/style.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/static/stylesheets/style.css b/static/stylesheets/style.css index e0a82cf..8caa40b 100644 --- a/static/stylesheets/style.css +++ b/static/stylesheets/style.css @@ -4,6 +4,7 @@ html { body { margin: 0 0 1.5em 0; color: white; + font-family: serif; } header { @@ -59,6 +60,7 @@ main, footer{ hr { color: #727272; + margin: 2em 0; } h1, h2, h3, h4, h5, h6 { @@ -121,7 +123,7 @@ img, figcaption { opacity: .2; } -@media (max-width: 800px) { +@media (max-width: 1000px) { header { grid-template-columns: auto auto; grid-template-areas: @@ -136,4 +138,7 @@ img, figcaption { order: 3; grid-area: title; } + ol, ul, pre code { + margin-left: 0; + } } |