-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (100 loc) · 4.9 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
105
106
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Mine Sweeper | André Drougge</title>
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href='http://fonts.googleapis.com/css?family=Arvo:400,700' />
<link rel="stylesheet" type="text/css" href="css/typography.css" />
<link rel="stylesheet" type="text/css" href="css/layout.css" />
<link rel="stylesheet" type="text/css" href="css/form.css" />
<link rel="stylesheet" type="text/css" href="css/theme.css" />
<link rel="stylesheet" type="text/css" href="css/board.css" />
<!-- Scripts -->
<script type="text/javascript" src="script/jquery.1.10.1.js"></script>
<script type="text/javascript" src="script/unrelated.js"></script>
<script type="text/javascript" src="script/ms.js"></script>
<script type="text/javascript" src="script/ms.hardcore.js"></script>
<!-- Tracking -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-22969951-3', 'miphe.com');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="page">
<header class="l-box box-1">
<h1>Mine Sweeper, by André Drougge</h1>
</header>
<div id="control-panel" class="l-box box-2">
<form class="l-1 cf">
<ul class="col">
<li>
<div class="dt">
<label for="size-x">Tiles in width: </label>
</div>
<div class="dd">
<input id="size-x" class="tiles-x tiles" type="text" placeholder="Between 8 and 23" />
</div>
</li>
<li>
<div class="dt">
<label for="size-y">Tiles in height: </label>
</div>
<div class="dd">
<input id="tiles-y" class="tiles-y tiles" type="text" placeholder="Between 8 and 23" />
</div>
</li>
</ul>
<ul class="col">
<li>
<div class="dt">
<label for="mine-percentage">Difficulty (3-95)</label>
</div>
<div class="dd">
<input id="mine-percentage" class="mine-percentage" type="text" placeholder="% of mines" />
</div>
</li>
<li>
<div class="dt">
<label for="hardcore-mode">Hardcore</label>
</div>
<div class="dd">
<input id="hardcore-mode" type="checkbox" />
</div>
</li>
</ul>
<div id="btn-container">
<div id="button-row-1" class="l-button-row">
<a id="start-game" class="l-button v-1 t-1">Start game</a></li>
</div>
<div id="button-row-2" class="l-button-row">
</div>
</div>
</form>
</div>
<div id="hardcore-panel" class="is-hidden l-box box-raw">
<ul id="log-list" class="cf">
<li class="rec"><span id="rec"></span></li>
<li class="spent-time"><p id="spent-time"></p></li>
<li class="sweep-time"><p id="sweep-time"></p></li>
</ul>
</div>
<div class="feedback-container is-hidden"></div>
<div id="content" class="l-box box-raw">
<div class="board-container"></div>
</div>
<footer class="l-box box-2">
<p><a href="https://github.com/miphe/Mine-Sweeper">Github repository »</a></p>
<p><a href="http://miphe.com/">Portfolio »</a></p>
<p><a href="http://careers.stackoverflow.com/miphe">Careers profile »</a></p>
<p><a href="mailto:[email protected]">Send me an e-mail »</a></p>
</footer>
</div>
</body>
</html>