-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (76 loc) · 2.58 KB
/
index.html
File metadata and controls
79 lines (76 loc) · 2.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HERO RPG speed, initiative, and hit-point tracker</title>
<link href="dist/hero.css" rel="stylesheet" />
<meta charset="UTF-8" />
</head>
<body>
<header>
<div class="wrapper">
<h1>HERO, world</h1>
<p>Speed, initiative, and hit-point tracker.</p>
</div>
</header>
<div class="wrapper">
<div class="has-flex">
<div class="party-players is-flexed">
<h2>Players</h2>
<div class="players"></div>
</div>
<div class="turn-order is-flexed">
<h2>Turn order</h2>
<div class="order"></div>
</div>
</div>
<div class="controls">
<form class="add-player">
<h3>Add player</h3>
<div class="full-width">
<label for="new-player">Character name</label>
<input type="text" id="new-player" name="player" />
</div>
<div class="has-flex">
<div class="is-flexed">
<label for="new-player-speed">Speed</label>
<input type="number" id="new-player-speed" name="speed" />
</div>
<div class="is-flexed">
<label for="new-player-dex">Dex:</label>
<input type="number" id="new-player-dex" name="dex" />
</div>
<div class="is-flexed">
<label for="new-player-body">Body:</label>
<input type="number" id="new-player-body" name="body" />
</div>
<div class="is-flexed">
<label for="new-player-end">End:</label>
<input type="number" id="new-player-end" name="end" />
</div>
<div class="is-flexed">
<label for="new-player-stun">Stun:</label>
<input type="number" id="new-player-stun" name="stun" />
</div>
</div>
<button type="button" class="add">Add</button>
</form>
<p>
<button type="button" class="button transparent save">Save</button>
<button type="button" class="button transparent load">Load</button>
<button type="button" class="button transparent danger clear">Clear</button>
</p>
</div>
<div class="donate">
<h3>Donate</h3>
<ul class="no-bullets">
<li>BTC: 155wmpL3rTEuJgYPrLoanXNRP1wAP3xA2W</li>
<li>ETH: 0x2d071d590114512Dd35A3Ef12c91f556736dd851</li>
</ul>
</div>
<div class="modal">
<div class="wrapper"></div>
</div>
</div>
<script src="dist/hero.js"></script>
</body>
</html>