mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
52 lines
844 B
SCSS
52 lines
844 B
SCSS
@import "mixins";
|
|
@import "theme";
|
|
|
|
/* Both Work in progress and BitNode stuff */
|
|
.generic-fullscreen-container {
|
|
color: var(--my-font-color);
|
|
width: 99%;
|
|
height: 100%;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
.generic-fullscreen-container-scroll {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: auto;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
#work-in-progress-container {
|
|
position: fixed;
|
|
}
|
|
|
|
#work-in-progress-text {
|
|
color: var(--my-font-color);
|
|
width: 70%;
|
|
margin: 10px;
|
|
}
|
|
|
|
.work-button {
|
|
@include borderRadius(12px);
|
|
@include boxShadow(1px 1px 3px #000);
|
|
|
|
color: #aaa;
|
|
float: left;
|
|
font-size: $defaultFontSize * 1.25;
|
|
font-weight: bold;
|
|
margin: 10px;
|
|
padding: 5px;
|
|
border: 3px solid #fff;
|
|
}
|
|
|
|
.work-button:hover,
|
|
.work-button:focus {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#cinematic-text-container {
|
|
position: fixed;
|
|
}
|