Add complete multiplayer system with real-time gameplay, challenge system, and 50x50 board option

This commit is contained in:
2025-12-13 14:59:44 +11:00
parent 57f350274e
commit 9465409b2f
1532 changed files with 225509 additions and 19 deletions

View File

@@ -315,6 +315,11 @@ body {
grid-template-rows: repeat(25, 24px);
}
.board[data-size="50"] {
grid-template-columns: repeat(50, 16px);
grid-template-rows: repeat(50, 16px);
}
/* Cell */
.cell {
background: transparent;
@@ -539,6 +544,11 @@ body {
grid-template-columns: repeat(25, 22px);
grid-template-rows: repeat(25, 22px);
}
.board[data-size="50"] {
grid-template-columns: repeat(50, 15px);
grid-template-rows: repeat(50, 15px);
}
}
@media (max-width: 768px) {
@@ -589,6 +599,11 @@ body {
grid-template-rows: repeat(25, 20px);
}
.board[data-size="50"] {
grid-template-columns: repeat(50, 14px);
grid-template-rows: repeat(50, 14px);
}
.victory-content {
padding: 2rem 2.5rem;
}