Format html
This commit is contained in:
parent
000498b916
commit
1342f3de6d
1 changed files with 23 additions and 21 deletions
14
roll.html
14
roll.html
|
|
@ -1,5 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>Daggerheart Dice Roller</title>
|
<title>Daggerheart Dice Roller</title>
|
||||||
<link rel="stylesheet" href="assets/roll.css">
|
<link rel="stylesheet" href="assets/roll.css">
|
||||||
|
|
@ -12,24 +13,25 @@
|
||||||
<body>
|
<body>
|
||||||
<h1 style="margin-top: 0">Duality Dice Roller</h1>
|
<h1 style="margin-top: 0">Duality Dice Roller</h1>
|
||||||
|
|
||||||
<div class="content-row">
|
<div class="content-row">
|
||||||
<img src="assets/divider.png" alt="divider"><br>
|
<img src="assets/divider.png" alt="divider"><br>
|
||||||
<label class="field-title" for="modifier">Modifier</label>
|
<label class="field-title" for="modifier">Modifier</label>
|
||||||
<input id="modifier" type="number" placeholder="0"></input>
|
<input id="modifier" type="number" placeholder="0"></input>
|
||||||
</div>
|
</div>
|
||||||
<div class="content-row">
|
<div class="content-row">
|
||||||
<label class="field-title" for="adv-disadv">Advantage / Disadvantage</label>
|
<label class="field-title" for="adv-disadv">Advantage / Disadvantage</label>
|
||||||
<select id="adv-disadv" size="1">
|
<select id="adv-disadv" size="1">
|
||||||
<option value="none">None</option>
|
<option value="none">None</option>
|
||||||
<option value="advantage">Advantage</option>
|
<option value="advantage">Advantage</option>
|
||||||
<option value="disadvantage">Disadvantage</option>
|
<option value="disadvantage">Disadvantage</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="content-row">
|
<div class="content-row">
|
||||||
<span class="spacer"></span>
|
<span class="spacer"></span>
|
||||||
<button id="roll-duality" onclick="rollDualityDice()">Roll Duality Dice</button>
|
<button id="roll-duality" onclick="rollDualityDice()">Roll Duality Dice</button>
|
||||||
<br><br>
|
<br><br>
|
||||||
<img src="assets/divider.png" alt="divider">
|
<img src="assets/divider.png" alt="divider">
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue