diff options
author | link <link@localhost> | 2002-02-13 16:53:17 +0000 |
---|---|---|
committer | link <link@localhost> | 2002-02-13 16:53:17 +0000 |
commit | 7b267b04ab1179e4caead5c8cc4a5660c523ca66 (patch) | |
tree | 5e8de5ac702f3dc9bedcef57ca6d29e178eca91b | |
parent | 3db79ae328173dc4a513b13c0761f33798d8d9fc (diff) | |
download | markup-validator-7b267b04ab1179e4caead5c8cc4a5660c523ca66.zip markup-validator-7b267b04ab1179e4caead5c8cc4a5660c523ca66.tar.gz markup-validator-7b267b04ab1179e4caead5c8cc4a5660c523ca66.tar.bz2 |
Rework stylesheet to eliminate non-netscape.css. It was a hack and since
we started witholding CSS from Netscape 4.x it's not needed anymore.
-rw-r--r-- | htdocs/base.css | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/htdocs/base.css b/htdocs/base.css index f4ed954..0844dbe 100644 --- a/htdocs/base.css +++ b/htdocs/base.css @@ -4,11 +4,9 @@ Copyright © 2000 W3C (MIT, INRIA, Keio). All Rights Reserved. See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright - $Id: base.css,v 1.19 2001-09-27 00:47:14 link Exp $ + $Id: base.css,v 1.20 2002-02-13 16:53:17 link Exp $ */ -@import url(non-netscape.css); - body { color: black; background: white; @@ -45,7 +43,7 @@ div.issue { .hideme {display: none} -dt a {color: black} /* These are usually targets and not links */ +/* dt a {color: black} */ /* These are usually targets and not links */ h1 a {color: black} /* These are usually targets and not links */ h2 a {color: black} /* These are usually targets and not links */ h3 a {color: black} /* These are usually targets and not links */ @@ -71,14 +69,15 @@ address { clear: both; } -p.navbar a { - text-decoration: none; +p.navbar { + float: right; + text-align: right; } p.navbar a:hover { - text-decoration: underline; background: #ccc; } + p.navbar { text-decoration: none; margin: .1em; @@ -91,6 +90,10 @@ p.navbar { clear: both; } +.nsnote { + display: none; +} + table th { text-align: left; vertical-align: top; |