2018-07-16 16:38:14 +02:00
|
|
|
@import "mixins";
|
2018-07-17 05:59:25 +02:00
|
|
|
@import "theme";
|
|
|
|
|
2017-07-22 00:54:55 +02:00
|
|
|
/* Both Work in progress and BitNode stuff */
|
2017-09-21 23:27:31 +02:00
|
|
|
.generic-fullscreen-container {
|
2017-07-04 23:18:42 +02:00
|
|
|
color: var(--my-font-color);
|
|
|
|
width: 99%;
|
2017-09-29 17:02:33 +02:00
|
|
|
height: 100%;
|
2018-08-12 21:45:35 +02:00
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.generic-fullscreen-container-scroll {
|
|
|
|
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 {
|
2017-02-08 01:27:11 +01:00
|
|
|
position: fixed;
|
2017-02-06 06:01:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#work-in-progress-text {
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2017-05-25 01:23:28 +02:00
|
|
|
width: 70%;
|
2017-07-22 00:54:55 +02:00
|
|
|
margin: 10px;
|
2017-02-06 06:01:01 +01:00
|
|
|
}
|
|
|
|
|
2021-05-31 23:34:23 +02:00
|
|
|
.work-button {
|
2018-07-16 16:38:14 +02:00
|
|
|
@include borderRadius(12px);
|
2018-07-16 17:28:09 +02:00
|
|
|
@include boxShadow(1px 1px 3px #000);
|
|
|
|
|
2017-02-06 06:01:01 +01:00
|
|
|
color: #aaa;
|
2017-05-07 00:19:18 +02:00
|
|
|
float: left;
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 1.25;
|
2017-02-06 06:01:01 +01:00
|
|
|
font-weight: bold;
|
2017-02-16 19:52:11 +01:00
|
|
|
margin: 10px;
|
|
|
|
padding: 5px;
|
2018-07-09 22:11:18 +02:00
|
|
|
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 {
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-02-06 06:01:01 +01:00
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
2017-07-22 00:54:55 +02:00
|
|
|
}
|
|
|
|
|
2018-05-02 19:38:11 +02:00
|
|
|
#cinematic-text-container {
|
2017-07-22 00:54:55 +02:00
|
|
|
position: fixed;
|
|
|
|
}
|