diff options
author | VG <vg@devys.org> | 2014-11-29 16:30:06 +0100 |
---|---|---|
committer | VG <vg@devys.org> | 2014-11-29 16:30:06 +0100 |
commit | 953309ddde4477adfafd0e74d0fca074eeb63607 (patch) | |
tree | f29cbb0b8fb21deb89bedbff1cb599483b86ee3b /static/base.css | |
parent | 4475362294e6c8fd0df4f19c035bed81e595671c (diff) | |
download | pasteme-953309ddde4477adfafd0e74d0fca074eeb63607.tar.gz pasteme-953309ddde4477adfafd0e74d0fca074eeb63607.tar.bz2 pasteme-953309ddde4477adfafd0e74d0fca074eeb63607.zip |
fix alignment pb on floating menu and add cosmetic changes
Diffstat (limited to 'static/base.css')
-rw-r--r-- | static/base.css | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/static/base.css b/static/base.css index ca6f9be..84c8598 100644 --- a/static/base.css +++ b/static/base.css @@ -4,6 +4,10 @@ html { body { color: #aaaaaa; + position: relative; + max-width: 750px; + margin-right: auto; + margin-left: auto; } #content { @@ -20,7 +24,20 @@ body { #floatingmenu { display: block; position: absolute; - right: 0px; - top: 0px; + right: 0; + top: 0; position: absolute; } + +#floatingmenu a img { + margin: 0; +} + +#floatingmenu button { + border: 0; + padding: 0; + background: transparent; + display: inline; + width: 96px; + height: 96px; +} |