diff options
Diffstat (limited to 'css')
-rw-r--r-- | css/site.css | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/css/site.css b/css/site.css index d467b02..0b947be 100644 --- a/css/site.css +++ b/css/site.css @@ -1,5 +1,6 @@ body { margin: 0 auto; + width: 100%; height: 100%; min-height: 100%; } @@ -98,7 +99,6 @@ div.sidebar ul { div.body-contents { padding: 5pt 0 5pt 0; padding-bottom: 2.5rem; - width: 100%; margin-left: 20%; margin-right: 20%; } @@ -121,13 +121,20 @@ div.body-contents h2 { } div.body-contents code { - background-color: #f4f4f4; + background-color: #e4e4e4; + border-radius: 5px; + padding: 2px 5px 2px 5px; } div.body-contents pre { background-color: #e4e4e4; + border-radius: 5px; display: block; - margin: 0em 20% 0em 1em; + margin: 0; + width: 80%; + overflow: auto; + margin-left: 1em; + margin-right: 1em; padding: 10px 10px 10px 10px; white-space: pre; } |