update checkerboard project

This commit is contained in:
Tutur33
2023-12-01 20:22:09 +01:00
parent aab2d01987
commit f92afbbf0c
5 changed files with 85 additions and 81 deletions
+38
View File
@@ -0,0 +1,38 @@
body {
font-family: Arial, sans-serif;
text-align: center;
align-items: center;
height: 100vh;
margin: 0;
}
form {
margin-bottom: 20px;
}
form input[type="number"],
form button {
margin: 5px;
padding: 8px;
border-radius: 5px;
border: 1px solid #ccc;
}
table {
border-collapse: collapse;
margin: 0 auto;
}
td {
width: 50px;
height: 50px;
border: 1px solid #ccc;
}
.n {
background-color: #000;
}
.b {
background-color: #fff;
}