Having some trouble aligning squares on my CSS Sudoku style board. Can anyone help me figure out what I'm missing?
Check out the code here on CODEPEN
Here's a snippet of the HTML:
<div class="middle-box">
<div class="sudoku">
<div class="square">
<input class="tile normal edge-left edge-top">
<input class="tile normal edge-top">
<input class="tile normal edge-top">
<input class="tile normal edge-left">
<input class="tile normal">
<input class="tile normal">
<input class="tile normal edge-left">
<input class="tile normal">
<input class="tile normal">
</div>
And here's some of the CSS code:
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: #ecf0f1;
background-size: cover;
font-family: "Slabo 27px", serif; }
a {
text-decoration: none;
transition: all 0.3s; }
.sudoku {
width: 460px;
height: 460px;
background: #2c3e50;
border: 20px solid #2c3e50;
position: absolute;
left: 0;
top: 0; }
....