-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.css
103 lines (85 loc) · 1.21 KB
/
categories.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
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
body{
padding: 10px 0 0 50px;
}
h1{
font-family: arial;
}
#menu{
margin-top:15px;
}
#menu > ul{
background: #2c3e50;
}
#menu ul
{
list-style:none;
position:relative;
float:left;
margin:0;
padding:0;
}
#menu ul a
{
display:block;
color:#fff;
text-decoration:none;
font-weight:700;
font-size:15px;
line-height:32px;
padding:0 15px;
font-family:Helvetica,Arial,sans-serif;
}
#menu ul li
{
position:relative;
float:left;
margin:0;
padding:0
}
#menu ul li.active
{
background:#27ae60
}
#menu ul li:hover
{
/*background:#f6f6f6*/
background: #2ecc71;
}
#menu ul ul
{
display:none;
position:absolute;
top:100%;
left:0;
background:black;
padding:0
}
#menu ul ul li
{
float:none;
width:500px;
border-left: 3px solid #27ae60;
}
#menu ul ul li:hover{
border-left: 3px solid #2c3e50;
}
#menu ul ul a
{
line-height:120%;
padding:10px 15px
}
#menu ul ul ul
{
top:-4px;
left:100%
}
#menu ul li:hover > ul
{
display:block
}
h2,h3{
display: inline;
}
a {
display: inline;
}