Corrected some inputs and styled radio and text inputs

master
Wynd 2025-10-26 10:38:16 +02:00
parent 45a9950c70
commit f48a56c70b
13 changed files with 70 additions and 17 deletions

View File

@ -3,6 +3,7 @@ kind = "unversed"
[[world]]
name = "Monstropolis"
rooms = ["Vault Passage"]
[[drops]]
name = "Sinister Shard"

View File

@ -3,6 +3,10 @@ name = "Pogo Shovel"
[[world]]
name = "San Fransokyo"
[[world]]
name = "Monstropolis"
rooms = ["Vault Passage"]
[[drops]]
name = "Pulsing Gem"
kind = "material"

View File

@ -1,7 +1,7 @@
name = "Powerwild"
[[world]]
name = "The Carribean"
name = "The Caribbean"
[[drops]]
name = "Pulsing Shard"

View File

@ -3,6 +3,7 @@ kind = "unversed"
[[world]]
name = "Monstropolis"
rooms = ["Service Area", "Lobby & Offices"]
[[drops]]
name = "Sinister Crystal"

View File

@ -3,6 +3,7 @@ kind = "unversed"
[[world]]
name = "Monstropolis"
rooms = ["Service Area", "Lobby & Offices"]
[[drops]]
name = "Sinister Gem"

View File

@ -12,6 +12,6 @@ room = "Andy's House"
note = "Outside the house in the garden"
[[locations]]
world = "The Carribean"
world = "The Caribbean"
room = "Isla de los Mastiles"
note = "On a rock to the right of the spawn point"

View File

@ -7,10 +7,10 @@ room = "Lobby & Offices"
note = "Vending Machine at the Laugh Floor's entrance"
[[locations]]
world = "The Carribean"
world = "The Caribbean"
room = "Isla de los Mastiles"
note = "Climb the walls and traverse the platforms"
[[locations]]
world = "The Carribean"
world = "The Caribbean"
room = "Forsaken Isle"

View File

@ -7,6 +7,6 @@ room = "Lobby & Offices"
note = "Laugh Floor on the desk in the very back"
[[locations]]
world = "The Carribean"
world = "The Caribbean"
room = "Fort"
note = "In an yellow box on the front terrace from the spawn"

View File

@ -2,5 +2,5 @@ name = "Miller Mushroom"
group = "mushroom"
[[locations]]
world = "The Carribean"
world = "The Caribbean"
room = "Hudded Isles"

View File

@ -2,9 +2,9 @@ name = "Portobello"
group = "mushroom"
[[locations]]
world = "The Carribean"
world = "The Caribbean"
room = "Horseshoe Island"
[[locations]]
world = "The Carribean"
world = "The Caribbean"
room = "Ship's End"

View File

@ -2,6 +2,6 @@ name = "Quail"
group = "meat"
[[locations]]
world = "The Carribean"
world = "The Caribbean"
room = "Docks"
note = "Inside the building on the right side in a yellow box"

View File

@ -87,7 +87,22 @@ button {
}
}
input[type="checkbox"] {
input[type="text"] {
background-color: var(--bg-color);
border: 1px solid var(--button-border-color);
border-radius: 5px;
color: var(--text-color);
padding: 6px;
outline: none;
&:active,
&:focus {
border: 1px solid var(--primary-color);
}
}
input[type="checkbox"],
input[type="radio"] {
appearance: none;
position: relative;
cursor: pointer;
@ -130,6 +145,22 @@ input[type="checkbox"] {
}
}
input[type="radio"] {
&::before {
border-radius: 20px;
}
&:checked:after {
font-size: 16px;
top: 10px;
left: 6px;
}
&:checked::after {
content: "\25CF";
}
}
.help {
display: inline-block;
vertical-align: middle;

View File

@ -70,6 +70,17 @@ div.abilities {
table.board {
width: inherit;
tbody tr:hover {
background-color: inherit;
}
& tr,
th,
td {
border: none;
padding: 0px;
}
td {
width: 120px;
height: 100px;
@ -92,13 +103,17 @@ table.board {
font-size: 14px;
box-shadow: 1px 1px 5px black;
.help:after {
content: "?";
position: absolute;
color: rgba(0, 0, 0, 0.3);
font-size: 24px;
bottom: 0;
right: 5px;
.help {
display: inherit;
&:after {
content: "?";
position: absolute;
color: rgba(0, 0, 0, 0.3);
font-size: 24px;
bottom: 0;
right: 5px;
}
}
}