blob: 698a38fb05eca6cb184e4e725a499f81f2e460b5 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
@charset "utf-8";
@media all {
html {
min-height: 100%;
height: auto;
}
body {
color: #ffffff;
background-color: #4a6b7c;
background-image: url(bg.jpg);
background-position: bottom center;
background-repeat: repeat-x;
font-family: Verdana, Arial, sans-serif;
font-size: 101%;
line-height: 110%;
padding-bottom: 1.5em;
}
code {
font-family: monospace;
white-space: pre;
}
a {
color:#0022aa;
}
a:hover, a:focus, {
color:#0022aa;
}
a:visited {
color:#0055dd;
}
#header {
min-height: 98px;
background-image: url(header.png);
background-repeat: no-repeat;
background-position: left center;
background-color: #557788;
color: #ffffff;
text-align: right;
}
h1 {
padding: 1em 1em 0 1em;
}
p {
padding: 1em 1em 1em 1em;
}
#maincontent {
clear: both;
width: 80%;
margin: 0 auto;
padding: 0.5em;
background: #f5f5f5;
color: #000000;
border-width: 0 1px 1px 1px;
border-style: solid;
border-color: #444444;
font-size: 80%;
}
table td,
table th {
color: #000000;
}
table {
background: #f5f5f5;
color: #000000;
border-top: 1px solid #666666;
border-right: 1px solid #666666;
border-bottom: 1px solid #666666;
font-size: 90%;
width: 80%;
margin-left: auto;
margin-right: auto;
border-collapse: collapse;
}
table tr:hover td {
background-color: #bbddee;
color: #000000;
}
table tr th {
padding: 0 0.25em;
border-left: 1px solid #666666;
text-align: left;
}
table tr td {
padding: 0 0.25em;
border-top: 1px solid #666666;
border-left: 1px solid #666666;
}
}
|