diff options
| author | Franck Cuny <fcuny@twitter.com> | 2016-01-03 11:25:13 -0800 |
|---|---|---|
| committer | Franck Cuny <fcuny@twitter.com> | 2016-01-03 11:26:23 -0800 |
| commit | 13838031871a593de32e1c6075eb873d6003da75 (patch) | |
| tree | 6bd9d35bb7a36f89d711c7f12d763942a74ed737 /static/css | |
| parent | Fix URL to load the font from google font. (diff) | |
| download | lumberjaph-13838031871a593de32e1c6075eb873d6003da75.tar.gz | |
Fix the footer on small screen.
The size of the footer was the same on a big and small screen. Add a
rule to reduce the size of the footer similar to the other elements.
Closes #1.
Diffstat (limited to 'static/css')
| -rw-r--r-- | static/css/style.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css index 33b63ff..1aed439 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -46,7 +46,7 @@ ul.spaced li { } #footer p { - width: 800px; + width: 720px; margin: 0 auto; margin-top: 2em; text-align: center; @@ -122,4 +122,10 @@ code { margin-left: 0.2em; text-align: justify; } + div#footer { + width: 90%; + } + #footer p { + width: 90%; + } } |
