mirror of
https://github.com/sigmasternchen/88x31breakout
synced 2025-03-15 07:59:00 +00:00
26 lines
No EOL
461 B
CSS
26 lines
No EOL
461 B
CSS
#game {
|
|
position: relative;
|
|
border: solid 1px black;
|
|
}
|
|
|
|
.banner {
|
|
margin: 1px;
|
|
position: absolute;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.paddle {
|
|
position: absolute;
|
|
transform: translate(-50%, 0);
|
|
background-color: #333;
|
|
border-top-left-radius: 50%;
|
|
border-top-right-radius: 50%;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.ball {
|
|
position: absolute;
|
|
transform: translate(-50%, -50%);
|
|
background-color: black;
|
|
border-radius: 50%;
|
|
} |