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

21 lines
314 B
CSS
Raw Normal View History

2024-05-01 06:12:27 +00:00
.board {
display: grid;
2024-05-01 07:28:22 +00:00
grid-template-columns: repeat(10, 5px);
row-gap: 1px;
column-gap: 1px;
2024-05-01 06:12:27 +00:00
}
.cell {
2024-05-01 07:28:22 +00:00
width: 5px;
height: 5px;
2024-05-01 06:12:27 +00:00
background-color: white;
}
.alive {
background-color: black;
}
2024-05-01 07:28:22 +00:00
#title-and-gol {
display: flex;
flex-direction: row;
align-items: center;
}