mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-26 15:06:16 -04:00
wip
This commit is contained in:
parent
0759981a55
commit
d848ad511e
24 changed files with 7195 additions and 251 deletions
52
dist/levels_editor.de5e7f9b.css
vendored
Normal file
52
dist/levels_editor.de5e7f9b.css
vendored
Normal file
|
@ -0,0 +1,52 @@
|
|||
body {
|
||||
color: #fff;
|
||||
background: #000;
|
||||
}
|
||||
|
||||
#palette {
|
||||
width: 80px;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#palette button.active {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
||||
#levels {
|
||||
flex-wrap: wrap;
|
||||
align-items: flex-start;
|
||||
gap: 40px;
|
||||
margin-right: 80px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#levels .level-bricks-preview {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#levels > div {
|
||||
grid-template-columns: auto auto;
|
||||
grid-template-areas: ". name"
|
||||
"buttons bricks";
|
||||
display: grid;
|
||||
}
|
||||
|
||||
#levels > div > :first-child {
|
||||
grid-area: name;
|
||||
}
|
||||
|
||||
#levels > div > div:nth-child(2) {
|
||||
flex-direction: column;
|
||||
grid-area: buttons;
|
||||
align-items: flex-end;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#levels > div > div:nth-child(3) {
|
||||
grid-area: bricks;
|
||||
}
|
||||
/*# sourceMappingURL=levels_editor.de5e7f9b.css.map */
|
Loading…
Add table
Add a link
Reference in a new issue