39 lines
610 B
CSS
39 lines
610 B
CSS
*{
|
|
color: white;
|
|
font-size: 30px;
|
|
}
|
|
#spielRaum{
|
|
width: 1000px;
|
|
height: 1000px;
|
|
margin: 0px;
|
|
background-color: yellow;
|
|
position: relative;
|
|
}
|
|
body{
|
|
height: 100%;
|
|
margin: 0px;
|
|
}
|
|
#tom{
|
|
width: 100px;
|
|
height: 200px;
|
|
background-color: blueviolet;
|
|
position: absolute;
|
|
bottom: 40px;
|
|
left: 200px;
|
|
}
|
|
#fuchs{
|
|
width: 200px;
|
|
height: 90px;
|
|
background-color: aqua;
|
|
position: absolute;
|
|
top: 80px;
|
|
left: 20px;
|
|
}
|
|
#enemy{
|
|
width: 220px;
|
|
height: 200px;
|
|
background-color: red;
|
|
position: absolute;
|
|
bottom: 30px;
|
|
right: 40px;
|
|
} |