css erstellt

This commit is contained in:
pbg2h23akl 2024-06-27 09:29:23 +02:00
parent 8d9eecf7f6
commit 175ec94421

39
css/layout.css Normal file
View File

@ -0,0 +1,39 @@
*{
color: white;
font-size: 30px;
}
#spielRaum{
width: 1000px;
height: 500px;
margin: 0px;
background-color: yellow;
position: relative;
}
body{
height: 100%;
margin: 0px;
}
#spielFigur1{
width: 100px;
height: 200px;
background-color: blueviolet;
position: absolute;
bottom: 40px;
left: 200px;
}
#spielFigur2{
width: 200px;
height: 90px;
background-color: aqua;
position: absolute;
top: 80px;
left: 20px;
}
#spielFigur3{
width: 220px;
height: 200px;
background-color: red;
position: absolute;
bottom: 30px;
right: 40px;
}