blob: 08b3b4aebe608b7a814f8e188b4d536ee04f6d4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
Navigation Style Sheet for the W3C MarkUp Validation Service.
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 $
*/
div.navbar p a {
display: block;
text-decoration: none;
}
div.navbar p a:hover {
background: #ccc;
}
div.navbar {
float: right;
text-align: right;
text-decoration: none;
margin: .1ex .1ex 2.5ex 1ex;
padding: 1ex;
background-color: #eee;
border-left: 1px solid black;
clear: both;
width: 8em;
}
div.navbar p {
border-top: 1px solid black;
margin: .1ex;
padding: .1ex .1em 1.5ex .1em;
}
div.navbar p.main {
border-top-style: none;
}
|