2018-07-16 16:38:14 +02:00
|
|
|
@import "mixins";
|
2018-07-17 05:59:25 +02:00
|
|
|
@import "theme";
|
2018-07-16 16:38:14 +02:00
|
|
|
|
2017-05-05 23:27:35 +02:00
|
|
|
/* interactivetutorial.css */
|
2017-05-21 05:45:36 +02:00
|
|
|
#interactive-tutorial-wrapper {
|
2021-09-05 01:09:30 +02:00
|
|
|
position: relative;
|
2017-05-21 05:45:36 +02:00
|
|
|
}
|
|
|
|
|
2017-05-05 23:27:35 +02:00
|
|
|
#interactive-tutorial-container {
|
2021-09-05 01:09:30 +02:00
|
|
|
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;
|
2017-05-05 23:27:35 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
> strong {
|
|
|
|
background-color: #444;
|
|
|
|
}
|
2017-05-17 07:31:42 +02:00
|
|
|
}
|
|
|
|
|
2017-05-05 23:27:35 +02:00
|
|
|
#interactive-tutorial-text {
|
2021-09-05 01:09:30 +02:00
|
|
|
padding: 4px;
|
|
|
|
margin: 4px;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #444;
|
|
|
|
font-size: $defaultFontSize * 0.875;
|
|
|
|
max-height: 350px;
|
|
|
|
overflow-y: auto;
|
2017-05-05 23:27:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#interactive-tutorial-exit,
|
2017-05-15 07:09:14 +02:00
|
|
|
#interactive-tutorial-next,
|
|
|
|
#interactive-tutorial-back {
|
2021-09-05 01:09:30 +02:00
|
|
|
@include borderRadius(12px);
|
|
|
|
@include boxShadow(1px 1px 3px #000);
|
2018-07-16 16:38:14 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
color: #aaa;
|
|
|
|
font-size: $defaultFontSize * 1.125;
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: #000;
|
2018-07-17 17:40:14 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-05-05 23:27:35 +02:00
|
|
|
}
|
|
|
|
|
2018-08-29 21:06:21 +02:00
|
|
|
#interactive-tutorial-exit {
|
2021-09-05 01:09:30 +02:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 4px;
|
2018-08-29 21:06:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#interactive-tutorial-back {
|
2021-09-05 01:09:30 +02:00
|
|
|
float: left;
|
|
|
|
padding: 4px;
|
2018-08-29 21:06:21 +02:00
|
|
|
}
|
2017-05-15 07:09:14 +02:00
|
|
|
|
2017-05-05 23:27:35 +02:00
|
|
|
#interactive-tutorial-next {
|
2021-09-05 01:09:30 +02:00
|
|
|
float: right;
|
|
|
|
padding: 4px;
|
2017-05-05 23:27:35 +02:00
|
|
|
}
|
2021-06-12 10:23:15 +02:00
|
|
|
|
|
|
|
.interactive-tutorial-command {
|
2021-09-05 01:09:30 +02:00
|
|
|
background-color: #000;
|
|
|
|
color: $hacker-green;
|
|
|
|
white-space: nowrap;
|
2021-06-12 10:23:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.interactive-tutorial-code {
|
2021-09-05 01:09:30 +02:00
|
|
|
background-color: #272822;
|
|
|
|
color: white;
|
|
|
|
padding: 3px;
|
2021-06-12 10:23:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.interactive-tutorial-tab {
|
2021-09-05 01:09:30 +02:00
|
|
|
background-color: #555;
|
|
|
|
color: #e6e6e6;
|
|
|
|
padding: 3px;
|
|
|
|
box-shadow: 0 0 3px #000;
|
2021-09-04 22:18:08 +02:00
|
|
|
}
|