You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tobspr_shapez.io/src/css/textual_game_state.scss

65 lines
1.6 KiB

4 years ago
.gameState.textualState {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
$padding: 15px;
4 years ago
.headerBar,
> .container .content {
4 years ago
@include S(width, 500px);
4 years ago
}
4 years ago
.headerBar {
4 years ago
display: flex;
4 years ago
align-items: center;
justify-content: flex-start;
4 years ago
4 years ago
h1 {
display: flex;
pointer-events: all;
align-items: center;
cursor: pointer;
4 years ago
@include SuperHeading;
text-transform: uppercase;
color: #333438;
position: relative;
@include IncreasedClickArea(10px);
4 years ago
}
4 years ago
.backButton {
@include S(width, 30px);
@include S(height, 30px);
@include S(margin-right, 10px);
@include S(margin-left, -5px);
background: uiResource("icons/state_back_button.png") center center / 70% no-repeat;
4 years ago
}
4 years ago
@include S(margin-bottom, 20px);
4 years ago
}
> .container {
> .content {
background: #fff;
@include S(border-radius, $globalBorderRadius);
@include S(padding, 10px);
height: calc(80vh - #{D(60px)});
overflow-y: auto;
box-sizing: border-box;
pointer-events: all;
a {
color: $colorBlueBright;
}
.categoryLabel {
display: block;
text-transform: uppercase;
@include S(margin-top, 15px);
@include S(margin-bottom, 15px);
@include Heading;
}
}
4 years ago
}
}