-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.css
78 lines (76 loc) · 1.51 KB
/
menu.css
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
.hyperlink
{
text-decoration:none;
color:#FFF;
}
ul {
text-align: left;
display: inline;
margin: 0;
padding: 15px 4px 17px 0px;
list-style: none;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
z-index:2;
}
ul li {
font: 14px/18px sans-serif;
display: inline-block;
margin-right: -4px;
position: relative;
padding: 15px 13px;
background: #464646;
cursor: pointer;
-webkit-transition: all 0.2s;
-moz-transition: all 0.2s;
-ms-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
color:#FFF;
font-family:Verdana, Arial, Helvetica, sans-serif;
}
ul li:hover {
background: #f1592a;
color: #FFF;
}
.select
{
background: #f1592a;
color: #FFF;
z-index:1090;
}
ul li ul {
padding: 0;
position: absolute;
top: 48px;
left: 0;
width: 150px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
display: none;
opacity: 0;
visibility: hidden;
-webkit-transiton: opacity 0.2s;
-moz-transition: opacity 0.2s;
-ms-transition: opacity 0.2s;
-o-transition: opacity 0.2s;
-transition: opacity 0.2s;
z-index:1090;
}
ul li ul li {
background: #555;
display: block;
color: #fff;
text-shadow: 0 -1px 0 #000;
z-index:1090;
}
ul li ul li:hover { background: #666; z-index:1090;
}
ul li:hover ul {
z-index:1090;
display: block;
opacity: 1;
visibility: visible;
}