Initial attempt and commit

This commit is contained in:
Steven Carpenter 2024-08-15 12:28:24 -04:00
commit 9120e1dc5f
5 changed files with 146 additions and 0 deletions

22
css/style.css Normal file
View file

@ -0,0 +1,22 @@
#board {
border: 0.2rem solid #000;
width: min-content;
}
#board > div {
display: flex;
}
#board > div > div {
width: 2rem;
height: 2rem;
}
#board > div:nth-child(2n) > div:nth-child(2n+1),
#board > div:nth-child(2n+1) > div:nth-child(2n) {
background-color: #000;
}
#board > div > div.highlighted {
background-color: red !important;
}