-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery.navmenu.css
More file actions
79 lines (66 loc) · 1.24 KB
/
jquery.navmenu.css
File metadata and controls
79 lines (66 loc) · 1.24 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
/*
*==============================================================
* 以下设置为配置项,可以自己修改
*==============================================================
*/
/* 一级菜单 */
.mainMenu
{
background: #D6182E;
border: 1px solid #B21426;
}
/* 一级菜单条目 */
.mainMenuItem
{
padding: 8px;
}
/* 一级菜单条目的文本 */
.mainMenu a
{
color: white;
text-decoration: none;
}
/* 一级菜单鼠标悬停 */
.mainMenuItemHover
{
background: white;
padding: 8px;
}
/* 一级菜单鼠标悬停时的文本 */
.mainMenuItemHover a
{
color: #d6182e;
font-weight: bold;
}
/* 子菜单 */
.subMenu
{
width: 800px;
min-height: 200px;
background: white;
border: 1px solid #b21426; /*宽度最好与一级菜单相同*/
}
/* 子菜单文本 */
.subMenu a
{
color: #666;
text-decoration: none;
font-size: 14px;
border-left: 1px solid #e0e0e0;
padding:0 8px;
line-height: 22px;
}
/* 悬停时的子菜单文本 */
.subMenu a:hover
{
color: #b21426;
}
/*
*==============================================================
* 以下设置请不要修改
*==============================================================
*/
.subMenu dl dd
{
float: left;
}