mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-26 23:16:15 -04:00
Automatic deploy 28999417
This commit is contained in:
parent
1c6e099735
commit
9fe25538b5
8 changed files with 2513 additions and 263 deletions
|
@ -24,6 +24,26 @@ body {
|
|||
#levels {
|
||||
display: flex;
|
||||
gap: 40px;
|
||||
align-items: flex-start;
|
||||
flex-wrap: wrap;
|
||||
margin-right: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#levels>div {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
grid-template-areas: ". name" "buttons bricks";
|
||||
}
|
||||
#levels>div>*:nth-child(1) {
|
||||
grid-area: name;
|
||||
}
|
||||
#levels>div>div:nth-child(2) {
|
||||
grid-area: buttons;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
}
|
||||
#levels>div>div:nth-child(3) {
|
||||
grid-area: bricks;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue