-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
76 lines (63 loc) · 2.64 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Gauntlet</title>
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./styles/gauntlet.css">
</head>
<body>
<article id="game-container">
<section id="player-setup" class="card card--name">
<div class="card__prompt">
<h1>gauntlet</h1>
<div class="field">
<input placeholder="RECORD YOUR NAME" type="text" autofocus="true" id="player-name" class="field__textinput">
</div>
</div>
</section>
<section id="class-select" class="card card--class transparent">
<div class="card__prompt">
<div>CHOOSE YOUR PATH</div>
<div>
<a class="card__back btn btn--small" href="#" previous="card--name">
<span class="btn__prompt"><</span>
<span class="btn__text">Back</span>
</a>
</div>
</div>
<div class="container-fluid professions__container"></div>
</section>
<section id="weapon-select" class="card card--weapon transparent">
<div class="card__prompt">
<div>choose your weapon</div>
<div>
<a class="card__back btn btn--small" href="#" previous="card--class">
<span class="btn__prompt"><</span>
<span class="btn__text">Back</span>
</a>
</div>
</div>
</section>
<section id="battleground" class="card card--battleground transparent">
<div class="row">
<div class="col-sm-6">
<div class="battle--human"></div>
</div>
<div class="col-sm-6">
<div class="battle--enemy"></div>
</div>
</div>
<div class="row">
<div class="col-sm-12" id="battle-record"></div>
</div>
</section>
</article>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="./build/main.min.js"></script>
</body>
</html>