mirror of
https://github.com/tjsga/scavenger-hunt-2022.git
synced 2025-04-16 01:40:16 -04:00
34 lines
384 B
CSS
34 lines
384 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;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
} |