summaryrefslogtreecommitdiffstats
path: root/htdocs/navbar.css
diff options
context:
space:
mode:
authorlink <link@localhost>2002-11-26 01:01:57 +0000
committerlink <link@localhost>2002-11-26 01:01:57 +0000
commit1052c7dc7bac8d6d7cd8b230859fbb58bd5e5e02 (patch)
tree6e2ad74b6429ef0033f6ab5ba0ee72956e39a620 /htdocs/navbar.css
parent98e9ca9c87f8ea15c9f971685ac755fc9f3d0dae (diff)
downloadmarkup-validator-1052c7dc7bac8d6d7cd8b230859fbb58bd5e5e02.zip
markup-validator-1052c7dc7bac8d6d7cd8b230859fbb58bd5e5e02.tar.gz
markup-validator-1052c7dc7bac8d6d7cd8b230859fbb58bd5e5e02.tar.bz2
Initial version of the new Navbar (using <dl> and <ul> for structure),
Diffstat (limited to 'htdocs/navbar.css')
-rw-r--r--htdocs/navbar.css52
1 files changed, 51 insertions, 1 deletions
diff --git a/htdocs/navbar.css b/htdocs/navbar.css
index 08b3b4a..f2dc962 100644
--- a/htdocs/navbar.css
+++ b/htdocs/navbar.css
@@ -4,9 +4,58 @@
Copyright 2000 W3C (MIT, INRIA, Keio). All Rights Reserved.
See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
- $Id: navbar.css,v 1.3 2002-10-27 15:36:19 ville Exp $
+ $Id: navbar.css,v 1.4 2002-11-26 01:01:57 link Exp $
*/
+dl.navbar {
+ float: right;
+ text-decoration: none;
+ text-align: left;
+ background-color: #eee;
+ border-left: 1px solid black;
+ margin-left: 1em;
+ padding-left: 1em;
+}
+
+dl.navbar dt {
+ text-align: left;
+ margin-left: 0px;
+}
+
+dl.navbar dd {
+ margin: 0px;
+}
+
+dl.navbar ul {
+ padding: 0px;
+}
+
+dl.navbar ul li {
+ list-style-type: none;
+ margin-top: 1px;
+}
+
+dl.navbar ul li a {
+ display: block;
+ text-decoration: none;
+ font-family: "Luxi Mono";
+}
+
+dl.navbar ul li a:hover {
+ background: #ccc;
+}
+
+
+
+
+
+
+
+
+
+
+
+/*
div.navbar p a {
display: block;
text-decoration: none;
@@ -37,3 +86,4 @@ div.navbar p {
div.navbar p.main {
border-top-style: none;
}
+*/