-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
136 lines (126 loc) · 6.47 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<title>Snake Game Home</title>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<!--Import materialize.css-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" />
<link rel="stylesheet" href="./assets/css/main.css" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style type="text/css">
.content
{
margin: 0 auto;
width: 300px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -35%);
}
#nav
{
margin: 0 auto;
}
</style>
</head>
<body>
<div id="nav">
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper">
<a href="#" class="left styling"> Feed the Snake</a>
<ul class="right hide-on-small-and-down">
<li class="active red"><a href="index.html">Select Maze</a></li>
<li><a href="./pages/difficultyDefault.html">Difficulty</a></li>
<li><a href="./pages/instruction.html">Instructions</a></li>
</ul>
</div>
</nav>
</div>
</div>
<div class="mainContent">
<ul class="mainCollection">
<a href="javascript:choose_difficulty('limitless')">
<li class="collection-item avatar listItem">
<div style="display: inline-block;position: relative; top: -20px;margin-right: 30px;margin-left: 20px;">
<i style="color: white;padding: 5px;" class="material-icons circle purple darken-2">accessibility</i>
</div>
<div style="display: inline-block;">
<p>
LIMITLESS <br>
No Boundary<br />
Apprentice
</p>
</div>
<!-- <a href="#!" class="secondary-content"><i class="material-icons">send</i></a> -->
</li>
</a>
<a href="javascript:choose_difficulty('keep')">
<li class="collection-item avatar listItem">
<div style="display: inline-block;position: relative; top: -20px;margin-right: 30px;margin-left: 20px;">
<i style="color: white;padding: 5px;" class="material-icons circle green accent-3">radio_button_unchecked</i>
</div>
<div style="display: inline-block;">
<p>
KEEP IT IN <br>
Boundary all over the field<br />
Trained
</p>
</div>
<!-- <a href="#!" class="secondary-content"><i class="material-icons">send</i></a> -->
</li>
</a>
<a href="javascript:choose_difficulty('sneak')">
<li class="collection-item avatar listItem">
<div style="display: inline-block;position: relative; top: -20px;margin-right: 30px;margin-left: 20px;">
<i style="color: white;padding: 5px;" class="material-icons circle amber darken-2">crop_free</i>
</div>
<div style="display: inline-block;">
<p>
SNEAK PAST<br/>
Small Gaps<br />
Able
</p>
</div>
<!-- <a href="#!" class="secondary-content"><i class="material-icons">send</i></a> -->
</li>
</a>
<a href="javascript:choose_difficulty('watch')">
<li class="collection-item avatar listItem">
<div style="display: inline-block;position: relative; top: -20px;margin-right: 30px;margin-left: 20px;">
<i style="color: white;padding: 5px;" class="material-icons circle deep-orange darken-1">record_voice_over</i>
</div>
<div style="display: inline-block;">
<p>
WATCH YOUR HEAD <br>
Barriers In Between<br />
Competent
</p>
</div>
<!-- <a href="#!" class="secondary-content"><i class="material-icons">send</i></a> -->
</li>
</a>
<a href="javascript:choose_difficulty('death')">
<li class="collection-item avatar listItem">
<div style="display: inline-block;position: relative; top: -20px;margin-right: 30px;margin-left: 20px;">
<i style="color: white;padding: 5px;" class="material-icons circle red accent-4">nfc</i>
</div>
<div style="display: inline-block;">
<p>
DEATH TRAP<br/>
Caged Field<br />
Experienced
</p>
</div>
<!-- <a href="#!" class="secondary-content"><i class="material-icons">send</i></a> -->
</li>
</a>
</ul>
</div>
<script type="text/javascript" src='./assets/js/index.js'></script>
<!--JavaScript at end of body for optimized loading-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>