This commit is contained in:
2025-08-03 15:41:16 +02:00
parent 5b410e13f2
commit 7a480398f9
5 changed files with 24 additions and 20 deletions

View File

@@ -274,8 +274,8 @@
} }
.charHex { .charHex {
width: 50px; width: 65px;
height: 50px; height: 65px;
background-color: #30da0c; background-color: #30da0c;
color: black; color: black;
border: black; border: black;
@@ -291,7 +291,7 @@
-o-border-radius: 10px; -o-border-radius: 10px;
padding: 5px; padding: 5px;
margin: 10px; margin: 15px 10px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-around; justify-content: space-around;
@@ -300,23 +300,24 @@
} }
.charHPCurrent { .charHPCurrent {
width: 70px; width: 80px;
height: 70px; height: 80px;
margin-left: 20px; margin-left: 20px;
margin-right: 0px;
} }
.charHPMax { .charHPMax {
width: 40px; width: 50px;
height: 40px; height: 50px;
} }
.charHexValue { .charHexValue {
font-size: 20px; font-size: 25px;
} }
.hpValue { .hpValue {
font-size: 30px; font-size: 40px;
} }
.hpMaxValue { .hpMaxValue {

View File

@@ -228,8 +228,8 @@
display: flex; display: flex;
} }
.pokemon.sheet.characterSheet .charHex { .pokemon.sheet.characterSheet .charHex {
width: 50px; width: 65px;
height: 50px; height: 65px;
background-color: #30da0c; background-color: #30da0c;
color: black; color: black;
border: black; border: black;
@@ -242,7 +242,7 @@
-moz-border-radius: 10px; -moz-border-radius: 10px;
-o-border-radius: 10px; -o-border-radius: 10px;
padding: 5px; padding: 5px;
margin: 10px; margin: 15px 10px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-around; justify-content: space-around;
@@ -250,19 +250,20 @@
text-align: center; text-align: center;
} }
.pokemon.sheet.characterSheet .charHPCurrent { .pokemon.sheet.characterSheet .charHPCurrent {
width: 70px; width: 80px;
height: 70px; height: 80px;
margin-left: 20px; margin-left: 20px;
margin-right: 0px;
} }
.pokemon.sheet.characterSheet .charHPMax { .pokemon.sheet.characterSheet .charHPMax {
width: 40px; width: 50px;
height: 40px; height: 50px;
} }
.pokemon.sheet.characterSheet .charHexValue { .pokemon.sheet.characterSheet .charHexValue {
font-size: 20px; font-size: 25px;
} }
.pokemon.sheet.characterSheet .hpValue { .pokemon.sheet.characterSheet .hpValue {
font-size: 30px; font-size: 40px;
} }
.pokemon.sheet.characterSheet .hpMaxValue { .pokemon.sheet.characterSheet .hpMaxValue {
font-size: 18px; font-size: 18px;

View File

@@ -1,5 +1,5 @@
{ {
"version": "0.0.29", "version": "0.0.30",
"id": "pokemon", "id": "pokemon",
"title": "Pokémon TTRPG", "title": "Pokémon TTRPG",
"description": "A Pokémon TTRPG", "description": "A Pokémon TTRPG",

Binary file not shown.

View File

@@ -16,7 +16,7 @@
<div class="calcStatBox"> <div class="calcStatBox">
<div class="hitPointBox"> <div class="hitPointBox">
<div class="charHex charHPCurrent"><span class="charHexHead">HP</span></br><span class="charHexValue hpValue">{{system.hp.current}}</span></div> <div class="charHex charHPCurrent"><span class="charHexHead">HP</span></br><input class="charHexValue hpValue invisibleInput" type="number" name="system.hp.current" value="{{system.hp.current}}"></div>
<div class="charHex charHPMax"><span class="charHexHead">Max</span></br><span class="charHexValue hpMaxValue">{{system.hp.max}}</span></div> <div class="charHex charHPMax"><span class="charHexHead">Max</span></br><span class="charHexValue hpMaxValue">{{system.hp.max}}</span></div>
</div> </div>
<div class="row"> <div class="row">
@@ -59,4 +59,6 @@
</div> </div>
</section> </section>
</div> </div>
<div class="horLine"></div>
</div> </div>