2020-05-09 14:45:23 +00:00
|
|
|
// Common classes and style
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2024-08-13 14:46:10 +00:00
|
|
|
touch-action: pan-x pan-y;
|
2020-05-09 14:45:23 +00:00
|
|
|
pointer-events: none;
|
|
|
|
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
overscroll-behavior: contain;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
font-family: $mainFont;
|
|
|
|
|
font-synthesis: none;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
|
background: $mainBgColor;
|
2020-06-16 23:55:13 +00:00
|
|
|
@include DarkThemeOverride {
|
2020-06-21 18:27:39 +00:00
|
|
|
background: $darkModeGameBackground;
|
2020-06-16 23:55:13 +00:00
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
color: #555;
|
|
|
|
|
user-select: none;
|
2024-08-13 14:46:10 +00:00
|
|
|
background: inherit;
|
2020-05-09 14:45:23 +00:00
|
|
|
word-wrap: break-word;
|
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
@include Text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
2020-08-31 13:46:21 +00:00
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
b,
|
|
|
|
|
strong {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
2020-08-31 13:46:21 +00:00
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
u,
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2020-08-31 13:46:21 +00:00
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
input,
|
|
|
|
|
textarea,
|
|
|
|
|
select {
|
|
|
|
|
font-size: inherit;
|
|
|
|
|
line-height: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
pointer-events: all;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
|
|
|
|
@include TextShadow3D;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.styledButton {
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
@include S(padding, 3px, 10px);
|
|
|
|
|
@include ButtonText;
|
2020-05-17 11:24:47 +00:00
|
|
|
border: 0;
|
|
|
|
|
background: $colorBlueBright;
|
|
|
|
|
color: #fff;
|
2022-06-02 17:44:50 +00:00
|
|
|
@include S(border-radius, 0.8 * $globalBorderRadius);
|
2024-08-13 14:46:10 +00:00
|
|
|
transition: opacity 0.12s ease-in-out;
|
|
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
.keybinding {
|
|
|
|
|
@include S(bottom, -2.5px);
|
|
|
|
|
@include S(right, -2px);
|
|
|
|
|
}
|
2024-08-13 14:46:10 +00:00
|
|
|
|
2020-05-17 11:24:47 +00:00
|
|
|
&:hover {
|
|
|
|
|
opacity: 0.9;
|
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::selection {
|
2020-08-31 13:46:21 +00:00
|
|
|
background: $colorGreenBright;
|
|
|
|
|
/* WebKit/Blink Browsers */
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
2020-08-31 13:46:21 +00:00
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
input[type="text"],
|
|
|
|
|
input[type="email"] {
|
|
|
|
|
@include S(padding, 11px, 12px);
|
|
|
|
|
@include S(margin, 10px, 0);
|
|
|
|
|
border: 0;
|
|
|
|
|
display: block;
|
|
|
|
|
text-align: left;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background: lighten($mainBgColor, 8);
|
|
|
|
|
color: #eee;
|
|
|
|
|
text-align: left;
|
|
|
|
|
user-select: text !important;
|
|
|
|
|
pointer-events: all !important;
|
|
|
|
|
@include Text;
|
2020-05-17 11:24:47 +00:00
|
|
|
@include S(border-radius, $globalBorderRadius);
|
2020-05-09 14:45:23 +00:00
|
|
|
&::placeholder {
|
|
|
|
|
color: #fff;
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
2020-05-28 17:40:48 +00:00
|
|
|
transition: background-color 0.1s ease-in-out !important;
|
2020-05-09 14:45:23 +00:00
|
|
|
@include TextShadow3D(#fff);
|
|
|
|
|
@include BoxShadow3D(lighten($mainBgColor, 30));
|
|
|
|
|
&:focus {
|
|
|
|
|
@include BoxShadow3D(lighten($mainBgColor, 35));
|
|
|
|
|
}
|
|
|
|
|
&.errored {
|
|
|
|
|
@include BoxShadow3D(mix(lighten($mainBgColor, 30), #f77, 25%));
|
|
|
|
|
&:focus {
|
|
|
|
|
@include BoxShadow3D(mix(lighten($mainBgColor, 50), #f77, 25%));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&.input-token {
|
|
|
|
|
@include SuperHeading;
|
|
|
|
|
text-align: center;
|
|
|
|
|
@include S(letter-spacing, 30px);
|
|
|
|
|
@include S(padding-left, 30px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: $themeColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button,
|
|
|
|
|
input,
|
|
|
|
|
select,
|
|
|
|
|
textarea,
|
|
|
|
|
a {
|
|
|
|
|
&:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
font-weight: inherit;
|
|
|
|
|
pointer-events: all;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
user-select: text;
|
|
|
|
|
pointer-events: all;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
canvas {
|
|
|
|
|
pointer-events: all;
|
|
|
|
|
transform: translateZ(0);
|
|
|
|
|
backface-visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Scrollbar
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
@include S(width, 6px);
|
|
|
|
|
@include S(height, 6px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: rgba(#000, 0.05);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2020-05-17 11:24:47 +00:00
|
|
|
// border-radius: 4px;
|
2020-07-21 08:14:06 +00:00
|
|
|
@include S(border-radius, $globalBorderRadius);
|
2020-05-09 14:45:23 +00:00
|
|
|
background: #cdd0d4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: #d8dce0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-13 06:40:56 +00:00
|
|
|
.pressed:not(.noPressEffect) {
|
2020-07-27 12:25:22 +00:00
|
|
|
transform: scale(0.98) !important;
|
2020-05-09 14:45:23 +00:00
|
|
|
animation: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-13 06:40:56 +00:00
|
|
|
.pressedSmallElement:not(.noPressEffect) {
|
2020-05-09 14:45:23 +00:00
|
|
|
transform: scale(0.88) !important;
|
|
|
|
|
animation: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spritesheetImage {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inlineTextIconSprite {
|
|
|
|
|
position: relative;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badged {
|
|
|
|
|
color: color($purple, 300);
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-13 14:46:10 +00:00
|
|
|
.prefab_LoadingTextWithAnim {
|
2020-05-09 14:45:23 +00:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
@include Text;
|
|
|
|
|
@include TextShadow3D;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
z-index: 20;
|
|
|
|
|
color: #393747;
|
|
|
|
|
&::after {
|
|
|
|
|
content: " ";
|
2020-09-19 12:27:25 +00:00
|
|
|
@include S(width, 35px);
|
|
|
|
|
@include S(height, 35px);
|
2020-05-09 14:45:23 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
2020-09-23 09:14:35 +00:00
|
|
|
|
|
|
|
|
& {
|
|
|
|
|
background: uiResource("loading.svg") center center / contain no-repeat;
|
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
2020-09-19 12:27:25 +00:00
|
|
|
|
|
|
|
|
@include InlineAnimation(1.5s ease-in-out infinite) {
|
|
|
|
|
50% {
|
|
|
|
|
transform: scale(1.2) rotate(160deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-17 01:39:08 +00:00
|
|
|
@include DarkThemeOverride {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
2022-06-18 12:43:26 +00:00
|
|
|
.prefab_LoadingProgressIndicator {
|
|
|
|
|
@include PlainText;
|
|
|
|
|
@include S(margin-top, 20px);
|
|
|
|
|
width: 100%;
|
|
|
|
|
color: #336c9f;
|
|
|
|
|
@include S(height, 20px);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
.gameState.prefab_LoadingState {
|
|
|
|
|
text-align: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
.loadingImage {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-grow: 1;
|
2020-09-19 12:27:25 +00:00
|
|
|
|
|
|
|
|
@include InlineAnimation(1.5s ease-in-out infinite) {
|
|
|
|
|
50% {
|
|
|
|
|
transform: scale(1.2) rotate(160deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-09-23 09:14:35 +00:00
|
|
|
|
|
|
|
|
& {
|
|
|
|
|
background: uiResource("loading.svg") center center / #{D(40px)} no-repeat;
|
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
2020-09-19 10:21:32 +00:00
|
|
|
|
2020-09-19 16:57:14 +00:00
|
|
|
.prefab_GameHint {
|
2020-09-19 10:21:32 +00:00
|
|
|
position: absolute;
|
|
|
|
|
@include S(left, 20px);
|
|
|
|
|
@include S(right, 20px);
|
|
|
|
|
@include S(bottom, 60px);
|
|
|
|
|
@include Text;
|
|
|
|
|
color: #666;
|
2020-09-19 12:27:25 +00:00
|
|
|
|
|
|
|
|
@include DarkThemeOverride() {
|
|
|
|
|
color: lighten($darkModeGameBackground, 50);
|
|
|
|
|
}
|
2020-09-19 10:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
.loadingStatus {
|
|
|
|
|
position: absolute;
|
|
|
|
|
@include S(left, 20px);
|
|
|
|
|
@include S(right, 20px);
|
|
|
|
|
@include S(bottom, 30px);
|
|
|
|
|
@include Text;
|
2020-09-19 10:21:32 +00:00
|
|
|
@include PlainText;
|
|
|
|
|
color: #aaa;
|
2020-09-19 12:27:25 +00:00
|
|
|
|
|
|
|
|
@include DarkThemeOverride {
|
|
|
|
|
color: lighten($darkModeGameBackground, 20);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
> .bar {
|
|
|
|
|
display: none;
|
|
|
|
|
@include S(margin-top, 15px);
|
|
|
|
|
width: 80vw;
|
|
|
|
|
@include BoxShadow3D(lighten($mainBgColor, 10), $size: 1px);
|
|
|
|
|
position: relative;
|
|
|
|
|
@include TextShadow3D(#fff);
|
|
|
|
|
height: 2px;
|
|
|
|
|
.inner {
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
@include BoxShadow3D($themeColor, $size: 1px);
|
2020-05-17 11:24:47 +00:00
|
|
|
@include S(border-radius, $globalBorderRadius);
|
2020-05-09 14:45:23 +00:00
|
|
|
transform-origin: 0% 50%;
|
|
|
|
|
@include InlineAnimation(1.3s ease-in-out infinite) {
|
|
|
|
|
0% {
|
|
|
|
|
background-color: darken($themeColor, 5);
|
|
|
|
|
transform: none;
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
background-color: lighten($themeColor, 10);
|
|
|
|
|
transform: scale(1.01);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
background-color: darken($themeColor, 5);
|
|
|
|
|
transform: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.status {
|
|
|
|
|
display: none;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
@include S(padding, 5px);
|
|
|
|
|
@include PlainText;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grow {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.checkbox {
|
2020-05-19 07:14:40 +00:00
|
|
|
$bgColor: darken($mainBgColor, 3);
|
2020-05-09 14:45:23 +00:00
|
|
|
background-color: $bgColor;
|
2020-05-17 10:46:51 +00:00
|
|
|
@include S(width, 35px);
|
|
|
|
|
@include S(height, 17px);
|
2020-05-09 14:45:23 +00:00
|
|
|
display: flex;
|
|
|
|
|
@include S(padding, 3px);
|
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
pointer-events: all;
|
2024-06-20 09:59:43 +00:00
|
|
|
transition:
|
|
|
|
|
opacity 0.2s ease-in-out,
|
|
|
|
|
background-color 0.3s ease-in-out,
|
|
|
|
|
box-shadow 0.4s ease-in-out !important;
|
2020-05-09 14:45:23 +00:00
|
|
|
position: relative;
|
|
|
|
|
@include BorderRadius(20px);
|
|
|
|
|
@include BoxShadow3D($bgColor, $size: 2px);
|
|
|
|
|
&.loading {
|
|
|
|
|
opacity: 0.2;
|
|
|
|
|
}
|
2020-05-17 10:46:51 +00:00
|
|
|
&:hover {
|
|
|
|
|
background-color: darken($bgColor, 5);
|
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
.knob {
|
|
|
|
|
@include S(width, 20px);
|
2020-05-17 10:46:51 +00:00
|
|
|
@include S(height, 17px);
|
2020-05-09 14:45:23 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
transition: margin-left 0.4s ease-in-out !important;
|
|
|
|
|
background: #fff;
|
|
|
|
|
position: relative;
|
|
|
|
|
@include BorderRadius(20px);
|
|
|
|
|
@include BoxShadow3D(#fff, $size: 1px);
|
|
|
|
|
}
|
|
|
|
|
&.checked {
|
|
|
|
|
background-color: $themeColor;
|
|
|
|
|
@include BoxShadow3D($themeColor, $size: 2px);
|
|
|
|
|
.knob {
|
2020-05-17 10:46:51 +00:00
|
|
|
@include S(margin-left, 15px);
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: lighten($themeColor, 15);
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
|
|
|
|
}
|
2020-09-19 12:27:25 +00:00
|
|
|
|
|
|
|
|
@include DarkThemeOverride {
|
|
|
|
|
background-color: $darkModeGameBackground !important;
|
|
|
|
|
&.checked {
|
|
|
|
|
background-color: $colorBlueBright !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
2020-09-13 06:40:56 +00:00
|
|
|
.rangeInputContainer {
|
2020-08-31 13:46:21 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2020-09-13 06:40:56 +00:00
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
@include S(margin-right, 5px);
|
|
|
|
|
&,
|
|
|
|
|
& * {
|
|
|
|
|
@include PlainText;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-31 13:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
2020-09-13 06:40:56 +00:00
|
|
|
input.rangeInput {
|
2020-08-31 13:46:21 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
background-color: transparent;
|
2020-09-13 06:40:56 +00:00
|
|
|
@include S(width, 100px);
|
|
|
|
|
@include S(height, 16px);
|
|
|
|
|
|
2020-08-31 13:46:21 +00:00
|
|
|
&::-webkit-slider-runnable-track {
|
|
|
|
|
background-color: darken($mainBgColor, 3);
|
|
|
|
|
color: darken($mainBgColor, 3);
|
2020-09-13 06:40:56 +00:00
|
|
|
// @include S(height, 16px);
|
|
|
|
|
@include S(border-radius, 8px);
|
2020-08-31 13:46:21 +00:00
|
|
|
}
|
2020-09-13 06:40:56 +00:00
|
|
|
|
2020-09-19 12:27:25 +00:00
|
|
|
@include DarkThemeOverride {
|
|
|
|
|
&::-webkit-slider-runnable-track {
|
|
|
|
|
background-color: $darkModeControlsBackground;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::-webkit-slider-thumb {
|
|
|
|
|
box-shadow: inset 0 0 0 D(10px) #eee;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-31 13:46:21 +00:00
|
|
|
&::-webkit-slider-thumb {
|
|
|
|
|
appearance: none;
|
2020-09-13 06:40:56 +00:00
|
|
|
box-shadow: inset 0 0 0 D(10px) $themeColor;
|
2020-08-31 13:46:21 +00:00
|
|
|
border-radius: 50%;
|
2020-09-13 06:40:56 +00:00
|
|
|
|
|
|
|
|
transition: box-shadow 0.3s;
|
2020-08-31 13:46:21 +00:00
|
|
|
}
|
2020-09-13 06:40:56 +00:00
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
&::-webkit-slider-thumb {
|
|
|
|
|
box-shadow: inset 0 0 0 D(10px) lighten($themeColor, 15);
|
|
|
|
|
}
|
2020-08-31 13:46:21 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
.keybinding {
|
|
|
|
|
background: #fff;
|
|
|
|
|
text-transform: uppercase;
|
2024-08-13 14:46:10 +00:00
|
|
|
font-family: inherit;
|
2020-05-13 10:57:18 +00:00
|
|
|
@include S(padding, 1.5px, 3px, 2px);
|
2020-05-09 14:45:23 +00:00
|
|
|
@include PlainText;
|
2022-06-02 12:06:33 +00:00
|
|
|
@include S(border-radius, 0.5 * $globalBorderRadius);
|
2020-05-09 14:45:23 +00:00
|
|
|
&,
|
|
|
|
|
> span {
|
|
|
|
|
@include S(font-size, 9px);
|
|
|
|
|
@include S(line-height, 11px);
|
|
|
|
|
}
|
2022-06-02 12:06:33 +00:00
|
|
|
|
2020-05-09 14:45:23 +00:00
|
|
|
color: $accentColorDark;
|
|
|
|
|
text-align: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
@include S(min-width, 12px);
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
position: absolute;
|
|
|
|
|
@include S(bottom, 0px);
|
|
|
|
|
@include S(right, 0px);
|
|
|
|
|
z-index: 999;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
@include S(height, 12px);
|
|
|
|
|
overflow: hidden;
|
2020-05-13 10:57:18 +00:00
|
|
|
border: #{D(0px)} solid $accentColorDark;
|
2020-05-09 14:45:23 +00:00
|
|
|
.keybinding_space {
|
|
|
|
|
@include S(font-size, 17px);
|
|
|
|
|
@include S(line-height, 11px);
|
|
|
|
|
@include S(margin-top, -12px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iframe {
|
|
|
|
|
pointer-events: all;
|
|
|
|
|
user-select: all;
|
|
|
|
|
}
|