mirror of
https://github.com/tjsga/scavenger-hunt-2021.git
synced 2025-04-09 22:10:18 -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;
|
|
} |