✨
This commit is contained in:
@@ -266,6 +266,7 @@
|
|||||||
|
|
||||||
.hitPointBox {
|
.hitPointBox {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: flex-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
@@ -290,7 +291,7 @@
|
|||||||
-o-border-radius: 10px;
|
-o-border-radius: 10px;
|
||||||
|
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin: 5px;
|
margin: 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
@@ -299,26 +300,26 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.charHPCurrent {
|
.charHPCurrent {
|
||||||
width: 80px;
|
width: 70px;
|
||||||
height: 80px;
|
height: 70px;
|
||||||
|
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.charHPMax {
|
.charHPMax {
|
||||||
width: 35px;
|
width: 40px;
|
||||||
height: 35px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.charHexHead {
|
.charHexValue {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hpHead {
|
.hpValue {
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hpMaxHead {
|
.hpMaxValue {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
17
pokemon.css
17
pokemon.css
@@ -222,6 +222,7 @@
|
|||||||
}
|
}
|
||||||
.pokemon.sheet.characterSheet .hitPointBox {
|
.pokemon.sheet.characterSheet .hitPointBox {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: flex-end;
|
||||||
}
|
}
|
||||||
.pokemon.sheet.characterSheet .row {
|
.pokemon.sheet.characterSheet .row {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -241,7 +242,7 @@
|
|||||||
-moz-border-radius: 10px;
|
-moz-border-radius: 10px;
|
||||||
-o-border-radius: 10px;
|
-o-border-radius: 10px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin: 5px;
|
margin: 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
@@ -249,21 +250,21 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.pokemon.sheet.characterSheet .charHPCurrent {
|
.pokemon.sheet.characterSheet .charHPCurrent {
|
||||||
width: 80px;
|
width: 70px;
|
||||||
height: 80px;
|
height: 70px;
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
}
|
}
|
||||||
.pokemon.sheet.characterSheet .charHPMax {
|
.pokemon.sheet.characterSheet .charHPMax {
|
||||||
width: 35px;
|
width: 40px;
|
||||||
height: 35px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
.pokemon.sheet.characterSheet .charHexHead {
|
.pokemon.sheet.characterSheet .charHexValue {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
.pokemon.sheet.characterSheet .hpHead {
|
.pokemon.sheet.characterSheet .hpValue {
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
}
|
}
|
||||||
.pokemon.sheet.characterSheet .hpMaxHead {
|
.pokemon.sheet.characterSheet .hpMaxValue {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
.pokemon.sheet.characterSheet .menuBox {
|
.pokemon.sheet.characterSheet .menuBox {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.0.28",
|
"version": "0.0.29",
|
||||||
"id": "pokemon",
|
"id": "pokemon",
|
||||||
"title": "Pokémon TTRPG",
|
"title": "Pokémon TTRPG",
|
||||||
"description": "A Pokémon TTRPG",
|
"description": "A Pokémon TTRPG",
|
||||||
|
|||||||
BIN
system.zip
BIN
system.zip
Binary file not shown.
@@ -16,8 +16,8 @@
|
|||||||
|
|
||||||
<div class="calcStatBox">
|
<div class="calcStatBox">
|
||||||
<div class="hitPointBox">
|
<div class="hitPointBox">
|
||||||
<div class="charHex charHPCurrent"><span class="charHexHead hpHead">HP</span></br><span class="charHexValue">{{system.hp.current}}</span></div>
|
<div class="charHex charHPCurrent"><span class="charHexHead">HP</span></br><span class="charHexValue hpValue">{{system.hp.current}}</span></div>
|
||||||
<div class="charHex charHPMax"><span class="charHexHead hpMaxHead">Max</span></br><span class="charHexValue">{{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">
|
||||||
<div class="charHex"><span class="charHexHead">{{localize "POKEMON.System.ArmorClass"}}</span></br><span class="charHexValue">{{system.armorClass}}</span></div>
|
<div class="charHex"><span class="charHexHead">{{localize "POKEMON.System.ArmorClass"}}</span></br><span class="charHexValue">{{system.armorClass}}</span></div>
|
||||||
|
|||||||
Reference in New Issue
Block a user