-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (71 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>t3</title>
<link rel="stylesheet" href="./styles/normalize.css" />
<link rel="stylesheet" href="./styles/skeleton.css" />
<link rel="stylesheet" href="./styles/styles.css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="one columns">
<h1>t<sup>3</sup></h1>
</div>
<div class="two columns">
<div id="puzzle-wrapper">
<label>Puzzle</label>
<select id="puzzle" name="puzzle">
<option value="222">2x2</option>
<option value="333" selected="selected">3x3</option>
<option value="444">4x4</option>
<option value="555">5x5</option>
<option value="666">6x6</option>
<option value="777">7x7</option>
<option value="333">3x3 OH</option>
<option value="clock">Clock</option>
<option value="minx">Megaminx</option>
<option value="pyram">Pyraminx</option>
<option value="sq1">Square 1</option>
<option value="skewb">Skewb</option>
</select>
</div>
</div>
<div class="nine columns">
<div id="scramble-wrapper">
<label>Scramble</label>
<div id="scramble"></div>
</div>
</div>
</div>
<hr />
<div class="row">
<div id="timer-wrapper">
<div id="timer">Space Bar to Start</div>
</div>
</div>
<hr />
<div class="row">
<div class="one-half column">
<div id="solve-wrapper">
<label id="solve-header">Solves</label>
<button id="deleteAllSolves">Delete All Solves</button>
<button id="deletePuzzleSolves">Delete Puzzle Solves</button>
<div id="solve-container">
<p id="solves"></p>
</div>
</div>
</div>
<div class="one-half column">
<div id="stat-wrapper">
<label id="stat-header">Stats</label>
<div id="">
<p id="">Hello Worlds</p>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="./renderer.js"></script>
</html>