-
Notifications
You must be signed in to change notification settings - Fork 0
/
Example.html
111 lines (111 loc) · 3.68 KB
/
Example.html
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
104
105
106
107
108
109
110
111
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Life Skills</title>
<meta name="description" content="Life Skills" />
<meta name="generator" content="Kerry's Assessment Tracker v1.0.4" />
<link rel="help" href="https://github.com/marjohloo/Kat" />
<link rel="author" href="https://github.com/marjohloo" />
<link rel="license" href="https://www.gnu.org/licenses/gpl-3.0.html" />
<style>
body { font-size: 10pt; font-family: Calibri,Arial,Helvetica,sans-serif; }
div { page-break-inside: avoid; }
p { font-size: 10pt; }
h1 { font-size: 16pt; font-weight: bold; }
h2 { font-size: 12pt; font-weight: bold; /* page-break-before: always; */ }
table, tr, th, td { font-size: 10pt; text-align: center; vertical-align: top; border: 1px solid black; border-collapse: collapse; padding: 2pt}
.page { page-break-before: always; }
.left { text-align: left; }
.primary { background: #4582ec; }
.secondary { background: #adb5bd; }
.success { background: #02b875; }
.warning { background: #f0ad4e; }
.primary { background: #4582ec; }
.danger { background: #d9534f; }
.info { background: #17a2b8; }
</style>
</head>
<body>
<div>
<h1>Life Skills</h1>
<table id="KAT" width="100%">
<tr>
<th></th>
<th width="20%">Tom</th>
<th width="20%">Dick</th>
<th width="20%">Harry</th>
</tr>
<tr>
<td class="left">Can tie shoe laces</td>
<td class="success">3</td>
<td class="warning">2</td>
<td class="secondary">0</td>
</tr>
<tr>
<td class="left">Can tie a neck tie</td>
<td class="success">3</td>
<td class="danger">1</td>
<td class="danger">1</td>
</tr>
<tr>
<td class="left">Can fasten buttons</td>
<td class="success">3</td>
<td class="success">3</td>
<td class="danger">1</td>
</tr>
</table>
</div>
<div class="page">
<h2>Life Skills: Tom</h2>
<table width="100%">
<tr>
<td class="left">Can tie shoe laces</td>
<td class="success" width="20%">3</td>
</tr>
<tr>
<td class="left">Can tie a neck tie</td>
<td class="success">3</td>
</tr>
<tr>
<td class="left">Can fasten buttons</td>
<td class="success">3</td>
</tr>
</table>
</div>
<div>
<h2>Life Skills: Dick</h2>
<table width="100%">
<tr>
<td class="left">Can tie shoe laces</td>
<td class="warning" width="20%">2</td>
</tr>
<tr>
<td class="left">Can tie a neck tie</td>
<td class="danger">1</td>
</tr>
<tr>
<td class="left">Can fasten buttons</td>
<td class="success">3</td>
</tr>
</table>
</div>
<div>
<h2>Life Skills: Harry</h2>
<table width="100%">
<tr>
<td class="left">Can tie shoe laces</td>
<td class="secondary" width="20%">0</td>
</tr>
<tr>
<td class="left">Can tie a neck tie</td>
<td class="danger">1</td>
</tr>
<tr>
<td class="left">Can fasten buttons</td>
<td class="danger">1</td>
</tr>
</table>
</div>
</body>
</html>