52 lines
851 B
CSS
52 lines
851 B
CSS
body {
|
|
text-align: center;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
color: black;
|
|
}
|
|
|
|
.board {
|
|
width: 700px;
|
|
height: 600px;
|
|
display: grid;
|
|
grid-template-columns: repeat(7, auto [col-start]);
|
|
margin: auto;
|
|
border: 5px solid black;
|
|
background-color: blue;
|
|
}
|
|
|
|
.board .field {
|
|
border: 3px solid black;
|
|
border-radius: 100%;
|
|
margin: 10px;
|
|
}
|
|
|
|
.restart {
|
|
width: 100px;
|
|
height: 60px;
|
|
font-size: xx-large;
|
|
border: 3px solid black;
|
|
background-color: white;
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.gamemode-div {
|
|
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 300px;
|
|
height: 202px;
|
|
border: 5px solid black;
|
|
|
|
background-color: blue;
|
|
|
|
}
|
|
|
|
.gamemode-div .gamemode-button {
|
|
margin-top: 34px;
|
|
border: 3px solid black;
|
|
width: 50%;
|
|
height: 50px;
|
|
font-size: larger;
|
|
|
|
} |