-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (103 loc) · 2.64 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="description" content="Time difference calculator" />
<meta name="author" content="Alessandro Ceserani" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title></title>
</head>
<body>
<script src="script.js"></script>
<div id="bodyContent">
<!-- % HTML Content % -->
<div id="mainCol">
<div id="calculator">
<table>
<caption id="calcCaption"></caption>
<thead>
<tr>
<th></th>
<th>Start</th>
<th>End</th>
<th>Subtotal</th>
</tr>
</thead>
<tbody id="timeRows"></tbody>
<tfoot>
<tr>
<th id="resetDiv">
<button id="resetButton" tabindex="-1">↺</button>
</th>
<th></th>
<th>Total:</th>
<th id="totalDiv"></th>
</tr>
</tfoot>
</table>
</div>
<div id="notifications"></div>
</div>
<div id="secondaryCol">
<div id="options">
<div id="optionsHeader">Options</div>
<div id="optionsContent">
<div class="optionsCheckbox">
<input
type="checkbox"
id="adjustCheck"
name="adjustCheck"
value="adjustCheck"
/>
<label for="adjustCheck">
Adjust by
<em class="adjustVar">x</em>
for every
<em class="adjustVar">y</em>
hours
</label>
<br />
</div>
<div class="varInputsContainer">
<div class="varInputsRow">
where <em class="adjustVar">x</em>=
<input type="number" class="varInput" id="adjustVarX" />
</div>
<div class="varInputsRow">
and <em class="adjustVar">y</em>=
<input type="number" class="varInput" id="adjustVarY" />
</div>
</div>
</div>
</div>
<div id="keymap">
<div id="keymapHeader">
Keymap
<span id="keymapinfo">
(show / hide with <span class="key">?</span>)
</span>
</div>
<div id="keymapContent">
<div>
<span class="keyCategoryHeader">Table</span>
</div>
<div class="keyCategoryContent" id="keyCatTable"></div>
<div>
<span class="keyCategoryHeader">Input</span>
</div>
<div class="keyCategoryContent" id="keyCatInput"></div>
<div>
<span class="keyCategoryHeader">Navigation</span>
</div>
<div class="keyCategoryContent" id="keyCatNavigation"></div>
<div>
<span class="keyCategoryHeader">Misc</span>
</div>
<div class="keyCategoryContent" id="keyCatMisc"></div>
</div>
</div>
</div>
</div>
</body>
</html>