mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
72 lines
1.3 KiB
SCSS
72 lines
1.3 KiB
SCSS
@import "mixins";
|
|
@import "theme";
|
|
|
|
/* interactivetutorial.css */
|
|
#interactive-tutorial-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
#interactive-tutorial-container {
|
|
display: none;
|
|
position: absolute; /* Stay in place */
|
|
right: 0;
|
|
top: 0;
|
|
height: 450px;
|
|
padding: 10px;
|
|
border: 5px solid #fff;
|
|
width: 23%;
|
|
overflow: hidden;
|
|
background-color: #444; /* Fallback color */
|
|
color: #fff;
|
|
|
|
> strong {
|
|
background-color: #444;
|
|
}
|
|
}
|
|
|
|
#interactive-tutorial-text {
|
|
padding: 4px;
|
|
margin: 4px;
|
|
color: #fff;
|
|
background-color: #444;
|
|
font-size: $defaultFontSize * 0.875;
|
|
max-height: 350px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#interactive-tutorial-exit,
|
|
#interactive-tutorial-next,
|
|
#interactive-tutorial-back {
|
|
@include borderRadius(12px);
|
|
@include boxShadow(1px 1px 3px #000);
|
|
|
|
color: #aaa;
|
|
font-size: $defaultFontSize * 1.125;
|
|
font-weight: bold;
|
|
background-color: #000;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
#interactive-tutorial-exit {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 4px;
|
|
}
|
|
|
|
#interactive-tutorial-back {
|
|
float: left;
|
|
padding: 4px;
|
|
}
|
|
|
|
#interactive-tutorial-next {
|
|
float: right;
|
|
padding: 4px;
|
|
}
|