2018-07-16 16:38:14 +02:00
|
|
|
@import "mixins";
|
2018-07-16 17:54:35 +02:00
|
|
|
@import "theme";
|
|
|
|
|
2018-07-17 05:36:48 +02:00
|
|
|
@import "reset";
|
|
|
|
|
2018-08-29 17:12:33 +02:00
|
|
|
:root {
|
2018-07-09 22:11:18 +02:00
|
|
|
--my-font-color: #6f3;
|
|
|
|
--my-background-color: #000;
|
|
|
|
--my-highlight-color: #fff;
|
2018-08-29 17:12:33 +02:00
|
|
|
--my-prompt-color: #f92672;
|
2017-06-07 03:23:51 +02:00
|
|
|
}
|
2017-08-20 03:36:19 +02:00
|
|
|
|
2017-09-01 16:12:40 +02:00
|
|
|
body {
|
2017-06-07 03:23:51 +02:00
|
|
|
background-color: var(--my-background-color);
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2018-06-05 19:19:33 +02:00
|
|
|
p,
|
|
|
|
pre,
|
|
|
|
h2,
|
2021-03-07 22:32:16 +01:00
|
|
|
.text,
|
|
|
|
td {
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2017-01-31 04:41:42 +01:00
|
|
|
h1 {
|
2018-07-17 05:36:48 +02:00
|
|
|
font-size: $defaultFontSize * 1.375;
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2017-01-31 04:41:42 +01:00
|
|
|
}
|
2016-11-24 23:30:33 +01:00
|
|
|
|
2017-04-18 06:32:17 +02:00
|
|
|
ul {
|
2017-07-03 21:42:11 +02:00
|
|
|
padding: 2px;
|
2017-04-18 06:32:17 +02:00
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2017-09-01 16:12:40 +02:00
|
|
|
#entire-game-container {
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: transparent;
|
2017-09-01 16:12:40 +02:00
|
|
|
}
|
|
|
|
|
2017-05-02 05:26:06 +02:00
|
|
|
/* Disable border highlight on elements */
|
|
|
|
input:focus,
|
|
|
|
textarea:focus,
|
|
|
|
button:focus,
|
|
|
|
td:focus,
|
|
|
|
tr:focus {
|
2018-07-09 22:42:54 +02:00
|
|
|
outline: none;
|
2017-05-02 05:26:06 +02:00
|
|
|
}
|
2017-04-24 03:43:41 +02:00
|
|
|
|
2017-01-31 04:41:42 +01:00
|
|
|
/* Make html links ("a" elements) nice looking buttons with this class */
|
2018-07-17 05:36:48 +02:00
|
|
|
a:link,
|
|
|
|
a:visited {
|
2018-07-09 22:42:54 +02:00
|
|
|
color: #fff;
|
2017-07-13 18:54:29 +02:00
|
|
|
}
|
|
|
|
|
2018-06-13 22:12:46 +02:00
|
|
|
.dropdown {
|
2018-07-09 22:42:54 +02:00
|
|
|
color: #fff;
|
|
|
|
background-color: #000;
|
2018-06-13 22:12:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-input {
|
2018-07-09 22:42:54 +02:00
|
|
|
color: #fff;
|
|
|
|
background-color: #000;
|
2019-03-22 04:57:54 +01:00
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
border-color: white;
|
2018-06-13 22:12:46 +02:00
|
|
|
}
|
|
|
|
|
2017-05-05 18:52:48 +02:00
|
|
|
/* Notification icon (for create program right now only) */
|
2017-07-22 00:54:55 +02:00
|
|
|
#create-program-tab {
|
2018-07-09 22:42:54 +02:00
|
|
|
position: relative;
|
2017-05-05 18:52:48 +02:00
|
|
|
}
|
2018-08-29 17:12:33 +02:00
|
|
|
|
2017-05-05 18:52:48 +02:00
|
|
|
#create-program-notification {
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 0.625;
|
2017-05-05 18:52:48 +02:00
|
|
|
position: absolute; /* Position the badge within the relatively positioned button */
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2021-03-08 00:41:04 +01:00
|
|
|
#factions-tab {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#factions-notification {
|
|
|
|
font-size: $defaultFontSize * 0.625;
|
|
|
|
position: absolute; /* Position the badge within the relatively positioned button */
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#augmentations-tab {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#augmentations-notification {
|
|
|
|
font-size: $defaultFontSize * 0.625;
|
|
|
|
position: absolute; /* Position the badge within the relatively positioned button */
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-05 18:52:48 +02:00
|
|
|
.notification-on {
|
|
|
|
background-color: #fa3e3e;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-05-05 18:52:48 +02:00
|
|
|
border-radius: 2px;
|
|
|
|
padding: 1px 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-off {
|
|
|
|
background-color: #333;
|
|
|
|
color: #333;
|
2018-07-10 04:37:19 +02:00
|
|
|
border-radius: 0;
|
|
|
|
padding: 0;
|
2017-05-08 16:33:26 +02:00
|
|
|
}
|
|
|
|
|
2018-03-12 20:39:04 +01:00
|
|
|
/* help tip. Question mark that opens popup with info/details */
|
|
|
|
.help-tip {
|
2018-10-23 20:55:42 +02:00
|
|
|
background-color: black;
|
2018-07-09 22:42:54 +02:00
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 5px;
|
2018-10-23 20:55:42 +02:00
|
|
|
color: #fff;
|
|
|
|
content: '?';
|
2018-07-09 22:42:54 +02:00
|
|
|
display: inline-block;
|
2018-10-23 20:55:42 +02:00
|
|
|
margin-left: 3px;
|
|
|
|
padding: 1px;
|
2018-03-12 20:39:04 +01:00
|
|
|
}
|
|
|
|
|
2018-08-24 22:44:48 +02:00
|
|
|
.help-tip-big {
|
|
|
|
content: '?';
|
|
|
|
padding: 3px;
|
|
|
|
margin-left: 3px;
|
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 8px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.help-tip:hover,
|
|
|
|
.help-tip-big:hover {
|
2018-03-12 20:39:04 +01:00
|
|
|
background-color: #888;
|
|
|
|
}
|
|
|
|
|
2018-08-24 22:44:48 +02:00
|
|
|
.help-tip:active,
|
|
|
|
.help-tip-big:active {
|
2018-07-16 17:28:09 +02:00
|
|
|
@include boxShadow(inset 0 1px 4px rgba(0, 0, 0, 0.6));
|
2018-03-12 20:39:04 +01:00
|
|
|
}
|
|
|
|
|
2017-05-15 18:54:23 +02:00
|
|
|
/* Flashing button (Red) */
|
2017-05-15 07:09:14 +02:00
|
|
|
@-webkit-keyframes glowing {
|
2018-07-09 22:05:12 +02:00
|
|
|
0% { background-color: #b20000; -webkit-box-shadow: 0 0 3px #b20000; }
|
2018-07-09 22:11:18 +02:00
|
|
|
50% { background-color: #f00; -webkit-box-shadow: 0 0 40px #f00; }
|
2018-07-09 22:05:12 +02:00
|
|
|
100% { background-color: #b20000; -webkit-box-shadow: 0 0 3px #b20000; }
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes glowing {
|
2018-07-09 22:05:12 +02:00
|
|
|
0% { background-color: #b20000; -moz-box-shadow: 0 0 3px #b20000; }
|
2018-07-09 22:11:18 +02:00
|
|
|
50% { background-color: #f00; -moz-box-shadow: 0 0 40px #f00; }
|
2018-07-09 22:05:12 +02:00
|
|
|
100% { background-color: #b20000; -moz-box-shadow: 0 0 3px #b20000; }
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@-o-keyframes glowing {
|
2018-07-09 22:05:12 +02:00
|
|
|
0% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
2018-07-09 22:11:18 +02:00
|
|
|
50% { background-color: #f00; box-shadow: 0 0 40px #f00; }
|
2018-07-09 22:05:12 +02:00
|
|
|
100% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes glowing {
|
2018-07-09 22:05:12 +02:00
|
|
|
0% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
2018-07-09 22:11:18 +02:00
|
|
|
50% { background-color: #f00; box-shadow: 0 0 40px #f00; }
|
2018-07-09 22:05:12 +02:00
|
|
|
100% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.flashing-button {
|
|
|
|
-webkit-animation: glowing 1500ms infinite;
|
|
|
|
-moz-animation: glowing 1500ms infinite;
|
|
|
|
-o-animation: glowing 1500ms infinite;
|
|
|
|
animation: glowing 1500ms infinite;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
|
|
|
|
2017-07-04 21:34:17 +02:00
|
|
|
/* Blinking Cursor */
|
|
|
|
/* ----- blinking cursor animation ----- */
|
2018-08-29 17:12:33 +02:00
|
|
|
.typed-cursor {
|
2018-07-10 05:10:31 +02:00
|
|
|
opacity: 1;
|
|
|
|
-webkit-animation: blink 0.95s infinite;
|
|
|
|
-moz-animation: blink 0.95s infinite;
|
|
|
|
-ms-animation: blink 0.95s infinite;
|
|
|
|
-o-animation: blink 0.95s infinite;
|
|
|
|
animation: blink 0.95s infinite;
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
@-webkit-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
@-moz-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
@-ms-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
@-o-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
|
2017-05-15 18:54:23 +02:00
|
|
|
/* Status text */
|
2018-08-29 17:12:33 +02:00
|
|
|
@-webkit-keyframes status-text {
|
|
|
|
from {
|
2018-07-09 22:42:54 +02:00
|
|
|
opacity: 1;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
2018-08-29 17:12:33 +02:00
|
|
|
to {
|
2018-07-09 22:42:54 +02:00
|
|
|
opacity: 0;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-29 17:12:33 +02:00
|
|
|
.status-text {
|
2018-07-19 18:17:43 +02:00
|
|
|
display: inline-block;
|
2018-07-09 22:42:54 +02:00
|
|
|
position: fixed;
|
2018-07-19 18:17:43 +02:00
|
|
|
z-index: 2;
|
2018-07-09 22:42:54 +02:00
|
|
|
-webkit-animation: status-text 3s 1;
|
2017-05-21 05:45:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#status-text-container {
|
|
|
|
background-color: transparent;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#status-text {
|
2018-07-19 18:17:43 +02:00
|
|
|
background-color: transparent;
|
2017-05-21 05:45:36 +02:00
|
|
|
bottom: 0;
|
2018-07-19 18:17:43 +02:00
|
|
|
color: #fff;
|
2019-03-14 04:10:28 +01:00
|
|
|
display: none;
|
|
|
|
font-size: $defaultFontSize * 1.25;
|
2017-06-13 17:58:31 +02:00
|
|
|
margin-right: 14px;
|
2019-03-14 04:10:28 +01:00
|
|
|
opacity: 0;
|
2018-07-19 18:17:43 +02:00
|
|
|
padding: 4px;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2017-06-26 01:39:17 +02:00
|
|
|
width: auto;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
2017-05-20 09:33:33 +02:00
|
|
|
|
2017-06-23 16:23:35 +02:00
|
|
|
/* Scan analyze links from AutoLink */
|
|
|
|
.scan-analyze-link {
|
2018-07-09 22:42:54 +02:00
|
|
|
cursor: pointer;
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: underline;
|
2018-08-29 17:12:33 +02:00
|
|
|
|
2018-09-03 14:10:00 +02:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2017-06-23 16:23:35 +02:00
|
|
|
}
|
2017-10-13 17:19:42 +02:00
|
|
|
|
|
|
|
/* Accordion menus (Header with collapsible panel) */
|
|
|
|
.accordion-header {
|
|
|
|
background-color: #444;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2019-05-17 22:41:16 +02:00
|
|
|
font-size: $defaultFontSize * 1.25;
|
2018-07-10 04:37:19 +02:00
|
|
|
margin: 6px 6px 0 6px;
|
2018-08-29 17:12:33 +02:00
|
|
|
padding: 4px 6px;
|
2017-10-13 17:19:42 +02:00
|
|
|
cursor: pointer;
|
|
|
|
width: 80%;
|
|
|
|
text-align: left;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
2018-08-29 17:48:26 +02:00
|
|
|
position: relative;
|
2017-10-13 17:19:42 +02:00
|
|
|
|
2018-08-29 17:48:26 +02:00
|
|
|
&.active,
|
|
|
|
&:hover {
|
|
|
|
background-color: #555;
|
|
|
|
}
|
2017-10-13 17:19:42 +02:00
|
|
|
|
2018-08-29 17:48:26 +02:00
|
|
|
&.active:hover {
|
|
|
|
background-color: #666;
|
|
|
|
}
|
2017-10-13 17:19:42 +02:00
|
|
|
|
2018-08-29 17:48:26 +02:00
|
|
|
&:after {
|
|
|
|
content: '\02795'; /* "plus" sign (+) */
|
2018-10-23 20:55:42 +02:00
|
|
|
font-size: $defaultFontSize * 0.875;
|
2018-08-29 17:48:26 +02:00
|
|
|
float: right;
|
|
|
|
color: transparent;
|
|
|
|
text-shadow: 0 0 0 #fff;
|
|
|
|
position: absolute;
|
2018-09-03 14:10:00 +02:00
|
|
|
bottom: 5px;
|
2018-08-29 17:48:26 +02:00
|
|
|
right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active:after {
|
|
|
|
content: "\2796"; /* "minus" sign (-) */
|
|
|
|
}
|
2017-10-13 17:19:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.accordion-panel {
|
2018-07-10 04:37:19 +02:00
|
|
|
margin: 0 6px 6px 6px;
|
|
|
|
padding: 0 6px 6px 6px;
|
2017-10-13 17:19:42 +02:00
|
|
|
width: 75%;
|
|
|
|
margin-left: 5%;
|
|
|
|
display: none;
|
|
|
|
background-color: #555;
|
2018-07-09 22:42:54 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: none;
|
2017-10-13 17:19:42 +02:00
|
|
|
|
2018-08-29 17:48:26 +02:00
|
|
|
div, ul, p, ul > li {
|
|
|
|
background-color: #555;
|
|
|
|
}
|
2017-10-13 17:19:42 +02:00
|
|
|
}
|
2018-08-02 18:19:21 +02:00
|
|
|
|
|
|
|
/* override the global <span> styling */
|
|
|
|
#active-scripts-total-production-active,
|
|
|
|
#active-scripts-total-prod-aug-total,
|
|
|
|
#active-scripts-total-prod-aug-avg {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2018-09-03 14:10:00 +02:00
|
|
|
|
|
|
|
/* Helper Classes */
|
|
|
|
.hacker-green {
|
|
|
|
color: $hacker-green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.money-gold {
|
|
|
|
color: $money-gold;
|
|
|
|
}
|
|
|
|
|
2018-09-06 16:15:36 +02:00
|
|
|
.light-yellow {
|
|
|
|
color: $light-yellow;
|
|
|
|
}
|
|
|
|
|
2018-09-03 14:10:00 +02:00
|
|
|
.failure {
|
|
|
|
color: $alert-red;
|
|
|
|
text-shadow: 0 0 0 $alert-red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.success {
|
|
|
|
color: $success-green;
|
|
|
|
text-shadow: 0 0 0 $success-green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.physical-yellow {
|
|
|
|
color: $my-stat-physical;
|
|
|
|
}
|
|
|
|
|
|
|
|
.charisma-purple {
|
|
|
|
color: $my-stat-cha-color;
|
|
|
|
}
|
2018-10-23 20:55:42 +02:00
|
|
|
|
|
|
|
.smallfont {
|
|
|
|
font-size: $defaultFontSize * 0.8125;
|
|
|
|
}
|
2021-03-10 05:22:05 +01:00
|
|
|
|
2021-03-12 20:09:35 +01:00
|
|
|
input[type=checkbox] {
|
|
|
|
filter: invert(1) sepia(1) hue-rotate(41deg) brightness(100%) saturate(10);
|
|
|
|
}
|
2021-03-10 05:22:05 +01:00
|
|
|
|
|
|
|
.optionCheckbox {
|
|
|
|
margin: 5px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.optionRange {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
background: #777;
|
|
|
|
outline: none;
|
|
|
|
opacity: 0.7;
|
|
|
|
height: 10px;
|
|
|
|
-webkit-transition: .2s;
|
|
|
|
transition: opacity .2s;
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.optionRange::-webkit-slider-thumb {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
background: var(--my-font-color);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.optionRange::-moz-range-thumb {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
background: var(--my-font-color);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|