-
Notifications
You must be signed in to change notification settings - Fork 1
/
londonesb.html
69 lines (56 loc) · 1.43 KB
/
londonesb.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
<!doctype html>
<html>
<head>
<meta http-equiv=content-type content="text/html; charset=utf-8">
<meta name=viewport content="width=device-width,initial-scale=1">
<title>Vito's Fermentation logs-Danstar London ESB</title>
<style>
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0
}
table,
th,
tr,
td {
border: solid 1px black;
border-collapse: collapse;
}
table {
margin: auto;
width: 80%;
}
.chart-frame {
width: 100%;
height: 580px;
}
th.yeast-name {
background-color: aqua;
}
tr.brew-info {
background-color: lightyellow;
}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<th class="yeast-name" colspan="5">Danstar London ESB</th>
</tr>
<tr class=brew-info>
<th>No.36</th>
<th>OG:</th>
<td>1.057</td>
<th>FG:</th>
<td>1.024</td>
</tr>
<tr>
<td colspan="5"><iframe class="chart-frame" src="BPLog.htm?log=log%2Flondonesb.036.20171212"></iframe></td>
</tr>
</tbody>
</table>
</body>
</html>