This commit is contained in:
2025-08-04 11:35:26 +02:00
parent b0d92e511d
commit 1ac80c7fa5
4 changed files with 32 additions and 23 deletions

View File

@@ -466,6 +466,11 @@
text-align: center; text-align: center;
} }
.container {
display: flex;
align-items: center;
}
.radioButton { .radioButton {
position: absolute; position: absolute;
opacity: 0; opacity: 0;
@@ -476,18 +481,18 @@
/* Create a custom radio button */ /* Create a custom radio button */
.checkmark { .checkmark {
position: absolute; display: inline-block;
top: 0; top: 0;
left: 0; left: 0;
height: 20px; height: 20px;
width: 35px; width: 36px;
background-color: #30da0c; background-color: #30da0c;
border-radius: 5px; border-radius: 5px;
box-shadow: 0 0 20px #003300 inset; box-shadow: 0 0 10px #003300 inset;
-webkit-box-shadow: 0 0 20px #003300 inset; -webkit-box-shadow: 0 0 10px #003300 inset;
-moz-box-shadow: 0 0 20px #003300 inset; -moz-box-shadow: 0 0 10px #003300 inset;
-o-box-shadow: 0 0 20px #003300 inset; -o-box-shadow: 0 0 10px #003300 inset;
border-radius: 10px; border-radius: 10px;
-webkit-border-radius: 10px; -webkit-border-radius: 10px;
@@ -519,11 +524,11 @@
/* Style the indicator (dot/circle) */ /* Style the indicator (dot/circle) */
.container .checkmark:after { .container .checkmark:after {
top: 9px; top: 5px;
left: 9px; left: 8px;
width: 8px; width: 10px;
height: 8px; height: 10px;
border-radius: 50%; border-radius: 50%;
background: white; background: black;
} }
} }

View File

@@ -399,6 +399,10 @@
align-items: center; align-items: center;
text-align: center; text-align: center;
} }
.pokemon.sheet.characterSheet .container {
display: flex;
align-items: center;
}
.pokemon.sheet.characterSheet .radioButton { .pokemon.sheet.characterSheet .radioButton {
position: absolute; position: absolute;
opacity: 0; opacity: 0;
@@ -407,17 +411,17 @@
width: 0; width: 0;
} }
.pokemon.sheet.characterSheet .checkmark { .pokemon.sheet.characterSheet .checkmark {
position: absolute; display: inline-block;
top: 0; top: 0;
left: 0; left: 0;
height: 20px; height: 20px;
width: 35px; width: 36px;
background-color: #30da0c; background-color: #30da0c;
border-radius: 5px; border-radius: 5px;
box-shadow: 0 0 20px #003300 inset; box-shadow: 0 0 10px #003300 inset;
-webkit-box-shadow: 0 0 20px #003300 inset; -webkit-box-shadow: 0 0 10px #003300 inset;
-moz-box-shadow: 0 0 20px #003300 inset; -moz-box-shadow: 0 0 10px #003300 inset;
-o-box-shadow: 0 0 20px #003300 inset; -o-box-shadow: 0 0 10px #003300 inset;
border-radius: 10px; border-radius: 10px;
-webkit-border-radius: 10px; -webkit-border-radius: 10px;
-moz-border-radius: 10px; -moz-border-radius: 10px;
@@ -438,10 +442,10 @@
display: block; display: block;
} }
.pokemon.sheet.characterSheet .container .checkmark:after { .pokemon.sheet.characterSheet .container .checkmark:after {
top: 9px; top: 5px;
left: 9px; left: 8px;
width: 8px; width: 10px;
height: 8px; height: 10px;
border-radius: 50%; border-radius: 50%;
background: white; background: black;
} }

View File

@@ -1,5 +1,5 @@
{ {
"version": "0.0.41", "version": "0.0.42",
"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.