You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
874 B

.game-board-component .grid-container .grid-row {
display: flex;
}
/* Styles for the various grid cell states. */
.game-board-cell-component {
width: 40px;
height: 40px;
border: 1px solid grey;
}
.game-board-cell-component.available {
background: #eeeeee;
}
.game-board-cell-component.available:hover {
background: #cccccc;
}
.game-board-cell-component.disabled {
background: #cccccc;
}
.game-board-cell-component.disabled:hover {
background: #bbbbbb;
}
.game-board-cell-component.ship {
background: #414141;
}
.game-board-cell-component.damaged {
background: #dd0000;
}
.game-board-cell-component.sunk {
background: #000000;
}
.game-board-cell-component.missed {
background: #eeeeee;
}
.game-board-component {
display: flex;
}
.column_labels {
padding: 20px;
flex-direction: column-reverse;
}