2018-07-16 16:38:14 +02:00
|
|
|
@import "mixins";
|
2018-07-16 17:54:35 +02:00
|
|
|
@import "theme";
|
|
|
|
|
2016-11-24 23:30:33 +01:00
|
|
|
/* CSS for different main menu pages, such as character info, script editor, etc (but excluding
|
2018-07-10 05:10:31 +02:00
|
|
|
terminal which has its own page) */
|
2017-07-25 03:06:40 +02:00
|
|
|
|
2017-06-28 06:11:27 +02:00
|
|
|
.generic-menupage-container {
|
2017-05-04 22:50:17 +02:00
|
|
|
height: 100%;
|
2016-11-24 23:30:33 +01:00
|
|
|
padding-left: 10px;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2018-07-10 05:10:31 +02:00
|
|
|
overflow-y: scroll;
|
2016-11-24 23:30:33 +01:00
|
|
|
}
|
|
|
|
|
2017-06-28 06:11:27 +02:00
|
|
|
/* Character Info */
|
|
|
|
#character-container {
|
|
|
|
padding-top: 10px;
|
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
|
2016-11-24 23:30:33 +01:00
|
|
|
/* Script Editor */
|
2017-09-01 16:12:40 +02:00
|
|
|
#script-editor-container {
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: transparent;
|
2017-09-01 16:12:40 +02:00
|
|
|
}
|
2018-08-29 17:12:33 +02:00
|
|
|
|
2017-09-01 16:12:40 +02:00
|
|
|
#javascript-editor {
|
|
|
|
margin: 10px;
|
|
|
|
height: 80%;
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 6px;
|
|
|
|
padding-left: 6px;
|
|
|
|
padding-top: 6px;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
border: 2px solid var(--my-highlight-color);
|
|
|
|
z-index: 1;
|
2018-07-16 17:54:35 +02:00
|
|
|
font-family: $fontFamily;
|
2017-09-01 16:12:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ace_line,
|
|
|
|
.ace_line * {
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: transparent;
|
2018-07-10 04:37:19 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2017-09-01 16:12:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ace_text-input {
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize;
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: transparent;
|
2017-09-01 16:12:40 +02:00
|
|
|
}
|
|
|
|
|
2016-11-24 23:30:33 +01:00
|
|
|
/* This temp element is used for auto adjusting filename field */
|
|
|
|
.tmp-element {
|
2018-07-10 05:10:31 +02:00
|
|
|
visibility: hidden;
|
|
|
|
white-space: pre;
|
2016-11-24 23:30:33 +01:00
|
|
|
}
|
2017-07-25 03:06:40 +02:00
|
|
|
|
2016-11-24 23:30:33 +01:00
|
|
|
#script-editor-container {
|
2018-07-10 05:10:31 +02:00
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
2016-11-24 23:30:33 +01:00
|
|
|
}
|
|
|
|
|
2017-05-24 04:55:24 +02:00
|
|
|
#script-editor-buttons-wrapper {
|
|
|
|
width: 100%;
|
2018-07-10 04:37:19 +02:00
|
|
|
padding-right: 0;
|
|
|
|
margin-right: 0;
|
2016-11-24 23:30:33 +01:00
|
|
|
}
|
|
|
|
|
2017-05-24 04:55:24 +02:00
|
|
|
#script-editor-wrapper {
|
2018-07-09 22:42:54 +02:00
|
|
|
height: 100%;
|
2017-05-24 04:55:24 +02:00
|
|
|
width: 70%;
|
2018-07-09 22:42:54 +02:00
|
|
|
background: transparent;
|
2017-05-24 04:55:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-filename-wrapper {
|
|
|
|
background-color: #555;
|
|
|
|
margin-left: 6px;
|
2018-07-10 04:37:19 +02:00
|
|
|
margin-right: 0;
|
2017-05-24 04:55:24 +02:00
|
|
|
padding-left: 6px;
|
|
|
|
width: 100%;
|
2017-07-25 03:06:40 +02:00
|
|
|
border: 2px solid var(--my-highlight-color);
|
2017-05-24 04:55:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-filename-tag {
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: 10px;
|
2018-07-10 04:37:19 +02:00
|
|
|
padding-bottom: 0;
|
2018-07-09 22:42:54 +02:00
|
|
|
float: center;
|
2017-05-24 04:55:24 +02:00
|
|
|
background-color: #555;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-05-24 04:55:24 +02:00
|
|
|
}
|
|
|
|
|
2017-07-25 03:06:40 +02:00
|
|
|
#script-editor-filename {
|
2018-07-16 17:28:09 +02:00
|
|
|
$boxShadowArgs: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
|
|
|
@include boxShadow($boxShadowArgs);
|
|
|
|
|
2017-07-03 21:42:11 +02:00
|
|
|
background-color: #555;
|
2017-05-24 04:55:24 +02:00
|
|
|
display: inline-block;
|
2018-07-10 05:10:31 +02:00
|
|
|
float: center;
|
|
|
|
resize: none;
|
|
|
|
color: #fff;
|
2017-05-24 04:55:24 +02:00
|
|
|
margin: 4px;
|
2018-07-09 22:42:54 +02:00
|
|
|
padding: 2px;
|
2017-07-25 03:06:40 +02:00
|
|
|
border: 2px solid var(--my-highlight-color);
|
2016-11-24 23:30:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-status {
|
2018-07-10 05:10:31 +02:00
|
|
|
float: left;
|
|
|
|
color: #fff;
|
2016-11-24 23:30:33 +01:00
|
|
|
}
|
|
|
|
|
2017-09-05 03:03:29 +02:00
|
|
|
#script-editor-options-panel {
|
2018-07-09 22:42:54 +02:00
|
|
|
position: absolute;
|
2017-09-05 03:03:29 +02:00
|
|
|
right: 9%;
|
2018-07-09 22:42:54 +02:00
|
|
|
bottom: 15%;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
width: 19%;
|
|
|
|
background-color: #444;
|
|
|
|
padding: 2px;
|
|
|
|
overflow: auto;
|
2017-09-05 03:03:29 +02:00
|
|
|
z-index: 1;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-09-05 03:03:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-options-panel fieldset {
|
2018-07-09 22:42:54 +02:00
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 8px;
|
2017-09-05 03:03:29 +02:00
|
|
|
padding: 2px;
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 0.75;
|
2017-09-05 03:03:29 +02:00
|
|
|
}
|
|
|
|
|
2016-12-19 19:20:19 +01:00
|
|
|
/* Active scripts */
|
2017-04-18 06:32:17 +02:00
|
|
|
.active-scripts-list {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2016-12-19 19:20:19 +01:00
|
|
|
#active-scripts-container {
|
2018-07-10 05:10:31 +02:00
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
2016-12-19 19:20:19 +01:00
|
|
|
}
|
|
|
|
|
2017-05-31 02:00:24 +02:00
|
|
|
#active-scripts-text,
|
|
|
|
#active-scripts-total-prod {
|
2017-05-21 05:45:36 +02:00
|
|
|
width: 70%;
|
2017-05-05 18:52:48 +02:00
|
|
|
margin: 6px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2017-06-06 23:22:57 +02:00
|
|
|
.active-scripts-server-header {
|
|
|
|
background-color: #444;
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 1.25;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2018-07-10 04:37:19 +02:00
|
|
|
margin: 6px 6px 0 6px;
|
2017-06-06 23:22:57 +02:00
|
|
|
padding: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 60%;
|
|
|
|
text-align: left;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-server-header.active,
|
|
|
|
.active-scripts-server-header:hover {
|
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-server-header.active:hover {
|
|
|
|
background-color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-server-header:after {
|
|
|
|
content: '\02795'; /* "plus" sign (+) */
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 0.8125;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-06-06 23:22:57 +02:00
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
2017-05-05 03:08:44 +02:00
|
|
|
}
|
|
|
|
|
2017-06-06 23:22:57 +02:00
|
|
|
.active-scripts-server-header.active:after {
|
|
|
|
content: "\2796"; /* "minus" sign (-) */
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 0.8125;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-06-06 23:22:57 +02:00
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-server-panel {
|
2018-07-10 04:37:19 +02:00
|
|
|
margin: 0 6px 6px 6px;
|
|
|
|
padding: 0 6px 6px 6px;
|
2017-06-06 23:22:57 +02:00
|
|
|
width: 55%;
|
|
|
|
margin-left: 5%;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-server-panel div,
|
|
|
|
.active-scripts-server-panel ul,
|
|
|
|
.active-scripts-server-panel ul > li {
|
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-script-header {
|
|
|
|
background-color: #555;
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2018-09-03 14:10:00 +02:00
|
|
|
padding: 4px 25px 4px 10px;
|
2017-06-06 23:22:57 +02:00
|
|
|
cursor: pointer;
|
|
|
|
width: auto;
|
|
|
|
text-align: left;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
2018-09-03 14:10:00 +02:00
|
|
|
position: relative;
|
2016-12-19 19:20:19 +01:00
|
|
|
|
2018-09-03 14:10:00 +02:00
|
|
|
&:after {
|
|
|
|
content: '\02795'; /* "plus" sign (+) */
|
|
|
|
font-size: $defaultFontSize * 0.8125;
|
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
color: transparent;
|
|
|
|
text-shadow: 0 0 0 var(--my-font-color);
|
|
|
|
position: absolute;
|
|
|
|
bottom: 4px;
|
|
|
|
}
|
2017-06-06 23:22:57 +02:00
|
|
|
|
2018-09-03 14:10:00 +02:00
|
|
|
&.active:after {
|
|
|
|
content: "\2796"; /* "minus" sign (-) */
|
|
|
|
}
|
2017-06-06 23:22:57 +02:00
|
|
|
|
2018-09-03 14:10:00 +02:00
|
|
|
&:hover,
|
|
|
|
&.active:hover {
|
|
|
|
background-color: #666;
|
|
|
|
}
|
2017-01-03 17:24:41 +01:00
|
|
|
|
2018-09-03 14:10:00 +02:00
|
|
|
&.active {
|
|
|
|
background-color: #555;
|
|
|
|
}
|
2017-06-06 23:22:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-script-panel {
|
|
|
|
padding: 0 18px;
|
|
|
|
background-color: #555;
|
|
|
|
width: auto;
|
|
|
|
display: none;
|
2017-06-19 16:54:11 +02:00
|
|
|
margin-bottom: 6px;
|
2017-06-06 23:22:57 +02:00
|
|
|
|
2018-08-29 17:48:26 +02:00
|
|
|
p, h2, ul, li {
|
|
|
|
background-color: #555;
|
|
|
|
width: auto;
|
|
|
|
color: #fff;
|
|
|
|
margin-left: 5%;
|
|
|
|
}
|
2017-06-06 23:22:57 +02:00
|
|
|
}
|
|
|
|
|
2017-06-19 16:54:11 +02:00
|
|
|
.active-scripts-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);
|
2018-07-16 16:38:14 +02:00
|
|
|
|
2017-06-19 16:54:11 +02:00
|
|
|
color: #aaa;
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize;
|
2017-06-19 16:54:11 +02:00
|
|
|
font-weight: bold;
|
|
|
|
margin: 4px;
|
|
|
|
padding: 4px;
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: #000;
|
2017-06-19 16:54:11 +02:00
|
|
|
|
2018-08-29 17:48:26 +02:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-06-19 16:54:11 +02:00
|
|
|
}
|
2017-06-06 23:22:57 +02:00
|
|
|
|
2017-04-27 07:01:21 +02:00
|
|
|
/* Hacknet Nodes */
|
|
|
|
#hacknet-nodes-container {
|
|
|
|
position: fixed;
|
2017-05-04 09:05:43 +02:00
|
|
|
padding: 10px;
|
2017-04-27 07:01:21 +02:00
|
|
|
}
|
|
|
|
|
2017-04-27 22:02:58 +02:00
|
|
|
#hacknet-nodes-text,
|
2017-07-03 21:42:11 +02:00
|
|
|
#hacknet-nodes-container li {
|
2017-04-27 22:02:58 +02:00
|
|
|
margin: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2018-06-05 19:19:33 +02:00
|
|
|
#hacknet-nodes-container li {
|
|
|
|
float: left;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2018-08-29 17:12:33 +02:00
|
|
|
|
|
|
|
&.hacknet-node {
|
|
|
|
$boxShadowArgs: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
|
|
|
@include boxShadow($boxShadowArgs);
|
|
|
|
|
|
|
|
margin: 6px;
|
|
|
|
padding: 7px;
|
|
|
|
width: 35vw;
|
|
|
|
border: 2px solid var(--my-highlight-color);
|
|
|
|
}
|
2018-06-05 19:19:33 +02:00
|
|
|
}
|
|
|
|
|
2018-06-06 05:49:06 +02:00
|
|
|
#hacknet-nodes-list {
|
|
|
|
list-style: none;
|
|
|
|
width: 82vw;
|
|
|
|
}
|
|
|
|
|
2018-06-05 19:19:33 +02:00
|
|
|
#hacknet-nodes-money {
|
|
|
|
margin: 10px;
|
|
|
|
float: left;
|
2017-05-16 23:22:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#hacknet-nodes-money-multipliers-div {
|
|
|
|
display: inline-block;
|
2018-06-06 05:49:06 +02:00
|
|
|
width: 70vw;
|
2017-05-16 23:22:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#hacknet-nodes-multipliers {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2018-06-05 19:19:33 +02:00
|
|
|
#hacknet-nodes-purchase-button {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hacknet-node-container {
|
|
|
|
display: inline-table;
|
|
|
|
|
2018-08-29 17:48:26 +02:00
|
|
|
.row {
|
|
|
|
display: table-row;
|
|
|
|
height: 30px;
|
2018-06-05 19:19:33 +02:00
|
|
|
|
2018-08-29 17:48:26 +02:00
|
|
|
p {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
}
|
2017-04-27 22:02:58 +02:00
|
|
|
|
2018-08-29 17:48:26 +02:00
|
|
|
.upgradable-info {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 4px; /* Don't want the vertical margin/padding, just left & right */
|
|
|
|
padding: 0 4px;
|
|
|
|
width: $defaultFontSize * 4;
|
|
|
|
}
|
2017-04-27 07:01:21 +02:00
|
|
|
}
|
|
|
|
|
2018-06-06 05:49:06 +02:00
|
|
|
.menu-page-text {
|
|
|
|
width: 70vw;
|
|
|
|
}
|
|
|
|
|
2017-01-28 04:10:16 +01:00
|
|
|
/* World */
|
|
|
|
#world-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
2017-05-06 21:12:45 +02:00
|
|
|
#world-city-name,
|
|
|
|
#world-city-desc {
|
|
|
|
padding: 4px;
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
|
2017-01-28 04:10:16 +01:00
|
|
|
/* Create program */
|
|
|
|
#create-program-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 21:42:11 +02:00
|
|
|
#create-program-page-text,
|
2017-05-25 10:09:51 +02:00
|
|
|
#create-program-list {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
2017-04-19 21:19:33 +02:00
|
|
|
/* Factions and Faction (Single Faction page) */
|
2017-01-28 04:10:16 +01:00
|
|
|
#factions-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#faction-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
2017-08-13 07:01:33 +02:00
|
|
|
.faction-work-div {
|
2017-05-21 07:39:18 +02:00
|
|
|
width: 70%;
|
2017-05-06 21:12:45 +02:00
|
|
|
height: 100%;
|
2017-01-09 23:14:18 +01:00
|
|
|
}
|
|
|
|
|
2017-08-13 07:01:33 +02:00
|
|
|
.faction-work-div-wrapper {
|
2018-07-09 22:42:54 +02:00
|
|
|
overflow: hidden;
|
2017-05-06 21:12:45 +02:00
|
|
|
border: 2px solid #333;
|
2018-03-27 02:46:21 +02:00
|
|
|
padding: 6px;
|
2017-05-06 21:12:45 +02:00
|
|
|
margin: 6px;
|
2018-07-09 22:42:54 +02:00
|
|
|
width: 70%;
|
2017-01-09 23:14:18 +01:00
|
|
|
}
|
|
|
|
|
2017-07-25 03:06:40 +02:00
|
|
|
#faction-donate-amount-txt,
|
2017-05-20 10:19:13 +02:00
|
|
|
#faction-donate-input {
|
|
|
|
padding: 6px;
|
|
|
|
margin: 6px;
|
|
|
|
display: inline-block;
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: #000;
|
2017-05-20 10:19:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#faction-donate-amount-txt {
|
2018-07-09 22:42:54 +02:00
|
|
|
width: 50%;
|
2017-05-20 10:19:13 +02:00
|
|
|
}
|
|
|
|
|
2017-07-30 21:11:30 +02:00
|
|
|
#faction-container p,
|
|
|
|
#faction-container pre {
|
2018-09-03 14:10:00 +02:00
|
|
|
padding: 4px 6px;
|
|
|
|
margin: 4px 6px;
|
2017-04-19 21:19:33 +02:00
|
|
|
}
|
|
|
|
|
2018-03-27 02:46:21 +02:00
|
|
|
#faction-container pre {
|
|
|
|
width: 70%;
|
2017-07-30 21:11:30 +02:00
|
|
|
white-space: pre-wrap; /* Since CSS 2.1 */
|
|
|
|
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
|
|
|
white-space: -pre-wrap; /* Opera 4-6 */
|
|
|
|
white-space: -o-pre-wrap; /* Opera 7 */
|
|
|
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
|
|
|
}
|
|
|
|
|
2017-02-28 18:47:43 +01:00
|
|
|
/* Faction Augmentations */
|
2018-08-29 17:12:33 +02:00
|
|
|
#faction-augmentations-container {
|
2017-02-28 18:47:43 +01:00
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
|
2018-08-29 17:12:33 +02:00
|
|
|
p, a, ul, h1 {
|
|
|
|
margin: 8px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
2017-04-19 23:39:25 +02:00
|
|
|
}
|
|
|
|
|
2017-01-31 04:41:42 +01:00
|
|
|
/* World */
|
|
|
|
#world-container li {
|
|
|
|
margin: 0 0 15px 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2017-02-28 18:47:43 +01:00
|
|
|
/* Augmentations */
|
2017-01-28 04:10:16 +01:00
|
|
|
#augmentations-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
2018-08-29 17:12:33 +02:00
|
|
|
.augmentations-list {
|
|
|
|
button,
|
|
|
|
div {
|
|
|
|
color: var(--my-font-color);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
padding: 2px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
padding: 6px;
|
|
|
|
}
|
2017-05-05 03:08:44 +02:00
|
|
|
}
|
|
|
|
|
2017-01-28 04:10:16 +01:00
|
|
|
/* Tutorial */
|
|
|
|
#tutorial-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
2017-05-07 00:19:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#tutorial-text {
|
2017-05-21 05:45:36 +02:00
|
|
|
width: 70%;
|
2017-05-07 00:19:18 +02:00
|
|
|
margin: 10px;
|
2017-02-03 00:33:47 +01:00
|
|
|
}
|
|
|
|
|
2017-07-25 03:06:40 +02:00
|
|
|
#tutorial-container a {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
2018-06-12 21:27:37 +02:00
|
|
|
/* Dev menu */
|
|
|
|
#dev-menu-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dev-menu-text {
|
|
|
|
width: 70%;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dev-menu-container a {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
2017-02-03 00:33:47 +01:00
|
|
|
/* Location */
|
|
|
|
#location-container {
|
2018-07-10 05:10:31 +02:00
|
|
|
position: fixed;
|
|
|
|
padding: 6px;
|
2017-07-03 21:42:11 +02:00
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#location-container a {
|
2018-07-09 22:42:54 +02:00
|
|
|
display: inline-block;
|
2017-07-03 21:42:11 +02:00
|
|
|
width: 30%;
|
2017-02-03 00:33:47 +01:00
|
|
|
}
|
|
|
|
|
2017-05-04 09:05:43 +02:00
|
|
|
#location-slums-description {
|
2017-05-21 07:39:18 +02:00
|
|
|
width: 70%;
|
2017-05-04 09:05:43 +02:00
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#location-return-to-world-button {
|
|
|
|
margin: 10px;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
2018-08-29 17:12:33 +02:00
|
|
|
#location-container > * {
|
2018-07-10 05:10:31 +02:00
|
|
|
margin: 10px 5px 10px 5px;
|
2017-05-04 09:05:43 +02:00
|
|
|
}
|
|
|
|
|
2018-08-29 17:12:33 +02:00
|
|
|
#location-job-reputation,
|
|
|
|
#location-company-favor {
|
2017-06-20 18:11:33 +02:00
|
|
|
display: inline;
|
|
|
|
}
|
2017-06-28 22:53:12 +02:00
|
|
|
|
|
|
|
/* Infiltration */
|
|
|
|
#infiltration-container {
|
|
|
|
position: fixed;
|
|
|
|
padding: 6px;
|
2018-09-03 14:10:00 +02:00
|
|
|
|
|
|
|
span {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2017-06-28 22:53:12 +02:00
|
|
|
}
|
2018-08-29 17:12:33 +02:00
|
|
|
|
2017-07-25 03:06:40 +02:00
|
|
|
#infiltration-left-panel,
|
2017-07-03 21:42:11 +02:00
|
|
|
#infiltration-right-panel {
|
2018-07-09 22:42:54 +02:00
|
|
|
display: inline-block;
|
2018-07-09 22:11:18 +02:00
|
|
|
border: 1px solid #fff;
|
2017-07-03 21:42:11 +02:00
|
|
|
width: 35%;
|
2017-07-25 03:06:40 +02:00
|
|
|
height: 75%;
|
2017-07-03 21:42:11 +02:00
|
|
|
top: 10px;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#infiltration-faction-select {
|
2018-07-09 22:42:54 +02:00
|
|
|
color: #fff;
|
2017-07-03 21:42:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#infiltration-left-panel p,
|
|
|
|
#infiltration-right-panel p {
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
|
2018-09-03 14:10:00 +02:00
|
|
|
#infiltration-buttons {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 21:42:11 +02:00
|
|
|
#infiltration-buttons .a-link-button {
|
2018-07-09 22:42:54 +02:00
|
|
|
display: inline;
|
2017-07-03 21:42:11 +02:00
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stock market */
|
|
|
|
#stock-market-container {
|
|
|
|
position: fixed;
|
|
|
|
padding: 6px;
|
2018-08-29 17:12:33 +02:00
|
|
|
|
2018-08-24 22:44:48 +02:00
|
|
|
p {
|
|
|
|
font-size: $defaultFontSize * 0.8125;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
font-size: $defaultFontSize * 0.875;
|
|
|
|
}
|
|
|
|
h2 {
|
2018-08-29 17:12:33 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: 10px;
|
|
|
|
display: block;
|
2018-08-24 22:44:48 +02:00
|
|
|
}
|
2017-07-03 21:42:11 +02:00
|
|
|
}
|
|
|
|
|
2018-08-26 06:26:42 +02:00
|
|
|
/* Change font size of Stock TIcker headers */
|
|
|
|
#stock-market-list li {
|
|
|
|
button {
|
|
|
|
font-size: $defaultFontSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-03 21:42:11 +02:00
|
|
|
#stock-market-container p {
|
2017-07-25 03:06:40 +02:00
|
|
|
padding: 10px;
|
2017-07-03 21:42:11 +02:00
|
|
|
margin: 10px;
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#stock-market-container a {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
2018-08-23 20:51:57 +02:00
|
|
|
#stock-market-watchlist-filter {
|
2018-08-29 17:12:33 +02:00
|
|
|
width: 50%;
|
|
|
|
margin-left: 10px;
|
2018-08-23 20:51:57 +02:00
|
|
|
}
|
|
|
|
|
2017-10-20 23:59:54 +02:00
|
|
|
.stock-market-input {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 4px;
|
|
|
|
margin: 2px;
|
2018-07-09 22:00:51 +02:00
|
|
|
background-color: #000;
|
2018-07-09 22:11:18 +02:00
|
|
|
border: 1px solid #fff;
|
2017-07-03 21:42:11 +02:00
|
|
|
color: var(--my-font-color);
|
2017-10-20 23:59:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.stock-market-position-text {
|
2018-07-09 22:42:54 +02:00
|
|
|
color: #fff;
|
|
|
|
display: inline-block;
|
2017-07-25 03:06:40 +02:00
|
|
|
}
|
2017-08-13 07:01:33 +02:00
|
|
|
|
2017-10-20 23:59:54 +02:00
|
|
|
.stock-market-order-list {
|
2018-07-09 22:42:54 +02:00
|
|
|
overflow-y: auto;
|
2017-10-20 23:59:54 +02:00
|
|
|
max-height: 100px;
|
|
|
|
}
|
|
|
|
|
2017-10-25 21:47:47 +02:00
|
|
|
.stock-market-order-cancel-btn {
|
2018-07-09 22:00:51 +02:00
|
|
|
background-color: #000;
|
2018-07-09 22:11:18 +02:00
|
|
|
border: 1px solid #fff;
|
2017-10-25 21:47:47 +02:00
|
|
|
color: var(--my-font-color);
|
|
|
|
margin: 2px;
|
2018-07-10 04:37:19 +02:00
|
|
|
padding: 0;
|
2017-10-25 21:47:47 +02:00
|
|
|
}
|
|
|
|
|
2017-08-13 07:01:33 +02:00
|
|
|
/* Gang */
|
|
|
|
#gang-container {
|
|
|
|
position: fixed;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#gang-management-subpage > p {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gang-member-info-div {
|
2018-07-09 22:42:54 +02:00
|
|
|
float: left;
|
2017-08-13 07:01:33 +02:00
|
|
|
background-color: #555;
|
|
|
|
}
|