generated from Nereare/Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (102 loc) · 4.84 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="application-name" content="arcane-blight-tracker">
<meta name="author" content="Igor Padoim">
<meta name="description" content="A simple, embedable, tracker for the exploration of Ythryn">
<meta name="keywords" content="javascript, jquery, dnd, rpg, html5, css3, dnd5e, rpg-tool, dnd5e-tools, 5etools">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="production" content="true">
<title>Arcane Blight Tracker</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="194x194" href="favicon/favicon-194x194.png">
<link rel="icon" type="image/png" sizes="192x192" href="favicon/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#4d4fee">
<link rel="shortcut icon" href="favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#4d4fee">
<meta name="msapplication-TileImage" content="favicon/mstile-144x144.png">
<meta name="msapplication-config" content="favicon/browserconfig.xml">
<meta name="theme-color" content="#4d4fee">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/normalize.css@8.0.1/normalize.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/typeface-montserrat@1.1.13/index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/typeface-source-code-pro@1.1.13/index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@6.9.96/css/materialdesignicons.min.css">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="pyro is-hidden">
<div class="before"></div>
<div class="after"></div>
</div>
<section class="hero is-fullheight" id="hero">
<div class="hero-body">
<div class="container">
<div class="columns is-centered">
<div class="column is-12-tablet is-6-desktop is-8-widescreen">
<div class="box" id="win">
<input type="number" class="is-hidden" id="dc">
<input type="number" class="is-hidden" id="time">
<div class="field">
<div class="control is-expanded">
<button type"button" class="button is-warning is-medium is-fullwidth" id="go">
<span class="icon-text">
<span class="icon">
<i class="mdi mdi-clock-plus mdi-24px"></i>
</span>
<span>12h</span>
</span>
</button>
</div>
</div>
<table class="table is-fullwidth is-striped is-hoverable">
<thead>
<tr>
<th>Time</th>
<th>DC</th>
<th>Roll</th>
<th>Result</th>
</tr>
</thead>
<tbody id="dc-container"></tbody>
</table>
<div class="field has-addons">
<div class="control">
<button class="button is-static is-large" tabindex="-1">CON Save</button>
</div>
<div class="control is-expanded">
<input type="number" class="input is-large" id="roll" step="1" placeholder="Result..." disabled>
</div>
<div class="control">
<button type="button" class="button is-primary is-large" id="check" disabled>
<span class="icon">
<i class="mdi mdi-dots-horizontal-circle mdi-36px"></i>
</span>
</button>
</div>
</div>
<div class="field">
<div class="control is-expanded">
<button type="button" class="button is-danger is-fullwidth" id="restart">
<span class="icon-text">
<span class="icon">
<i class="mdi mdi-delete"></i>
</span>
<span>Restart</span>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>