Corrected some inputs and styled radio and text inputs
parent
45a9950c70
commit
f48a56c70b
|
|
@ -3,6 +3,7 @@ kind = "unversed"
|
|||
|
||||
[[world]]
|
||||
name = "Monstropolis"
|
||||
rooms = ["Vault Passage"]
|
||||
|
||||
[[drops]]
|
||||
name = "Sinister Shard"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,10 @@ name = "Pogo Shovel"
|
|||
[[world]]
|
||||
name = "San Fransokyo"
|
||||
|
||||
[[world]]
|
||||
name = "Monstropolis"
|
||||
rooms = ["Vault Passage"]
|
||||
|
||||
[[drops]]
|
||||
name = "Pulsing Gem"
|
||||
kind = "material"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
name = "Powerwild"
|
||||
|
||||
[[world]]
|
||||
name = "The Carribean"
|
||||
name = "The Caribbean"
|
||||
|
||||
[[drops]]
|
||||
name = "Pulsing Shard"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ kind = "unversed"
|
|||
|
||||
[[world]]
|
||||
name = "Monstropolis"
|
||||
rooms = ["Service Area", "Lobby & Offices"]
|
||||
|
||||
[[drops]]
|
||||
name = "Sinister Crystal"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ kind = "unversed"
|
|||
|
||||
[[world]]
|
||||
name = "Monstropolis"
|
||||
rooms = ["Service Area", "Lobby & Offices"]
|
||||
|
||||
[[drops]]
|
||||
name = "Sinister Gem"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@ name = "Miller Mushroom"
|
|||
group = "mushroom"
|
||||
|
||||
[[locations]]
|
||||
world = "The Carribean"
|
||||
world = "The Caribbean"
|
||||
room = "Hudded Isles"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue