-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmenubar3.css
95 lines (79 loc) · 1.08 KB
/
menubar3.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
#nav {
padding:0;
margin:0;
}
#nav ul {
padding:0;
margin:0;
}
#nav li {
position:relative;
float:left;
list-style:none;
margin:0;
padding:0;
}
#nav li a {
width:175px;
height:25px;
display:block;
text-decoration:none;
text-align:center;
line-height:25px;
background-color:#485e49;
color:#eee;
border-left:1px solid #ddd;
border-bottom:1px solid #ddd;
font-size:14px;
}
#nav li a:hover {
background-color:#a2b3a1;
color:#000;
}
#nav li ul {
position:absolute;
top:25px;
visibility:hidden;
}
#nav li:hover ul {
visibility:visible;
}
body#yes{
font: x-small sans-serif;
background: #f3f3f3;
color: black;
margin: 10;
padding: 10;
}
body#no{
background: #f3f3f3;
color: black;
margin: 10;
padding: 10;
}
div#globalWrapper {
font-size: 127%;
width: 100%;
margin: 10;
padding: 10;
}
div#globalWrapper a {
text-decoration: none;
color: #002bb8;
background: none;
}
div#globalWrapper a:hover {
text-decoration: underline;
}
div#globalWrapper ul {
line-height: 1.5em;
list-style-type: square;
margin: .3em 0 0 1.5em;
padding: 0;
}
span.comment {
font-style:italic;
}
span.autocomment {
color:gray;
}