battleship/demo/public/bs.css

36 lines
521 B
CSS
Raw Permalink Normal View History

2022-09-14 09:34:39 +00:00
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#sea {
display: flex;
}
.player-grid {
width: 430px;
height: 430px;
padding: 5px;
margin: 5px;
background-color: darkslategray;
display: flex;
flex-wrap: wrap;
}
.player-grid .cell {
width: 40px;
height: 40px;
margin: 1px;
background-color: darkcyan;
}