mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-21 20:46:14 -04:00
29 lines
No EOL
361 B
CSS
29 lines
No EOL
361 B
CSS
|
|
body {
|
|
background: black;
|
|
color: white;
|
|
}
|
|
|
|
#palette button.active {
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
.level-bricks-preview {
|
|
position: relative;
|
|
}
|
|
|
|
#palette {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
width: 80px;
|
|
bottom: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
#levels {
|
|
display: flex;
|
|
gap: 40px;
|
|
flex-wrap: wrap;
|
|
margin-right: 80px;
|
|
} |