Add /games page and add checkboxes for subscribing to games

This commit is contained in:
2024-07-04 05:36:30 +02:00
parent fb1f7c4983
commit 474e2b5bff
8 changed files with 72 additions and 1 deletions

View File

@ -60,3 +60,16 @@ a:hover {
.toc {
top: 1rem;
}
/* Checkboxes for subscribing to notifications */
/* Checked */
.form-check-input:checked {
background-color: #af1548;
border-color: #111111;
}
/* Unchecked */
.form-check-input {
background-color: #0c0c0c;
border-color: #111111;
}