File size: 562 Bytes
d766458 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | .grid-item {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
background-color: lightgray;
border: 2px solid black;
box-sizing: border-box;
color: black;
}
.text {
height: 25px;
width: 50px;
border: 2px solid lightgray;
box-sizing: border-box;
}
.pos {
display: flex;
align-items: center;
justify-content: center;
}
.button {
height: 25px;
border: 2px solid black;
margin: 2px 0px 2px 0px;
box-sizing: border-box;
color: black;
} |