2020-05-09 14:45:23 +00:00
|
|
|
#state_MainMenuState {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
background: uiResource("menu_bg.noinline.jpg") center center / cover no-repeat !important;
|
|
|
|
|
|
|
|
.logo {
|
2020-05-10 17:20:32 +00:00
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-05-09 14:45:23 +00:00
|
|
|
img {
|
|
|
|
@include S(width, 350px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainContainer {
|
|
|
|
@include S(margin-top, 40px);
|
|
|
|
display: flex;
|
2020-05-10 17:20:32 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: center;
|
2020-05-09 14:45:23 +00:00
|
|
|
.playButton {
|
|
|
|
@include SuperHeading;
|
|
|
|
@include S(width, 150px);
|
|
|
|
@include S(padding, 15px, 20px);
|
|
|
|
color: #fff;
|
|
|
|
background-color: $accentColorDark;
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 17:20:32 +00:00
|
|
|
|
|
|
|
.footer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
@include S(padding, 15px);
|
|
|
|
> a {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
background: #eee;
|
|
|
|
@include S(padding, 5px);
|
|
|
|
@include S(border-radius, 4px);
|
|
|
|
@include S(margin-left, 10px);
|
|
|
|
@include SuperSmallText();
|
|
|
|
border: #{D(1px)} solid #aaa;
|
|
|
|
border-bottom: #{D(3px)} solid #aaa;
|
|
|
|
box-shadow: #{D(1px)} #{D(2px)} #{D(3px)} 0 rgba(0, 10, 20, 0.1);
|
|
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #999da3;
|
|
|
|
|
|
|
|
transition: background-color 0.12s ease-in-out;
|
|
|
|
pointer-events: all;
|
|
|
|
@include S(width, 50px);
|
|
|
|
@include S(height, 50px);
|
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
|
|
background-color: #fafafa;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thirdpartyLogo {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: center center / 85% no-repeat;
|
|
|
|
&.githubLogo {
|
|
|
|
background-image: uiResource("main_menu/github.png");
|
|
|
|
}
|
|
|
|
&.discordLogo {
|
|
|
|
background-image: uiResource("main_menu/discord.png");
|
|
|
|
background-size: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|