2026-04-14 17:41:39 +02:00

60 lines
1.2 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: rgba(0, 0, 0, 0.0);
display: none;
}
#app {
position: absolute;
top: 50%;
left: 80%;
transform: translate(-50%, -50%);
width: 230px;
border: 1px solid #080808;
background-color: #919191;
border-radius: 5px;
padding: 20px;
box-sizing: border-box;
display: grid;
grid-template-columns: repeat(1, 1fr);
grid-gap: 5px;
}
.floor-button {
display: inline-block;
height: 75px;
/* line-height: 75px; */
border: 4px solid #3c3c3c;
background-color: #b9b9b9;
margin: 5px;
border-radius: 4px;
cursor: pointer;
text-align: center;
transition: background-color 0.3s;
width: calc(41%);
font-family: 'Roboto', sans-serif;
font-weight: 900;
}
.floor-button:hover {
border: 4px solid #ff2323;
}
.floor-button:active {
background-color: #b1b1b1;
}
.headline {
font-size: 24px;
font-weight: bold;
color: white;
text-align: center;
margin-bottom: 20px;
}