-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (64 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Tumbling Dice</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<!--[if lt IE 9]><script src="js/html5shiv-printshiv.js" media="all"></script><![endif]-->
<!--<link rel="stylesheet" href="input_styles.scss">-->
<link rel="stylesheet" href="output_styles.css">
<link href="https://fonts.googleapis.com/css?family=Baloo&display=swap" rel="stylesheet">
</head>
<body>
<!-- Yes. Yes I did name this after a song by The Rolling Stones -->
<div class="tumbling-dice">
<h1>The Tumbling Dice</h1>
<!-- This is the whole roleplaying/writing tool part -->
<select name="difficulty" id="difficulty">
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
<button id="classy" class="rolly">Roll Me</button>
<!-- Hopefully, an <ol> will make it easier to add up your successes -->
<ol id="listy" class="listy2">
<!--<li ></li>-->
</ol>
<!-- Below is the inital code for the numbered dice portion of this dice roller
<button id="d100">Roll D100</button>
<ol id="d100list">
<li ></li>
</ol>-->
<select name="dix" id="dix">
<option value="4">D 4</option>
<option value="6">D 6</option>
<option value="8">D 8</option>
<option value="10">D 10</option>
<option value="12">D 12</option>
<option value="20">D 20</option>
<option value="100">D 100</option>
</select>
<!-- Again an <ol> to help you keep track of things -->
<button id="rolling" class="rolly">Roll Me</button>
<ol id="listed" class="listy2">
<!--<li ></li>-->
</ol>
</div>
<!-- Modals popping up for a touch of drama -->
<div class="modal" id="botch" style="display: none;">
<div class="overlay"></div>
<h1 class="modal_content"></h1>
</div>
<div class="modal" id="num" style="display: none;">
<div class="overlay"></div>
<h1 class="modal_content"></h1>
</div>
<script src="dicey.js" type="text/javascript"></script>
</body>
</html>