130 lines
2.1 KiB
CSS
130 lines
2.1 KiB
CSS
.board-outer {
|
|
display: grid;
|
|
grid-template-columns: 560px 500px;
|
|
grid-template-rows: 480px 160px;
|
|
grid-template-areas:
|
|
"board table"
|
|
"state action";
|
|
width: 1060px;
|
|
border: 5px solid black;
|
|
background-color: blue;
|
|
margin-top: 30px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
.board-inner {
|
|
grid-area: board;
|
|
width: auto;
|
|
height: auto;
|
|
display: grid;
|
|
grid-template-columns: repeat(7, auto [col-start]);
|
|
}
|
|
|
|
.board-inner .field {
|
|
border: 3px solid black;
|
|
border-radius: 100%;
|
|
margin: 10px;
|
|
outline-offset: -7px;
|
|
}
|
|
|
|
.board-action{
|
|
grid-area: action;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.action-button {
|
|
width: 160px;
|
|
height: 60px;
|
|
font-size: larger;
|
|
border: 3px solid black;
|
|
background-color: white;
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
#restart{
|
|
font-size: x-large;
|
|
}
|
|
|
|
.action-button:hover {
|
|
cursor: pointer;
|
|
background-color: lightgray;
|
|
}
|
|
|
|
.board-state{
|
|
grid-area: state;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
}
|
|
|
|
.board-state-line{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.board-state-action{
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.board-state-action .action-button{
|
|
margin: 0%;
|
|
}
|
|
|
|
.board-state-number{
|
|
height: 40px;
|
|
width: 65%;
|
|
border: 3px solid black;
|
|
font-size: medium;
|
|
}
|
|
|
|
.board-state-line .board-action{
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.board-state-line .action-button{
|
|
width: 120px;
|
|
height: 48px;
|
|
}
|
|
|
|
.turns-display{
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
table{
|
|
border-spacing: 10px;
|
|
width: auto;
|
|
grid-area: table;
|
|
margin-left: 10px;
|
|
margin-right: auto;
|
|
}
|
|
|
|
thead{
|
|
font-size: larger;
|
|
}
|
|
|
|
th, td {
|
|
padding:10px;
|
|
width: 100%;
|
|
border: 3px solid black;
|
|
background-color: lightgray;
|
|
text-align: left;
|
|
}
|
|
|
|
table .action-button{
|
|
text-align: left;
|
|
font-size: medium;
|
|
width: auto;
|
|
height: 30px;
|
|
}
|