-
Notifications
You must be signed in to change notification settings - Fork 1
/
all.html
106 lines (92 loc) · 2.66 KB
/
all.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
<!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</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 Nottingham</th>
</tr>
<tr class=brew-info>
<th>No.28</th>
<th>OG:</th>
<td>1.047</td>
<th>FG:</th>
<td>1.008</td>
</tr>
<tr>
<td colspan="5"><iframe class="chart-frame" src="BPLog.htm?log=log%2Fnottingham.028.20170425"></iframe></td>
</tr>
<tr class=brew-info>
<th>No.35</th>
<th>OG:</th>
<td>1.043</td>
<th>FG:</th>
<td>1.012</td>
</tr>
<tr>
<td colspan="5"><iframe class="chart-frame" src="BPLog.htm?log=log%2Fnottingham.035.20171114"></iframe></td>
</tr>
<tr>
<th class="yeast-name" colspan="5">WLP570</th>
</tr>
<tr class=brew-info>
<th>No.34</th>
<th>OG:</th>
<td>1.067</td>
<th>FG:</th>
<td>1.010</td>
</tr>
<tr>
<td colspan="5"><iframe class="chart-frame" src="BPLog.htm?log=log%2Fwlp570.034.20171010"></iframe></td>
</tr>
<tr>
<th class="yeast-name" colspan="5">WLP838</th>
</tr>
<tr class=brew-info>
<th>No.30</th>
<th>OG:</th>
<td>1.051</td>
<th>FG:</th>
<td>1.012</td>
</tr>
<tr>
<td colspan="5"><iframe class="chart-frame" src="BPLog.htm?log=log%2Fwlp838.030.20170601"></iframe></td>
</tr>
</tbody>
</table>
</body>
</html>