2020-05-09 14:45:23 +00:00
|
|
|
.gameState.textualState {
|
2020-07-23 06:48:23 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-rows: auto 1fr;
|
|
|
|
box-sizing: border-box;
|
|
|
|
@include S(padding, 32px);
|
|
|
|
height: 100vh;
|
2020-05-09 14:45:23 +00:00
|
|
|
|
2020-05-17 10:46:51 +00:00
|
|
|
.headerBar {
|
2020-05-09 14:45:23 +00:00
|
|
|
display: flex;
|
|
|
|
|
2020-05-17 10:46:51 +00:00
|
|
|
h1 {
|
2020-07-23 06:48:23 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 1fr;
|
2020-05-18 18:30:03 +00:00
|
|
|
align-items: center;
|
2020-07-23 06:48:23 +00:00
|
|
|
pointer-events: all;
|
2020-05-18 18:30:03 +00:00
|
|
|
cursor: pointer;
|
2020-05-17 10:46:51 +00:00
|
|
|
@include SuperHeading;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #333438;
|
2020-05-18 20:08:33 +00:00
|
|
|
position: relative;
|
2020-05-18 18:30:03 +00:00
|
|
|
@include IncreasedClickArea(10px);
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 10:46:51 +00:00
|
|
|
.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;
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 10:46:51 +00:00
|
|
|
@include S(margin-bottom, 20px);
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 07:14:40 +00:00
|
|
|
> .container {
|
2020-07-23 06:48:23 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
2020-05-19 07:14:40 +00:00
|
|
|
> .content {
|
2020-07-23 06:48:23 +00:00
|
|
|
width: 100%;
|
2020-05-19 07:14:40 +00:00
|
|
|
background: #fff;
|
|
|
|
@include S(border-radius, $globalBorderRadius);
|
|
|
|
@include S(padding, 10px);
|
2020-07-23 06:48:23 +00:00
|
|
|
height: 100%;
|
2020-05-19 07:14:40 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
2020-06-16 23:55:13 +00:00
|
|
|
|
|
|
|
@include DarkThemeOverride {
|
|
|
|
.headerBar {
|
|
|
|
h1 {
|
2020-06-21 18:27:39 +00:00
|
|
|
color: #e2e0db;
|
2020-06-16 23:55:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.backButton {
|
|
|
|
filter: invert(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .container > .content {
|
2020-06-21 18:27:39 +00:00
|
|
|
background: darken($darkModeGameBackground, 3);
|
2020-06-16 23:55:13 +00:00
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|