14 lines
208 B
CSS
14 lines
208 B
CSS
|
.board {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(20, 20px);
|
||
|
grid-gap: 1px;
|
||
|
}
|
||
|
.cell {
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
background-color: white;
|
||
|
}
|
||
|
.alive {
|
||
|
background-color: black;
|
||
|
}
|