-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
331 lines (287 loc) · 8.44 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Idle Quest RPG</title>
<style>
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
font-size: 62.5%;
}
body {
background-color: #292929;
color: #ccc;
margin-top: .5rem;
margin-bottom: 26vh;
font-family: Verdana, Arial, sans-serif;
}
.page {
margin: 0 auto;
font-size: 1.1rem;
max-width: 1250px;
background-color: #111;
box-shadow: 1rem 2rem 2.5rem rgba(0,0,0,.5);
padding-bottom: .1rem;
}
input,
button {
border: 1px solid #555;
background-color: #222;
color: #ccc;
padding: 3px 6px 3px 6px;
}
textarea:focus,
input:focus {
outline: none;
border-color: #999999;
}
.button {
cursor: pointer;
width: 100%;
padding: .4rem;
}
.button-container {
padding-top: .2rem;
}
button:focus {
outline: none;
}
button:hover {
border-color: #777;
}
button:active {
color: #ccc;
border-color: #666;
}
.header {
height: 120px;
border: 1px solid #333;
}
.main {
display: grid;
grid-template-columns: 25% 75%;
}
.main__section {
border: 1px solid #333;
margin: 1rem;
background-color: #1b1b1b;
box-shadow: .5rem 1rem 2rem rgba(30,30,30,.7);
}
.main__section--header {
padding: .5rem 1rem;
background-color: #262626;
border-bottom: 1px solid #333;
font-size: 1.2rem;
}
.main__section--body {
padding: .7rem;
}
.heading {
display: table;
font-size: 1.6rem;
color: #ccc;
padding-right: 1.5rem;
margin-bottom: .6rem;
border-bottom: 1px solid #999;
}
.screenshot__container {
display: flex;
}
.screenshot__container:not(:last-child) {
margin-bottom: 1rem;
}
.screenshot__img {
height: 126px;
min-width: 224px;
background-color: #333;
border: 1px solid white;
}
.screenshot__text {
padding-left: 1.2rem;
}
.margin-bottom-small {
margin-bottom: .5rem;
}
.margin-bottom-medium {
margin-bottom: 1rem;
}
.margin-bottom-large {
margin-bottom: 2rem;
}
.yellow-text {
color: yellow;
}
.bold {
font-weight: bold;
}
.statistics {
text-align: center;
}
.statistics__number {
font-size: 2rem;
color: #0f0;
}
.statistics__text {
}
.statistics__text:not(:last-child) {
margin-bottom: 1rem;
}
.flex-div {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: .3rem;
}
.tos-div {
text-align: center;
color: #999;
padding: .5rem 0;
}
.green-text {
color: #0f0;
}
.red-text {
color: #f00;
}
ul {
margin-top: 1rem;
}
li {
margin-left: 3rem;
}
.footer {
text-align: center;
color: #888;
}
a {
color: #88f;
text-decoration: none;
}
a:hover {
color: #99f;
}
.margin-bottom-small {
margin-bottom: .4rem;
}
</style>
</head>
<body>
<div class="page">
<div class="header">
</div>
<div class="main">
<div>
<div class="main__section">
<div class="main__section--header">Statistics</div>
<div class="main__section--body statistics">
<p class="statistics__number">379</p>
<p class="statistics__text">Players Online</p>
</div>
</div>
<div class="main__section">
<div class="main__section--header">Login</div>
<div class="main__section--body">
<form method="POST" action="login.php">
<div class="flex-div">
<span>Username</span><span><input type="text" name="login_username" size="25" placeholder="Username..."></span>
</div>
<div class="flex-div">
<span>Password</span><span><input type="password" name="login_password" size="25" placeholder="Password..."></span>
</div>
<div class="button-container">
<button class="button" type="submit">Login</button>
</div>
</form>
<div style="text-align: right; margin-top: .4rem"><a href="util.php?mod=forgotPassword">Forgot Password?</a></div>
</div>
</div>
<div class="main__section">
<div class="main__section--header">Register</div>
<div class="main__section--body">
<form method="POST" action="index.php">
<input type="hidden" name="register" value="1">
<div class="flex-div">
<span>Username</span><span><input type="text" name="register_username" size="25" placeholder="Username..."></span>
</div>
<div class="flex-div">
<span>Password</span><span><input type="password" name="register_password1" size="25" placeholder="Password..."></span>
</div>
<div class="flex-div">
<span>Verify Password</span><span><input type="password" name="register_password2" size="25" placeholder="Verify Password..."></span>
</div>
<div class="flex-div">
<span>E-Mail Address</span><span><input type="text" name="register_email" size="25" placeholder="E-Mail Address..."></span>
</div>
<div class="tos-div">
<label><input type="checkbox" name="rules"> I accept the <a href="util.php?mod=rules">Rules</a> and <a href="util.php?mod=privacy">Privacy Policy</a>.</label>
</div>
<div class="button-container">
<button class="button" type="submit">Register</button>
</div>
</form>
</div>
</div>
</div>
<div><div class="main__section">
<div class="main__section--header">Features</div>
<div class="main__section--body">
<div class="screenshot__container">
<div class="screenshot__img"></div>
<div class="screenshot__text">
<p class="heading">Combat</p>
<p>Battle through various areas and dungeons, obtaining valuable items as you progress...</p>
<ul>
<li><span class="green-text">Battling</span>: Fight monsters, collecting dungeon keys and components to increase your power...</li>
<li><span class="green-text">Dungeoneering</span>: Make your way through dungeons to obtain loot from the chest at the end...</li>
</ul>
</div>
</div>
<div class="screenshot__container">
<div class="screenshot__img"></div>
<div class="screenshot__text">
<p class="heading">Gathering</p>
<p>Gather resources to help build up a clan, gathering valuable items required for crafting along the way.</p>
<ul>
<li><span class="green-text">Mining</span>: Gather metal for your clan, and collect gems to craft rings...</li>
<li><span class="green-text">Woodcutting</span>: Gather wood for your clan, collecting sap to craft potions...</li>
<li><span class="green-text">Quarrying</span>: Gather stone for your clan, collecting valuable stones to craft runes...</li>
</ul>
</div>
</div>
<div class="screenshot__container">
<div class="screenshot__img"></div>
<div class="screenshot__text">
<p class="heading">Crafting</p>
<p>All items are crafted by players. Only the highest level crafters can make the highest level items. Choose your crafting skills and supply the items on the market.</p>
<ul>
<li><span class="green-text">Runecrafting</span>: Craft runes to provide benefits in battlings...</li>
<li><span class="green-text">Jewelcrafting</span>: Craft rings to increase your power...</li>
<li><span class="green-text">Alchemy</span>: Craft potions that boost resources, experience and more...</li>
</ul>
</div>
</div>
<div class="screenshot__container">
<div class="screenshot__img"></div>
<div class="screenshot__text">
<p class="heading">Clans</p>
<p>Create or join a clan to team up with other players.</p>
<ul>
<li><span class="green-text">Battlegrounds</span>: Defeat bosses and mobs in your clan battlegrounds to level up your clan...</li>
<li><span class="green-text">Buildings</span>: Use your resources to create buildings to provide benefits to your clan, and all members...</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">Copyright © Carl McKie 2019</div>
</body>
</html>