bitburner-src/css/workinprogress.scss

52 lines
844 B
SCSS
Raw Normal View History

@import "mixins";
@import "theme";
2017-07-22 00:54:55 +02:00
/* Both Work in progress and BitNode stuff */
.generic-fullscreen-container {
2021-09-05 01:09:30 +02:00
color: var(--my-font-color);
width: 99%;
height: 100%;
overflow-y: hidden;
2018-08-12 21:45:35 +02:00
}
.generic-fullscreen-container-scroll {
2021-09-05 01:09:30 +02:00
height: 100%;
width: 100%;
overflow: auto;
padding-right: 20px;
2017-07-04 23:18:42 +02:00
}
2017-02-06 06:01:01 +01:00
#work-in-progress-container {
2021-09-05 01:09:30 +02:00
position: fixed;
2017-02-06 06:01:01 +01:00
}
#work-in-progress-text {
2021-09-05 01:09:30 +02:00
color: var(--my-font-color);
width: 70%;
margin: 10px;
2017-02-06 06:01:01 +01:00
}
2021-05-31 23:34:23 +02:00
.work-button {
2021-09-05 01:09:30 +02:00
@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;
2017-02-06 06:01:01 +01:00
}
2021-05-31 23:34:23 +02:00
.work-button:hover,
.work-button:focus {
2021-09-05 01:09:30 +02:00
color: #fff;
text-decoration: none;
cursor: pointer;
2017-07-22 00:54:55 +02:00
}
2018-05-02 19:38:11 +02:00
#cinematic-text-container {
2021-09-05 01:09:30 +02:00
position: fixed;
2017-07-22 00:54:55 +02:00
}