mirror of
https://github.com/tjsga/scavenger-hunt-2022.git
synced 2025-04-09 23:00:16 -04:00
24 lines
270 B
CSS
24 lines
270 B
CSS
.box {
|
|
padding: 5px;
|
|
margin: 5px;
|
|
}
|
|
|
|
.available {
|
|
background-color: lightgray;
|
|
}
|
|
|
|
.completed {
|
|
background-color: lightgreen;
|
|
}
|
|
|
|
.locked {
|
|
background-color: lightsalmon;
|
|
}
|
|
|
|
.centered-div {
|
|
text-align: center;
|
|
}
|
|
|
|
.left-div {
|
|
text-align: left;
|
|
} |