diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-23 21:30:50 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-06-23 21:30:50 +0200 |
commit | 23ebbaf332efa60636cbb573259ac8e8a3801655 (patch) | |
tree | e0202a16194e9dc7eb5c990568b4fddc09893ee3 /css | |
parent | Adding a license page for the LICENSE (diff) | |
download | joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.tar.gz joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.tar.bz2 joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.tar.xz joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.tar.zst joe-www-23ebbaf332efa60636cbb573259ac8e8a3801655.zip |
License page seems great
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; } |