-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e95a27d
commit 72218b3
Showing
3 changed files
with
78 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,58 @@ | ||
|
||
<form id="EBForm" autocomplete="off" onsubmit="event.preventDefault();" > | ||
<div id="EBContainers"> | ||
|
||
<fieldset class="leftContainer"> | ||
<legend>Players</legend> | ||
<div class="leftField"> | ||
{{#each pcs}} | ||
<div class='pc-container'> | ||
<img class="pc-portraits" src="{{this.img}}" title="{{this.name}}" id="{{this.id}}"/> | ||
<div class="subtract"> | ||
<i class="fas fa-minus" title="{{this.name}}" id="{{this.id}}"></i> | ||
</div> | ||
<div id="EBContainers"> | ||
<fieldset class="group-container"> | ||
<legend class='group-legend'>Players</legend> | ||
<div class="group-field"> | ||
{{#each pcs}} | ||
<div class='actor-container'> | ||
<img class="actor-portrait" src="{{this.img}}" title="{{this.name}}" id="{{this.id}}"/> | ||
<div class="actor-subtract"> | ||
<i class="fas fa-minus" title="{{this.name}}" id="{{this.id}}"></i> | ||
</div> | ||
{{/each}} | ||
</div> | ||
</fieldset> | ||
</div> | ||
{{/each}} | ||
</div> | ||
</fieldset> | ||
|
||
<div class="centerContainer"> | ||
<div class="difficulty-rating"> | ||
<h1>{{capitalizeAll this.difficulty}}</h1> | ||
</div> | ||
<div class="difficulty-threshold"> | ||
{{#with pcrating}} | ||
<label>Easy: {{easy}} XP</label> | ||
<label>Medium: {{medium}} XP</label> | ||
<label>Hard: {{hard}} XP</label> | ||
<label>Deadly: {{deadly}} XP</label> | ||
{{/with}} | ||
</div> | ||
<div class="daily-budget"> | ||
<label>Daily Budget: {{dailyxp}} XP</label> | ||
</div> | ||
<div class="center-container"> | ||
<div class="difficulty-rating"> | ||
<h1>{{capitalizeAll this.difficulty}}</h1> | ||
</div> | ||
<div class="difficulty-threshold"> | ||
{{#with pcrating}} | ||
<label>Easy: {{easy}} XP</label> | ||
<label>Medium: {{medium}} XP</label> | ||
<label>Hard: {{hard}} XP</label> | ||
<label>Deadly: {{deadly}} XP</label> | ||
{{/with}} | ||
</div> | ||
<div class="daily-budget"> | ||
<label>Daily Budget: {{dailyxp}} XP</label> | ||
</div> | ||
</div> | ||
|
||
<fieldset class="rightContainer"> | ||
<legend>Opponents</legend> | ||
<div class="rightField"> | ||
{{#each npcs}} | ||
<div class='npc-container'> | ||
<img class='npc-portraits' src="{{this.img}}" title="{{this.name}}" id="{{this.id}}"/> | ||
<div class="subtract"> | ||
<i class="fas fa-minus" title="{{this.name}}" id="{{this.id}}"></i> | ||
</div> | ||
<fieldset class="group-container"> | ||
<legend class='group-legend'>Opponents</legend> | ||
<div class="group-field"> | ||
{{#each npcs}} | ||
<div class='actor-container'> | ||
<img class='actor-portrait' src="{{this.img}}" title="{{this.name}}" id="{{this.id}}"/> | ||
<div class="actor-subtract"> | ||
<i class="{{this.icon}}" title="{{this.name}}" id="{{this.id}}"></i> | ||
</div> | ||
{{/each}} | ||
</div> | ||
</fieldset> | ||
|
||
</div> | ||
<div id="EBOutcome"> | ||
<div class='scores'> | ||
<h2> | ||
Total XP: {{this.totalxp}} | ||
</h2> | ||
<h3> | ||
XP / player: {{this.perpcxp}} | ||
</h3> | ||
</div> | ||
{{/each}} | ||
</div> | ||
</fieldset> | ||
</div> | ||
|
||
<div id="EBXP"> | ||
<div class='scores'> | ||
<h2> | ||
Total XP: {{this.totalxp}} | ||
</h2> | ||
|
||
<h3> | ||
XP / player: {{this.perpcxp}} | ||
</h3> | ||
</div> | ||
</form> | ||
</div> |