Minesweeper/view/css/minesweeper.css

43 lines
840 B
CSS

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;
}
.bg-red { background-color: red; }
.bg-yellow { background-color: yellow; }
.bg-dark { background-color: darkgray; }
.bg-light { background-color: lightgray; }
.bg-green { background-color: lime; }
.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; }
.row {
padding-top: 10px;
}
#gameCont {
float: left;
margin-left: 17px;
}
#infoCont {
float: left;
margin-left: 20px;
font-size: 1.2em;
max-width: 350px;
}