AL-2020/Archiwum/frontend/styles.css

104 lines
1.8 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;
}
#buttonContainer{
width: 100%;
height: 150px;
display: flex;
align-items: center;
}
#testButton{
height:100px;
width:200px;
margin: -20px -50px;
position:relative;
top:30px;
left:48%;
}