Initialize the BookGeistSheet
This commit is contained in:
parent
163423ea5b
commit
7935a85188
9 changed files with 153 additions and 8 deletions
7
templates/Apps/BookGeistSheet/header.hbs
Normal file
7
templates/Apps/BookGeistSheet/header.hbs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<div>
|
||||
<input
|
||||
type="text"
|
||||
name="name"
|
||||
value="{{name}}"
|
||||
>
|
||||
</div>
|
||||
3
templates/Apps/BookGeistSheet/image.hbs
Normal file
3
templates/Apps/BookGeistSheet/image.hbs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
IMAGE
|
||||
</div>
|
||||
1
templates/Apps/BookGeistSheet/items.hbs
Normal file
1
templates/Apps/BookGeistSheet/items.hbs
Normal file
|
|
@ -0,0 +1 @@
|
|||
<div>ITEMS</div>
|
||||
10
templates/Apps/BookGeistSheet/layout.hbs
Normal file
10
templates/Apps/BookGeistSheet/layout.hbs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<div>
|
||||
{{#if imageVisible}}
|
||||
<div data-application-part="image"></div>
|
||||
{{/if}}
|
||||
<div class="info">
|
||||
<div data-application-part="header"></div>
|
||||
<div data-application-part="stats"></div>
|
||||
<div data-application-part="items"></div>
|
||||
</div>
|
||||
</div>
|
||||
11
templates/Apps/BookGeistSheet/stats.hbs
Normal file
11
templates/Apps/BookGeistSheet/stats.hbs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<div>
|
||||
<ul>
|
||||
<li>Path: {{path}}</li>
|
||||
<li>Grit: {{grit}}</li>
|
||||
<li>Gait: {{gait}}</li>
|
||||
<li>Grip: {{grip}}</li>
|
||||
<li>Glim: {{glim}}</li>
|
||||
<li>Guts: {{guts.value}} / {{guts.max}}</li>
|
||||
<li>Move: {{speed.move}} / {{speed.run}}</li>
|
||||
</ul>
|
||||
</div>
|
||||
13
templates/Apps/BookGeistSheet/style.css
Normal file
13
templates/Apps/BookGeistSheet/style.css
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
.BookGeistSheet {
|
||||
> .window-content {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
}
|
||||
|
|
@ -8,6 +8,7 @@
|
|||
@import url("./RichEditor/style.css");
|
||||
@import url("./ArmourSheet/style.css");
|
||||
@import url("./TraitSheet/style.css");
|
||||
@import url("./BookGeistSheet/style.css");
|
||||
|
||||
@import url("./popover.css");
|
||||
@import url("./popovers/AmmoTracker/style.css");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue