initial commit of symbiote files
This commit is contained in:
parent
f68347fb48
commit
b4c05b8e84
5 changed files with 278 additions and 0 deletions
28
roll.html
Normal file
28
roll.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Daggerheart Dice Roller</title>
|
||||
<link rel="stylesheet" href="roll.css">
|
||||
<script src="roll.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1 style="margin-top: 0">Duality Dice Roll</h1>
|
||||
<div class="content-row">
|
||||
<label class="field-title" for="modifier">Modifier</label>
|
||||
<input id="modifier" type="number" placeholder="0"></input>
|
||||
</div>
|
||||
<div class="content-row">
|
||||
<label class="field-title" for="adv-disadv">Advantage/Disadvantage</label>
|
||||
<select id="adv-disadv" size="1">
|
||||
<option value="none">None</option>
|
||||
<option value="advantage">Advantage</option>
|
||||
<option value="disadvantage">Disadvantage</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="content-row">
|
||||
<span class="spacer"></span>
|
||||
<button id="roll-duality" onclick="rollDualityDice()">Roll Duality Dice</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue