blob: 2e38e031d8bc4718a2b383471667fb2bc1185197 (
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
|
body { font-size: 62.5%; }
.nav {
font-family: Verdana,Arial,sans-serif;
width: 200px;
}
.nav dt {
color: #E87B10;
font-size: 1.7em;
font-weight: bold;
margin-top: 1em;
margin-bottom: 0.5em;
}
.nav dd {
margin-left: 0.5em;
}
.nav dd a {
border-bottom:1px solid #F4F4F4;
color:#000000;
display:block;
font-size: 1.4em;
font-weight: bold;
height:1.4em;
padding:7px 3px 3px 12px;
text-decoration:none;
}
.nav dd a:hover {
background: #eaeaea;
border-bottom: 1px solid #bbb;
}
|