default.css
1.26 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
* {
font-family: Arial, Helvetica, sans-serif;
}
pre {
font-family: "Courier New", Courier, monospace;
font-size: 14px;
width: 100%;
}
h1 {
font-size: 20px;
color: #4D4D4D;
}
h3 {
font-size: 16px;
color: #3D3D3D;
}
th {
text-align: left;
padding: 5px;
background-color: #6E6E6E;
}
td {
color: #FFF;
padding: 5px;
}
table {
font-size: 12px;
background-color: #4D4D4D;
width: 1024px;
border: 1px solid #000;
}
.even {
background-color: #3D3D3D;
}
.odd {
background-color: #6E6E6E;
}
.highlight {
background-color: #3D3D3D;
font-weight: bold;
}
.header {
background-image: url(../img/header-bg.png);
background-repeat: no-repeat;
border-left: 1px solid #FFF;
border-right: 1px solid #000;
border-top: 1px solid #FFF;
padding-left: 30px;
padding-top: 8px;
height: auto;
}
.headerSortUp {
background-image: url(../img/header-asc.png);
background-repeat: no-repeat;
border-left: 1px solid #FFF;
border-right: 1px solid #000;
border-top: 1px solid #FFF;
padding-left: 30px;
padding-top: 8px;
height: auto;
}
.headerSortDown {
background-image: url(../img/header-desc.png);
background-repeat: no-repeat;
border-left: 1px solid #FFF;
border-right: 1px solid #000;
border-top: 1px solid #FFF;
padding-left: 30px;
padding-top: 8px;
height: auto;
}