menu.css
936 Bytes
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
40
41
42
43
44
/* CSS Document */
#menu0{
position : absolute;
left : 0px ;
top : 0px ;
width : 100%;
height : 18px;
padding : 4px;
background-color: #003399;
}
#menu0 a{
font-size : 14px ;
text-decoration : none;
color : #ffffff;
}
.menu {
position : absolute;
margin : 0px;
padding : 0px;
height : 1.5em;
border-top : 1px solid #eeeeee;
}
.menu a {
background-color: #dddddd;
width : 180px;
display : block;
padding-top : 4px ;
padding-left : 8px ;
padding-bottom : 4px ;
border-top : 1px solid #eeeeee;
border-right : 1px solid #666666;
border-left : 1px solid #dddddd;
border-bottom : 1px solid #333333;
text-decoration: none;
color: #2f4f4f;
}
.menu a:hover {
background-color: #2f4f4f;
border-bottom: 1px solid #000000;
color: #ffffff;
}