-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcssverticalmenu.css
More file actions
61 lines (50 loc) · 1.04 KB
/
cssverticalmenu.css
File metadata and controls
61 lines (50 loc) · 1.04 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.glossymenu, .glossymenu li ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 100px; /*WIDTH OF MAIN MENU ITEMS*/
height:163px;
left:15px;
background: #999 url(menuBack2.png) ;
}
.glossymenu li{
position: relative;
}
.glossymenu li a{
font: bold 12px Verdana, Helvetica, sans-serif;
color: #00000;
display: block;
width: auto;
padding: 5px 0;
padding-left: 10px;
text-decoration: none;
}
.glossymenu li ul{ /*SUB MENU STYLE*/
position: absolute;
width: 190px; /*WIDTH OF SUB MENU ITEMS*/
left: 0;
top: 0;
display: none;
}
.glossymenu li ul li{
float: left;
}
.glossymenu li ul a{
width: 180px; /*WIDTH OF SUB MENU ITEMS - 10px padding-left for A elements */
}
.glossymenu .arrowdiv{
position: absolute;
right: 2px;
background: transparent url(arrow.gif) no-repeat center right;
}
.glossymenu li a:visited, .glossymenu li a:active{
color: #06C;
}
.glossymenu li a:hover{
background: #FFF url(menuOption2.png) ;
color : white;
}
/* Holly Hack for IE \*/
* html .glossymenu li { float: left; height: 1%; }
* html .glossymenu li a { height: 1%; }
/* End */