Finished the scorecard
All checks were successful
/ publish (push) Successful in 50s

This commit is contained in:
Leon Mika 2025-12-21 10:56:49 +11:00
parent 1f8394f23b
commit c5420c97eb
6 changed files with 154 additions and 40 deletions

View file

@ -1,3 +1,7 @@
.container {
margin-block-end: 20px;
}
.hidden {
display: none;
}
@ -18,4 +22,41 @@
gap: 10px;
justify-content: space-between;
align-items: center;
margin-block-end: 12px;
}
@media (max-width: 600px) {
.btns {
flex-direction: column;
gap: 20px;
}
.btns :nth-child(1) {
align-self: start;
}
.btns :nth-child(2) {
align-self: end;
}
}
.winner {
color: #9B2318;
font-weight: bold;
}
th {
background: #E2E2E2;
}
@media (prefers-color-scheme: dark) {
th {
background: #474747;
}
.winner {
color: #F06048;
font-weight: bold;
}
}