2020-05-16 15:57:25 +00:00
|
|
|
#ingame_HUD_SettingsMenu {
|
|
|
|
.timePlayed {
|
|
|
|
position: absolute;
|
|
|
|
@include S(left, 30px);
|
|
|
|
@include S(bottom, 30px);
|
|
|
|
color: #fff;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
strong {
|
|
|
|
text-transform: uppercase;
|
|
|
|
@include PlainText;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
@include Heading;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
display: grid;
|
|
|
|
grid-auto-flow: row;
|
|
|
|
@include S(grid-gap, 10px);
|
|
|
|
background: rgba(0, 10, 20, 0.1);
|
|
|
|
@include S(padding, 20px);
|
2020-05-17 11:24:47 +00:00
|
|
|
@include S(border-radius, $globalBorderRadius);
|
2020-05-16 15:57:25 +00:00
|
|
|
}
|
|
|
|
}
|