This repository was archived by the owner on Oct 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.css
More file actions
118 lines (98 loc) · 2 KB
/
menu.css
File metadata and controls
118 lines (98 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#menu {
position: absolute;
top: 0;
right: 3px;
z-index: 1550;
}
#main-menu, #main-menu ul {
padding: 0 0 0 0;
margin: 0 auto;
position:relative;
list-style: none;
text-align:center;
display:inline-block;
top: 0px;
left: 0px;
background-color: transparent;
}
#main-menu li
{
float: left;
height: 45px;
top: 5px;
margin-right: 2px;
border: 0px solid transparent;
position: relative;
display:block;
z-index: 1000;
border-radius: 5px;
}
#main-menu ul
{
position: absolute;
height: 45px;
top: 45px;
left: 0px;
width: 200px;
padding: 0;
display: none;
}
#main-menu ul li
{
float: none;
margin: 0 auto;
padding: 0;
top: 0px;
line-height: 15px;
background-color: transparent;
border-radius: 5px;
}
#main-menu a:link, #main-menu a:visited
{
display: block;
font-family: Tahoma;
font-size: 12px;
font-weight: bold;
text-align: left;
text-decoration: none;
padding: 15px;
color: #ffffff;
}
#main-menu li:hover
{
background-color: rgba(0,0,0,0.3);
border: 0px solid #000;
}
#main-menu ul li:hover
{
background-color: #c9c9c9;
border: 0px solid #000;
box-shadow: inset 0 0 10px #7c7c7c;
}
#main-menu li:hover ul
{
display: block;
}
#mmul {
position: absolute;
border-radius: 5px;
background-color: #e7e7e7;
width: 210px;
padding: 5px;
left: -65px;
box-shadow: 0 0 10px #000;
z-index: 1000;
background: -webkit-linear-gradient(#e7e7e7, #c3c3c3);
background: -o-linear-gradient(#e7e7e7, #c3c3c3);
background: -moz-linear-gradient(#e7e7e7, #c3c3c3);
background: linear-gradient(#e7e7e7, #c3c3c3);
}
.arrow-up {
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #ffffff;
z-index: 1500;
margin-left: 35px;
}