AL-2020/frontend/styles.css

86 lines
1.5 KiB
CSS
Raw Normal View History

body {
padding: 0;
margin: 0;
}
2020-04-04 22:44:19 +02:00
.container{
width: 100%;
height: 100%;
min-width: 1920px;
min-height: 1080px;
2020-04-04 22:44:19 +02:00
position: absolute;
background-color: rgb(37, 36, 36);
2020-04-04 22:44:19 +02:00
}
#board{
width: 700px;
height: 700px;
2020-04-04 22:44:19 +02:00
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: white;
2020-04-04 22:44:19 +02:00
}
.row{
width: 100%;
height: 70px;
2020-04-04 22:44:19 +02:00
display: flex;
flex-direction: row;
}
.field{
height: 70px;
width: 70px;
background-color: white;
background-image: none;
background-size: cover;
2020-04-04 22:44:19 +02:00
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;
}
2020-04-28 12:03:40 +02:00
.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;
}
2020-04-04 22:44:19 +02:00
.regal{
height: 50px;
width: 50px;
2020-04-04 22:44:19 +02:00
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;
}