ora 8 9
This commit is contained in:
24
ora9/sudoku/sudoku.css
Normal file
24
ora9/sudoku/sudoku.css
Normal 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 */
|
||||
Reference in New Issue
Block a user