2016-11-24 23:30:33 +01:00
|
|
|
/* CSS for different main menu pages, such as character info, script editor, etc (but excluding
|
|
|
|
terminal which has its own page) */
|
|
|
|
|
|
|
|
/* Character Info */
|
|
|
|
#character-container {
|
|
|
|
position: fixed;
|
2017-05-04 22:50:17 +02:00
|
|
|
height: 100%;
|
2016-11-24 23:30:33 +01:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-05-04 22:50:17 +02:00
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
#character-info {
|
|
|
|
overflow-y: scroll;
|
2016-11-24 23:30:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Script Editor */
|
|
|
|
/* This temp element is used for auto adjusting filename field */
|
|
|
|
.tmp-element {
|
|
|
|
visibility: hidden;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
2017-04-24 03:43:41 +02:00
|
|
|
width: 75%;
|
2017-04-20 10:29:07 +02:00
|
|
|
color: #66ff33;
|
2016-11-24 23:30:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-filename-tag {
|
2017-05-03 06:38:58 +02:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 0px;
|
2016-11-24 23:30:33 +01:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2017-05-03 06:38:58 +02:00
|
|
|
#script-editor-save-and-close-button {
|
|
|
|
float: right;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2017-04-24 03:43:41 +02:00
|
|
|
|
2016-11-24 23:30:33 +01:00
|
|
|
#script-editor-filename {
|
|
|
|
float: left;
|
|
|
|
resize: none;
|
|
|
|
color: #66ff33;
|
|
|
|
width: 100%;
|
2017-04-24 03:43:41 +02:00
|
|
|
margin: 4px;
|
|
|
|
padding: 4px;
|
2016-11-24 23:30:33 +01:00
|
|
|
|
2017-04-24 03:43:41 +02:00
|
|
|
border: 2px solid white;
|
|
|
|
-webkit-box-shadow:
|
|
|
|
inset 0 0 8px rgba(0,0,0,0.1),
|
|
|
|
0 0 16px rgba(0,0,0,0.1);
|
|
|
|
-moz-box-shadow:
|
|
|
|
inset 0 0 8px rgba(0,0,0,0.1),
|
|
|
|
0 0 16px rgba(0,0,0,0.1);
|
|
|
|
box-shadow:
|
|
|
|
inset 0 0 8px rgba(0,0,0,0.1),
|
|
|
|
0 0 16px rgba(0,0,0,0.1);
|
2016-11-24 23:30:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-status {
|
|
|
|
float: left;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-text {
|
|
|
|
color: #66ff33;
|
2017-04-24 03:43:41 +02:00
|
|
|
width: 100%;
|
2016-11-24 23:30:33 +01:00
|
|
|
height: 100%;
|
2017-04-24 03:43:41 +02:00
|
|
|
margin: 4px;
|
|
|
|
padding: 4px;
|
2016-11-24 23:30:33 +01:00
|
|
|
|
2017-04-24 03:43:41 +02:00
|
|
|
border: 2px solid white;
|
|
|
|
-webkit-box-shadow:
|
|
|
|
inset 0 0 8px rgba(0,0,0,0.1),
|
|
|
|
0 0 16px rgba(0,0,0,0.1);
|
|
|
|
-moz-box-shadow:
|
|
|
|
inset 0 0 8px rgba(0,0,0,0.1),
|
|
|
|
0 0 16px rgba(0,0,0,0.1);
|
|
|
|
box-shadow:
|
|
|
|
inset 0 0 8px rgba(0,0,0,0.1),
|
|
|
|
0 0 16px rgba(0,0,0,0.1);
|
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 {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-04-19 21:19:33 +02:00
|
|
|
overflow-y: scroll;
|
2016-12-19 19:20:19 +01:00
|
|
|
}
|
|
|
|
|
2017-05-05 18:52:48 +02:00
|
|
|
#active-scripts-text {
|
|
|
|
width: 80%;
|
|
|
|
margin: 6px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2017-05-05 03:08:44 +02:00
|
|
|
.active-scripts-list > li {
|
|
|
|
margin: 6px;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
2016-12-19 19:20:19 +01:00
|
|
|
.active-scripts-list>li h2{
|
|
|
|
color: #66ff33;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
background-color: #333;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-list>li p {
|
|
|
|
color: #66ff33;
|
|
|
|
padding: 10px;
|
|
|
|
padding-left: 40px;
|
|
|
|
background-color: #333;
|
|
|
|
text-decoration: none;
|
2017-01-03 17:24:41 +01: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
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-04-27 22:02:58 +02:00
|
|
|
overflow-y: scroll;
|
2017-04-27 07:01:21 +02:00
|
|
|
}
|
|
|
|
|
2017-04-27 22:02:58 +02:00
|
|
|
#hacknet-nodes-container li{
|
|
|
|
padding: 6px;
|
|
|
|
margin: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#hacknet-nodes-text,
|
|
|
|
#hacknet-nodes-money {
|
|
|
|
width: 80%;
|
|
|
|
margin: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hacknet-node {
|
|
|
|
margin: 6px;
|
|
|
|
padding: 6px;
|
2017-04-27 07:01:21 +02:00
|
|
|
|
2017-04-27 23:36:59 +02:00
|
|
|
width: 85%;
|
|
|
|
|
2017-04-27 22:02:58 +02:00
|
|
|
border: 2px solid white;
|
|
|
|
-webkit-box-shadow:
|
|
|
|
inset 0 0 8px rgba(0,0,0,0.1),
|
|
|
|
0 0 16px rgba(0,0,0,0.1);
|
|
|
|
-moz-box-shadow:
|
|
|
|
inset 0 0 8px rgba(0,0,0,0.1),
|
|
|
|
0 0 16px rgba(0,0,0,0.1);
|
|
|
|
box-shadow:
|
|
|
|
inset 0 0 8px rgba(0,0,0,0.1),
|
|
|
|
0 0 16px rgba(0,0,0,0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.hacknet-node-button-div a {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hacknet-node-button-div:not(:last-child) {
|
|
|
|
border-bottom: none;
|
2017-04-27 07:01:21 +02:00
|
|
|
}
|
|
|
|
|
2017-01-28 04:10:16 +01:00
|
|
|
/* World */
|
|
|
|
#world-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create program */
|
|
|
|
#create-program-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
|
2017-03-31 14:32:04 +02:00
|
|
|
.create-program-a-link-button {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #555;
|
|
|
|
color: #FFFFFF;
|
|
|
|
padding: 4px 4px 4px 4px;
|
|
|
|
border-top: 1px solid #333333;
|
|
|
|
border-right: 1px solid #333333;
|
|
|
|
border-bottom: 1px solid #333333;
|
|
|
|
border-left: 1px solid #333333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.create-program-a-link-button-inactive {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #555;
|
|
|
|
color: #FFFFFF;
|
|
|
|
padding: 4px 4px 4px 4px;
|
|
|
|
border-top: 1px solid #333333;
|
|
|
|
border-right: 1px solid #333333;
|
|
|
|
border-bottom: 1px solid #333333;
|
|
|
|
border-left: 1px solid #333333;
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-01-31 04:41:42 +01:00
|
|
|
color: #66ff33;
|
2017-01-28 04:10:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#faction-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
2017-04-19 07:02:40 +02:00
|
|
|
#factions-list li {
|
|
|
|
padding: 6px;
|
|
|
|
margin: 6px;
|
|
|
|
}
|
|
|
|
|
2017-01-09 23:14:18 +01:00
|
|
|
#faction-hack-button-div, #faction-hack-text-div {
|
|
|
|
display:inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#faction-fieldwork-button-div, #faction-fieldwork-text-div {
|
|
|
|
display:inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#faction-securitywork-button-div, #faction-securitywork-text-div {
|
|
|
|
display:inline-block;
|
2017-01-28 04:10:16 +01:00
|
|
|
}
|
|
|
|
|
2017-04-19 21:19:33 +02:00
|
|
|
#faction-container p {
|
|
|
|
padding: 6px;
|
|
|
|
margin: 6px;
|
|
|
|
}
|
|
|
|
|
2017-02-28 18:47:43 +01:00
|
|
|
/* Faction Augmentations */
|
|
|
|
#faction-augmentations-container{
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
|
|
|
color: #66ff33;
|
|
|
|
}
|
|
|
|
|
2017-04-19 23:39:25 +02:00
|
|
|
#faction-augmentations-container p,
|
|
|
|
#faction-augmentations-container a,
|
|
|
|
#faction-augmentations-container ul,
|
|
|
|
#faction-augmentations-container h1{
|
|
|
|
margin: 8px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-02-28 18:47:43 +01:00
|
|
|
color: #66ff33;
|
2017-01-28 04:10:16 +01:00
|
|
|
}
|
|
|
|
|
2017-05-05 17:50:55 +02:00
|
|
|
#augmentations-list li {
|
2017-05-05 03:08:44 +02:00
|
|
|
width: 80%;
|
2017-05-05 17:50:55 +02:00
|
|
|
background-color: #333;
|
2017-05-05 03:08:44 +02:00
|
|
|
}
|
|
|
|
|
2017-05-05 17:50:55 +02:00
|
|
|
#augmentations-list h2,
|
|
|
|
#augmentations-list p {
|
|
|
|
margin: 4px;
|
2017-05-05 03:08:44 +02:00
|
|
|
color: #66ff33;
|
2017-05-05 17:50:55 +02:00
|
|
|
padding: 8px;
|
|
|
|
width: 80%;
|
2017-05-05 03:08:44 +02:00
|
|
|
background-color: #333;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-02-20 23:45:36 +01:00
|
|
|
.installed-augmentation {
|
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
2017-01-28 04:10:16 +01:00
|
|
|
/* Tutorial */
|
|
|
|
#tutorial-container {
|
2017-02-03 00:33:47 +01:00
|
|
|
color: #66ff33;
|
2017-01-28 04:10:16 +01:00
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
2017-05-04 09:05:43 +02:00
|
|
|
width: 85%;
|
2017-02-03 00:33:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Location */
|
|
|
|
#location-container {
|
|
|
|
color: #66ff33;
|
|
|
|
position: fixed;
|
2017-05-04 09:05:43 +02:00
|
|
|
padding: 6px;
|
2017-02-03 00:33:47 +01:00
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
|
2017-05-04 09:05:43 +02:00
|
|
|
#location-slums-description {
|
|
|
|
width: 80%;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#location-return-to-world-button {
|
|
|
|
margin: 10px;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
2017-02-03 00:33:47 +01:00
|
|
|
#location-container * {
|
|
|
|
margin: 10px 5px 10px 5px;
|
2017-05-04 09:05:43 +02:00
|
|
|
}
|
|
|
|
|