23 lines
349 B
CSS
23 lines
349 B
CSS
.wonder-game {
|
|
background-image: url(world.webp);
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.wonder-lobby {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
}
|
|
|
|
.wonder-distant {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.wonder-neighbors {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.wonder-center {
|
|
align-self: center;
|
|
}
|