diff options
author | ot <ot@localhost> | 2005-02-16 23:44:36 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2005-02-16 23:44:36 +0000 |
commit | 067006822d106d601a1c56c384e506db0e33bef7 (patch) | |
tree | f16166490508016af91cdfddb19f184220a5a350 | |
parent | 7dcf42d6a598255e3d91680cfec1f72053dc5494 (diff) | |
download | markup-validator-067006822d106d601a1c56c384e506db0e33bef7.zip markup-validator-067006822d106d601a1c56c384e506db0e33bef7.tar.gz markup-validator-067006822d106d601a1c56c384e506db0e33bef7.tar.bz2 |
making the address block a little less clumsy by setting some padding and having the img float to the left of the 2 lines of text
-rw-r--r-- | htdocs/base.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/htdocs/base.css b/htdocs/base.css index ec8cd51..9a2e693 100644 --- a/htdocs/base.css +++ b/htdocs/base.css @@ -4,7 +4,7 @@ Copyright 2000-2005 W3C (MIT, INRIA, Keio). All Rights Reserved. See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright - $Id: base.css,v 1.43 2005-02-16 23:29:15 ot Exp $ + $Id: base.css,v 1.44 2005-02-16 23:44:36 ot Exp $ */ @import url(results.css); /* CSS for validation results. */ @@ -90,14 +90,20 @@ address { background-repeat: no-repeat; background-attachment: scroll; background-position: right; - border-top: 1px solid #E8E8FA; - height:50px; - padding-top: 0; + height:40px; + padding-top: 7px; padding-bottom: 0; + padding-left: 15px; clear: right; } +address img { + display: inline; + float: left; + width: 88px; +} + #main { border-bottom: 0; } |