log101-dot-dev/src/styles/gol.css

14 lines
208 B
CSS
Raw Normal View History

2024-05-01 06:12:27 +00:00
.board {
display: grid;
grid-template-columns: repeat(20, 20px);
grid-gap: 1px;
}
.cell {
width: 20px;
height: 20px;
background-color: white;
}
.alive {
background-color: black;
}