This commit is contained in:
2025-11-14 17:30:19 +01:00
parent 5b19b729c4
commit 9ff15dd9f7
26 changed files with 1044 additions and 0 deletions

24
ora9/sudoku/sudoku.css Normal file
View File

@@ -0,0 +1,24 @@
body {
display: flex;
height: 100vh;
margin: 0;
}
table.sudoku {
border: medium solid black;
border-collapse: collapse;
margin: auto;
}
table.sudoku td {
border: thin solid lightgray;
height: 3rem;
width: 3rem;
vertical-align: middle;
text-align: center;
}
table.sudoku td:nth-child(3n) {
border-right: medium solid black;
}
table.sudoku tr:nth-child(3n) {
border-bottom: medium solid black;
}/*# sourceMappingURL=sudoku.css.map */