-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
176 lines (144 loc) · 4.37 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html>
<title>Fauxkemon</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P|Yanone+Kaffeesatz" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- positioning stuff on the page
position: relative -->
<style>
/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
font-family: 'Yanone Kaffeesatz', sans-serif;
font-size: 20px;
margin-bottom: 0;
border-radius: 0;
}
.gameCenter{
text-align: center;
}
#Header{
font-family: 'Press Start 2P', cursive;
font-size: 30px;
}
#subheader{
font-family: 'Press Start 2P', cursive;
font-size: 20px;
}
#submituser{
font-family: 'Yanone Kaffeesatz', sans-serif;
font-size: 20px;
font-weight: bold;
}
#welcome{
font-family: 'Yanone Kaffeesatz', sans-serif;
font-size: 25px;
font-weight: bold;
}
#pokeSelector{
font-family: 'Yanone Kaffeesatz', sans-serif;
font-size: 25px;
font-weight: bold;
}
#pokeContainer{
font-family: 'Yanone Kaffeesatz', sans-serif;
font-size: 25px;
font-weight: bold;
}
/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {height: 450px}
/* Set gray background color and 100% height */
.sidenav {
padding-top: 20px;
background-color: #f1f1f1;
height: 100%;
}
#gameConsole{
background: url('http://news.coral.co.uk/live/wp-content/uploads/2016/07/landscape-1456483171-pokemon2-1280x531.jpg')
}
#battleStatus{
font-family: 'Yanone Kaffeesatz', sans-serif;
font-size: 25px;
}
/* Set black background color, white text and some padding */
footer {
background-color: #555;
color: white;
padding: 15px;
}
/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
.sidenav {
height: auto;
padding: 15px;
}
.row.content {height:auto;}
}
</style>
</head>
<body>
<nav id="nav" class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Faukemon</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li id="Available Pokemon"><a href="#">Available Pokemon</a></li>
<li id="Leaderboards"><a href="#">Leaderboards</a></li>
</ul>
</div>
</nav>
<div id="firstPage"class="container-fluid">
<br>
<br>
<br>
<center><img src='https://forums.windowscentral.com/attachments/nokia-glance-backgrounds/45742d1381464991t-pokeball-glance.png'></center>
</div>
<div id="gameConsole"class="container-fluid text-center">
<div class="row content">
<!-- <div class="col-sm-1 sidenav">
<canvas id="leftside" width="67" height="450"></canvas>
</div> -->
<div id="gameCenter" class="col-sm-12 text-center">
<div id="Header">
<p>Fauxkemon</p>
</div>
<div id="subheader">
<p>You can only catch one!</p>
</div>
<div class="username">
<form id="submituser">
<label id="name">Enter a username:</label>
<input type="text" id="username">
<input type="submit">
</form>
</div>
<div id="welcome">
</div>
<!-- Does this work? -->
<div id="battleStatusDisplay">
</div>
<br>
<div id="holder">
<div class="pokemon-dropdown" id="pokemonList">
<form id="pokeSelector">
<p>Select a pokemon to battle with:</p>
<select id="pokes">
</select></input>
<input type="submit" value= "I choose you!">
</form>
</div>
</div>
<div id="pokeContainer">
</div>
</div>
</div>
<div id="battleButtonDiv">
</div>
<script type="text/javascript" src="src/index.js"></script>
</body>
</html>