Initial Sudoku display tool
This commit is contained in:
parent
0ce03a052b
commit
100a4f5922
5 changed files with 275 additions and 0 deletions
39
public/css/sudoku.css
Normal file
39
public/css/sudoku.css
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
body {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.box {
|
||||
border: 2px solid black;
|
||||
width: 210px;
|
||||
height: 210px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.cell {
|
||||
border: 1px solid black;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
float:left;
|
||||
box-sizing: border-box;
|
||||
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.cell > span {
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
letter-spacing: 11px;
|
||||
word-wrap: anywhere;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue