Add square numbers and bug fixes

This commit is contained in:
jheaps
2025-10-17 12:10:08 -06:00
parent 93bdb3518a
commit 7c77cd0e52
5 changed files with 82 additions and 6 deletions
+32 -1
View File
@@ -1,5 +1,10 @@
#chessBoard {
#boardContainer {
position: relative;
width: fit-content;
margin: 2vw auto;
}
#chessBoard {
width: 60vw;
height: 60vw;
display: grid;
@@ -158,4 +163,30 @@
width: 50px;
height: 50px;
pointer-events: none; /* ensures img doesn't steal the click */
}
.chessSquare .coordinate-label {
position: absolute;
font-size: 1.2vw;
font-weight: bold;
pointer-events: none;
user-select: none;
}
.chessSquare.light .coordinate-label {
color: #656770;
}
.chessSquare.dark .coordinate-label {
color: #ccc;
}
.chessSquare .row-label {
top: 2px;
left: 4px;
}
.chessSquare .col-label {
bottom: 2px;
right: 4px;
}