blob: 81f7918a811c8a5c4257458f7ef7102896c8791b (
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
|
div#nav {
position:fixed;
width: 12em;
background: none;
margin-top: 0px;
margin-left: 130px;
border-right: thin black solid;
border-left: thin black solid;
border-bottom: thin black solid;
border-top: none;
}
div#content {
padding-left:240px;
}
.menuBarItem {
font-variant: small-caps;
text-align: right;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
border-left-width: thin;
}
.menuBarItem:hover {
background:#333;
}
.menuBarItem.on {
background:#333;
color:#999;
}
|