No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
margin: 1rem auto; | margin: 1rem auto; | ||
background: black; | background: black; | ||
border: 2px solid gray; | |||
} | } | ||
Revision as of 02:58, 19 October 2022
.navicust-grid {
display: grid;
grid-template-columns: repeat(7, 30px);
grid-template-rows: repeat(7, 30px);
grid-column-gap: 2px;
grid-row-gap: 2px;
margin: 1rem auto;
background: black;
border: 2px solid gray;
}
.navicust-grid__cell {
background-color: gray;
color: transparent;
text-align: center;
}
.navicust-grid__cell-filled {
background-color: red;
}