-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
156 lines (141 loc) · 2.31 KB
/
style.css
File metadata and controls
156 lines (141 loc) · 2.31 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
div.topnav {
background-color: #222;
background-image: url(img/topnav_bg.gif);
background-repeat: repeat-x;
height: 35px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
}
div.bottomap {
flex-grow: 1;
width: 100%;
background-color: #222;
}
div.topnav img {
border: 0;
float: left;
}
div.source {
float: right;
padding: 9px 5px;
color: white;
display: block;
}
div.source a {
color: #aaa;
text-decoration: none;
}
/* =========================================================== */
#nav {
float: left;
padding: 0;
margin: 0 0 0 20px;
line-height: 100%;
}
#nav li {
margin: 0 10px;
padding: 0 0 0 0;
float: left;
position: relative;
list-style: none;
}
#nav li.tophassub {
padding-right: 14px;
background-image: url(img/subnav_btn.gif);
background-position: center right;
background-repeat: no-repeat;
height: 35px;
}
#nav li.subhassub {
background-image: url(img/subnav_btn2.gif);
background-position: 170px center;
background-repeat: no-repeat;
}
/* top level */
#nav a {
color: #fff;
text-decoration: none;
display: block;
padding: 9px 0 0 0;
margin: 0;
text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
height: 35px;
}
#nav a.current {
color: #A4D627 !important;
}
#nav li:hover > a {
color: #CAE77D;
}
#nav a.pending,
#nav li:hover > a.pending {
color: #666 !important;
}
/* sub levels */
#nav ul li:hover a, #nav li:hover li a {
background: none;
border: none;
color: #fff;
}
#nav ul a:hover {
color: #CAE77D !important;
text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}
/* level 2 list */
#nav ul {
z-order: 100;
display: none;
margin: 0;
padding: 0;
width: 185px;
position: absolute;
top: 34px;
left: 0;
background: #333;
border: 1px solid #111;
}
/* dropdown */
#nav li:hover > ul {
display: block;
}
#nav ul li {
float: none;
margin: 0;
padding: 0;
border-top: 1px solid #252525;
border-bottom: 1px solid #444;
}
#nav ul a {
margin: 0;
padding: 6px 20px 6px 20px;
font-weight: normal;
background: #333;
height: auto;
}
#nav ul a:hover {
background: #222;
}
/* level 3+ list */
#nav ul ul {
z-order: 300;
left: 185px;
top: 5px;
}
/* clearfix */
#nav:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
#nav {
display: inline-block;
}
html[xmlns] #nav {
display: block;
}
* html #nav {
height: 1%;
}