Minesweeper/view/css/minesweeper.css

23 lines
319 B
CSS
Raw Normal View History

body {
font-family: "Helvetica", sans-serif;
}
td {
width: 30px !important;
height: 30px !important;
text-align: center;
color: black;
border: 1px solid black;
}
.bomb {
background-color: red;
}
.covered {
background-color: darkgray;
}
.uncovered {
background-color: lightgray;
}