... | ... |
@@ -1,145 +1,112 @@ |
1 | 1 |
<!DOCTYPE html> |
2 | 2 |
<html> |
3 |
-<!--<META http-equiv="refresh" content="60">--> |
|
4 | 3 |
<head> |
5 |
- <title>DIY Radiation Monitor</title> |
|
6 |
- <script src="jQuery.min.js"></script> |
|
4 |
+<title>DIY Radiation</title> |
|
5 |
+<script src="jQuery.min.js"></script> |
|
6 |
+<style> |
|
7 |
+body { |
|
8 |
+ background-image: url("static/chalk.jpg"); |
|
9 |
+} |
|
10 |
+#frame { |
|
11 |
+ width:800px; |
|
12 |
+ text-align:center; |
|
13 |
+ margin:auto; |
|
14 |
+} |
|
15 |
+#datetime { |
|
16 |
+ text-align:center; |
|
17 |
+ display:inline-block; |
|
18 |
+ margin:1px; |
|
19 |
+ font-size:21px; |
|
20 |
+ color:black; |
|
21 |
+ width:700px; |
|
22 |
+ padding:10px; |
|
23 |
+} |
|
24 |
+div.currentdata { |
|
25 |
+ font-size:20px; |
|
26 |
+ display:inline-block; |
|
27 |
+ margin:1px; |
|
28 |
+ text-align:center; |
|
29 |
+ color:black; |
|
30 |
+ width:342px; |
|
31 |
+ padding:10px; |
|
32 |
+ border-style:solid; |
|
33 |
+ border-width:1px; |
|
34 |
+} |
|
35 |
+div.chartitem { |
|
36 |
+ display:inline-block; |
|
37 |
+ text-align:left; |
|
38 |
+ margin:1px; |
|
39 |
+ width: 730px; |
|
40 |
+ padding:2px; |
|
41 |
+ border-style:solid; |
|
42 |
+ border-width:1px; |
|
43 |
+} |
|
44 |
+img.chart { |
|
45 |
+ width:100%; |
|
46 |
+} |
|
47 |
+</style> |
|
7 | 48 |
</head> |
8 | 49 |
|
9 |
-<body background="./static/chalk.jpg"> |
|
10 |
- |
|
11 |
-<center> |
|
12 |
-<h1>DIY Radiation Monitor</h1> |
|
50 |
+<body> |
|
51 |
+<div id="frame"> |
|
52 |
+<h2>DIY Radiation Monitor</h2> |
|
13 | 53 |
<hr> |
14 |
- |
|
15 |
-<table width="750" border="0" cellpadding="1"> |
|
16 |
- <tr> |
|
17 |
- <td align="center"> |
|
18 |
- <b><font size="5"> |
|
19 |
- <text id="date"></text> <text id="time"></text> |
|
20 |
- </font></b> |
|
21 |
- </td> |
|
22 |
- </tr> |
|
23 |
- |
|
24 |
- <tr> |
|
25 |
- <td> |
|
26 |
- <table width="100%" border="1", cellpadding="10"> |
|
27 |
- <tr> |
|
28 |
- <td width="50%" align="center"> |
|
29 |
- <b><font size="5"> |
|
30 |
- Current Reading |
|
31 |
- </font></b> |
|
32 |
- <br><br> |
|
33 |
- <b><font size="4"> |
|
34 |
- Counts per minute: <text id="cpm"></text><br> |
|
35 |
- Counts per second: <text id="cps"></text><br> |
|
36 |
- uSv per hour: <text id="uSvPerHr"></text> |
|
37 |
- </font></b> |
|
38 |
- </td> |
|
39 |
- <td width="50%" align="center" valign="center"> |
|
40 |
- <b><font size="5"> |
|
41 |
- Device Status |
|
42 |
- </font></b> |
|
43 |
- <br><br> |
|
44 |
- <b><font size="4"> |
|
45 |
- Mode: <text id="mode"></text><br> |
|
46 |
- Status: <text id="status"></text> |
|
47 |
- </font></b> |
|
48 |
- </td> |
|
49 |
- </tr> |
|
50 |
- </table> |
|
51 |
- </td> |
|
52 |
- </tr> |
|
53 |
- |
|
54 |
- <tr> |
|
55 |
- <td> |
|
56 |
- <table width="100%" border="1", cellpadding="10"> |
|
57 |
- <tr> |
|
58 |
- <td align="center"> |
|
59 |
- <img id="1-day-cpm"> |
|
60 |
- </td> |
|
61 |
- </tr> |
|
62 |
- </table> |
|
63 |
- </td> |
|
64 |
- </tr> |
|
65 |
- |
|
66 |
- <tr> |
|
67 |
- <td> |
|
68 |
- <table width="100%" border="1", cellpadding="10"> |
|
69 |
- <tr> |
|
70 |
- <td align="center"> |
|
71 |
- <img id="1-day-uSv"> |
|
72 |
- </td> |
|
73 |
- </tr> |
|
74 |
- </table> |
|
75 |
- </td> |
|
76 |
- </tr> |
|
77 |
- |
|
78 |
- <tr> |
|
79 |
- <td> |
|
80 |
- <table width="100%" border="1", cellpadding="10"> |
|
81 |
- <tr> |
|
82 |
- <td align="center"> |
|
83 |
- <img id="4-week-cpm"> |
|
84 |
- </td> |
|
85 |
- </tr> |
|
86 |
- </table> |
|
87 |
- </td> |
|
88 |
- </tr> |
|
89 |
- |
|
90 |