-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (53 loc) · 854 Bytes
/
style.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
* {
margin: 0;
padding: 0;
border: 0;
}
body {
font-size: 67.5%;
font-family: Verdana;
color: #666666;
padding: 20px;
}
a {
text-decoration: none;
color: #666666;
}
#menu_area {
margin-top: 10px;
width: 225px;
background-color: #d4dbe3;
}
ul {
list-style-image: url("triangle.gif");
margin-left: 25px;
}
ul li {
text-transform: uppercase;
height: 18px;
padding-top: 2px;
}
ul ul {
list-style-image: url("xxx.jpg");
list-style-type: none;
margin-top: 4px;
margin-bottom: 4spx;
}
ul ul li {
text-transform: none;
margin-left: -50px;
text-indent: 50px;
}
ul ul li.selected {
background-image: url(selected_background.gif);
background-repeat: repeat-x;
width: 225px;
font-weight: bold;
}
ul ul li.selected a {
color: white;
}
ul ul li:hover {
background-image: url(selected_background_rollover.gif);
color: white;
}