Begin work on the updated delve dice HUD that is better in every way than the other version
This commit is contained in:
parent
00228d3aae
commit
c7342b6402
13 changed files with 169 additions and 7 deletions
3
templates/Apps/DelveDiceHUD/difficulty.hbs
Normal file
3
templates/Apps/DelveDiceHUD/difficulty.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
Difficulty: {{dc}}
|
||||
</div>
|
||||
3
templates/Apps/DelveDiceHUD/fateCompass.hbs
Normal file
3
templates/Apps/DelveDiceHUD/fateCompass.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div id="fate-compass">
|
||||
North
|
||||
</div>
|
||||
18
templates/Apps/DelveDiceHUD/style.css
Normal file
18
templates/Apps/DelveDiceHUD/style.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ripcrypt-delve-dice {
|
||||
display: grid;
|
||||
grid-template-columns: max-content 1fr 1fr 1fr max-content;
|
||||
gap: 8px;
|
||||
padding: 4px 1.5rem;
|
||||
background: var(--DelveDice-background);
|
||||
align-items: center;
|
||||
justify-items: center;
|
||||
pointer-events: all;
|
||||
|
||||
border-radius: 0 0 999px 999px;
|
||||
|
||||
button {
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
3
templates/Apps/DelveDiceHUD/tour/current.hbs
Normal file
3
templates/Apps/DelveDiceHUD/tour/current.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
The Hourglass
|
||||
</div>
|
||||
7
templates/Apps/DelveDiceHUD/tour/next.hbs
Normal file
7
templates/Apps/DelveDiceHUD/tour/next.hbs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<button
|
||||
type="button"
|
||||
class="icon"
|
||||
data-action="tourDelta"
|
||||
>
|
||||
>
|
||||
</button>
|
||||
7
templates/Apps/DelveDiceHUD/tour/previous.hbs
Normal file
7
templates/Apps/DelveDiceHUD/tour/previous.hbs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<button
|
||||
type="button"
|
||||
class="icon"
|
||||
data-action="tourDelta"
|
||||
>
|
||||
<
|
||||
</button>
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
@import url("./AllItemSheetV1/style.css");
|
||||
@import url("./CombinedHeroSheet/style.css");
|
||||
@import url("./CryptApp/style.css");
|
||||
@import url("./DelveDiceHUD/style.css");
|
||||
@import url("./DicePool/style.css");
|
||||
@import url("./HeroSummaryCardV1/style.css");
|
||||
@import url("./HeroSkillsCardV1/style.css");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue