blob: 3cc0af2dbfd89cdbf480f2a9a640b9d015e0ecfa (
plain)
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
|
ul.menu {
position: absolute;
width: 900px;
display: table;
table-layout: fixed;
font-family: NothingYouCouldSay;
font-size: 21px;
}
ul.menu > li {
display: table-cell;
}
ul.menu li {
margin-bottom: 0px;
margin-left: 0px;
}
ul.menu li:before {
content: "";
}
ul.menu a {
height: 50px;
line-height: 50px;
text-align: center;
color: white;
text-decoration: none;
display: block;
background-color: #333333;
margin-right: 1px;
margin-left: 1px;
}
ul.menu a:hover + .hidden, ul.hidden:hover {
display: block;
}
ul.hidden {
display: none;
}
ul.hidden li {
display: block;
float: none;
}
ul.hidden a {
width: auto;
min-width: 100px;
padding: 0 20px;
background-color: #EEEEEE;
color: black;
}
ul.hidden a:hover {
color: white;
}
ul.hidden > li:hover > a {
background-color: #777777;
}
|