diff options
-rw-r--r-- | local.conf | 1 | ||||
-rw-r--r-- | static/styles.css | 29 |
2 files changed, 25 insertions, 5 deletions
@@ -6,6 +6,7 @@ events {} http { include /etc/nginx/mime.types; proxy_temp_path /home/sy/code/logs; + client_body_temp_path /home/sy/code/nginx/files; default_type application/octet-stream; server { access_log /home/sy/code/logs/access.log; diff --git a/static/styles.css b/static/styles.css index 2a5ea6a..e276fc4 100644 --- a/static/styles.css +++ b/static/styles.css @@ -30,7 +30,7 @@ } body { - background: #fbf7f0; + background: #fffaef; color: DarkSlateGrey; font-family: Charter, serif; font-size: 16px; @@ -46,6 +46,7 @@ body { padding: 1em; padding-bottom: 1.4em; min-width: 40%; + padding-top: .7em; } .center-container { @@ -65,15 +66,22 @@ body { border-radius: 4px; box-shadow: 4px 4px 0px rgba(0, 0, 0, .5); padding: 2em; + padding-top: 1.5em; max-width: 40em; margin: 0 auto; + margin-top: 6%; + margin-bottom: 6%; } + body { + background: #fbf7f0; + } } -@media only screen and (min-height: 650px) { +@media only screen and (min-height: 700px) { + body { + margin-top: 0; + } .container { - margin-top: 6%; - margin-bottom: 6%; } } @@ -134,15 +142,26 @@ a:hover { letter-spacing: -1px; } +.home span { + font-size: 16px; +} + +.home :last-child { + font-size: 16px; +} + .crumbs { font-size: small; padding-left: 2em; } +.crumbs a { + white-space: nowrap; +} + .home-title { font-weight: bold; color: #dd1b26; - text-decoration: none; } .sep { |