diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-13 12:59:18 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-13 12:59:18 +0100 |
commit | c851567c78015ce112f0c8e7d50315d57170c721 (patch) | |
tree | fd6ede295e4b9a738a9d9594c28eeb74d42fae5c /style | |
parent | 3834091d552d60587b540bee94b19d73352797e6 (diff) | |
download | mutti-web-c851567c78015ce112f0c8e7d50315d57170c721.tar.gz mutti-web-c851567c78015ce112f0c8e7d50315d57170c721.tar.bz2 mutti-web-c851567c78015ce112f0c8e7d50315d57170c721.zip |
style: Get rid of using floats for the header
Diffstat (limited to 'style')
-rw-r--r-- | style/style.css | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/style/style.css b/style/style.css index f3b79ba..1dc164b 100644 --- a/style/style.css +++ b/style/style.css @@ -106,7 +106,8 @@ label { #header { height: 70px; width: 778px; - padding-top:40px; + padding-top: 33px; + padding-bottom: 7px; margin: 0 auto; } @@ -117,20 +118,19 @@ label { color: #FFFFFF; } - #header img { - float: left; - margin-right: 5px; + position: relative; + bottom: -7px; } #header h1 { - float: left; + display: inline; font-size: 4em; } #header h2 { - float: left; - padding: 27px 0 0 8px; + display: inline; + padding-left: 4px; font-size: 2em; color: #858585; } |