blob: d4432c2b36aaafa7c25bd8a010c44dadb0e467b0 (
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
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{title}</title>
<style type="text/css">
body, html {
margin: 10px;
padding: 10px;
background: #0015F2;
color: #d9ed1b;
}
body {
min-width: 100%;
}
h1 {
text-align:center;
margin-top: 0;
padding-top: 0;
}
.overview {
border: 1px solid;
margin-left: auto;
margin-right: auto;
}
td.desc {
width: 15%;
}
td.total {
width: 15%;
text-align: right;
}
.bar {
width: 60%;
background-color: #0FE6FD;
text-align: right;
border-left: solid 1px;
padding-right: 0.5em;
}
.bar div {
border-top: 2px solid #066FF7;
border-bottom: 2px solid #066FF7;
background-color: #d9ed1b;
text-align: right;
float: left;
padding-top: 0;
height: 1em;
}
</style>
</head>
<body>
<h1>{title}</h1>
<table class="overview">
<thead>
<tr>
<th>{desc}</th>
<th>Graph</th>
<th>Number</th>
</tr>
</thead>
<tbody>
{table}
</tbody>
</table>
</body>
</html>
|