mirror of
https://github.com/tobspr/shapez.io.git
synced 2024-10-27 20:34:29 +00:00
28 lines
616 B
SCSS
28 lines
616 B
SCSS
|
#state_MainMenuState {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
|
||
|
background: uiResource("menu_bg.noinline.jpg") center center / cover no-repeat !important;
|
||
|
|
||
|
.logo {
|
||
|
img {
|
||
|
@include S(width, 350px);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.mainContainer {
|
||
|
@include S(margin-top, 40px);
|
||
|
display: flex;
|
||
|
|
||
|
.playButton {
|
||
|
@include SuperHeading;
|
||
|
@include S(width, 150px);
|
||
|
@include S(padding, 15px, 20px);
|
||
|
color: #fff;
|
||
|
background-color: $accentColorDark;
|
||
|
}
|
||
|
}
|
||
|
}
|