bitburner-src/css/interactivetutorial.scss

90 lines
1.6 KiB
SCSS
Raw Normal View History

@import "mixins";
@import "theme";
/* interactivetutorial.css */
#interactive-tutorial-wrapper {
position: relative;
}
#interactive-tutorial-container {
display: none;
position: absolute; /* Stay in place */
2017-05-06 08:24:01 +02:00
right: 0;
top: 0;
height: 450px;
padding: 10px;
border: 5px solid #fff;
width: 23%;
overflow: hidden;
2017-05-06 08:24:01 +02:00
background-color: #444; /* Fallback color */
color: #fff;
> strong {
background-color: #444;
}
}
#interactive-tutorial-text {
2017-05-06 08:24:01 +02:00
padding: 4px;
margin: 4px;
color: #fff;
2017-05-06 08:24:01 +02:00
background-color: #444;
font-size: $defaultFontSize * 0.875;
max-height: 350px;
overflow-y: auto;
}
#interactive-tutorial-exit,
2017-05-15 07:09:14 +02:00
#interactive-tutorial-next,
#interactive-tutorial-back {
@include borderRadius(12px);
2018-07-16 17:28:09 +02:00
@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;
}
2017-05-15 07:09:14 +02:00
#interactive-tutorial-next {
float: right;
padding: 4px;
}
2021-06-12 10:23:15 +02:00
.interactive-tutorial-command {
background-color: #000;
color: $hacker-green;
white-space: nowrap;
}
.interactive-tutorial-code {
background-color: #272822;
color: white;
padding: 3px;
}
.interactive-tutorial-tab {
background-color: #555;
color: #e6e6e6;
padding: 3px;
box-shadow: 0 0 3px #000;
}