diff options
-rw-r--r-- | htdocs/base.css | 36 |
1 files changed, 25 insertions, 11 deletions
diff --git a/htdocs/base.css b/htdocs/base.css index cec3f04..a0a1df4 100644 --- a/htdocs/base.css +++ b/htdocs/base.css @@ -4,7 +4,7 @@ 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.13 2001-09-14 00:14:15 link Exp $ + $Id: base.css,v 1.14 2001-09-19 00:33:40 link Exp $ */ @import url(non-netscape.css); @@ -20,9 +20,8 @@ body { font-family: Verdana, Myriad Web, Syntax, sans-serif; } -a {color: #0000ee} -a:visited {color: #551a8b} -a:hover {color: #ee0000} +a:hover {background-color:#eee} +a:visited {color: purple} pre {font-family: monospace} @@ -46,17 +45,31 @@ div.issue { .hideme {display: none} +label {display: inline} + 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 */ +h1 img {vertical-align: middle} +h1#title { + background-color: #eee; + border-top: 1px solid black; + border-bottom: 1px solid black; + border-left: 1px solid black; + padding: .25em; +} + address img {float: right} address { - padding-top: 1em; + padding-top: .5em; + padding-right: 1em; + padding-left: 1em; + padding-bottom: .5em; margin-top: 3em; - border-top-style: solid; - border-top-color: black; + border-top: 1px solid black; + background-color: #eee; clear: both; } @@ -66,19 +79,20 @@ p.navbar a { p.navbar a:hover { text-decoration: underline; - background: yellow; + background: #ccc; } p.navbar { text-decoration: none; margin: .1em; - padding: .1em; + padding: 1ex; min-width: 13ex; max-width: 15em; - width: 15ex; + width: 13ex; + background-color: #eee; + border:1px dashed #999; } table th { - text-align: right; vertical-align: top; } |