Minesweeper/view/css/minesweeper.css

37 lines
631 B
CSS
Raw Normal View History

body {
font-family: "Helvetica", sans-serif;
}
td {
width: 20px !important;
height: 20px !important;
text-align: center;
color: black;
border: 1px solid black;
font-weight: bold;
}
.bomb {
background-color: red;
}
2021-01-30 13:21:50 +00:00
.flagged {
background-color: yellow;
}
.covered {
background-color: darkgray;
}
.uncovered {
background-color: lightgray;
}
.text-blue { color: blue; }
.text-green { color: green; }
.text-red { color: red; }
.text-purple { color: purple; }
.text-maroon { color: maroon; }
.text-turquoise { color: turquoise; }
.text-black { color: black; }
.text-gray { color: gray; }