mirror of
https://github.com/sigmasternchen/88x31breakout
synced 2025-03-16 00:19:05 +00:00
22 lines
No EOL
380 B
CSS
22 lines
No EOL
380 B
CSS
|
|
#game {
|
|
width: calc((88px + 1px) * 11 + 1px);
|
|
height: 500px;
|
|
background-color: grey;
|
|
position: relative;
|
|
}
|
|
|
|
.banner {
|
|
margin: 1px;
|
|
position: absolute;
|
|
}
|
|
|
|
.paddle {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
height: 10px;
|
|
transform: translate(-50%, 0);
|
|
background-color: #333;
|
|
border-top-left-radius: 50%;
|
|
border-top-right-radius: 50%;
|
|
} |