dasdwadad

This commit is contained in:
pbg2h23akl
2024-07-04 11:15:55 +02:00
parent f211a272c9
commit 40e54fae40
4 changed files with 33 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
*{
color: white;
color: black;
font-size: 30px;
}
#spielRaum{
@@ -29,4 +29,32 @@ body{
}
#enemy{
position: fixed;
}
}
.flexbox{
display: flex;
flex-direction: row;
}
#rechnungen{
padding: 25px;
justify-content: space-between;
}
#rechnung1, #rechnung2 {
width: 20%;
margin: 0 10px;
padding: 20px;
text-align: center;
font-size: 1.5em;
z-index: 10;
position: relative;
display: inline-block;
}
#rechnung1 img, #rechnung2 img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: -1;
width: 100%;
height: 100%;
object-fit: cover;
}