blob: c8da334220ef869024f072c5bdb51a175e51ad43 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
body {
background-color: #618DCC;
background-image: url(background.png);
background-repeat: no-repeat;
background-position: bottom right;
font-family: sans-serif;
font-size: 13px;
color: #333333;
}
.frame {
background-image: url(head.png);
background-repeat: no-repeat;
background-position: left bottom;
margin-bottom: 10px;
position: relative;
}
li {
list-style-type: none;
overflow: hidden;
}
li ul {
margin: 0px;
padding: 0px;
height: 20px;
white-space: nowrap;
}
a {
display: block;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 24px;
background-position: 4px 2px;
background-repeat: no-repeat;
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: underline;
}
.head {
background-image: url(head.png);
background-repeat: repeat-y;
background-position: left top;
}
a.title {
font-weight: bold;
font-size: 14px;
cursor: pointer;
height: 16px;
background-repeat: none;
}
a.infotitle {
font-weight: bold;
padding-left: 5px;
cursor: pointer;
}
.preview {
padding: 5px;
text-align: center;
}
ul.info {
padding-left: 5px;
}
|