forked from s444420/AL-2020
86 lines
1.5 KiB
CSS
86 lines
1.5 KiB
CSS
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.container{
|
|
width: 100%;
|
|
height: 100%;
|
|
min-width: 1920px;
|
|
min-height: 1080px;
|
|
position: absolute;
|
|
background-color: rgb(37, 36, 36);
|
|
}
|
|
|
|
#board{
|
|
width: 700px;
|
|
height: 700px;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background-color: white;
|
|
}
|
|
|
|
.row{
|
|
width: 100%;
|
|
height: 70px;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.field{
|
|
height: 70px;
|
|
width: 70px;
|
|
background-color: white;
|
|
background-image: none;
|
|
background-size: cover;
|
|
border-color: black;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
color: gray;
|
|
font-size: 30px;
|
|
font-weight: 500;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.regal2{
|
|
height: 70px;
|
|
width: 70px;
|
|
background-color: #000080;
|
|
background-image: none;
|
|
background-size: cover;
|
|
border-color: black;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
color: gray;
|
|
font-size: 30px;
|
|
font-weight: 500;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.regal{
|
|
height: 50px;
|
|
width: 50px;
|
|
color: lightyellow;
|
|
background-color: darkslategrey;
|
|
border-color: black;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
font-size: 30px;
|
|
font-weight: 500;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|