2016-11-24 16:30:33 -06: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 15:50:17 -05:00
|
|
|
height: 100%;
|
2016-11-24 16:30:33 -06:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-05-06 17:19:18 -05:00
|
|
|
overflow: auto;
|
|
|
|
overflow-y: scroll;
|
2016-11-24 16:30:33 -06: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;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
2017-05-15 10:13:21 -05:00
|
|
|
width: 99%;
|
2017-04-20 03:29:07 -05:00
|
|
|
color: #66ff33;
|
2017-05-15 10:13:21 -05:00
|
|
|
overflow-y: scroll;
|
2016-11-24 16:30:33 -06:00
|
|
|
}
|
|
|
|
|
2017-05-23 21:55:24 -05:00
|
|
|
#script-editor-buttons-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 0xp;
|
|
|
|
margin-right: 0px;
|
2016-11-24 16:30:33 -06:00
|
|
|
}
|
|
|
|
|
2017-05-15 10:13:21 -05:00
|
|
|
#script-editor-save-and-close-button,
|
2017-05-23 21:55:24 -05:00
|
|
|
#script-editor-netscript-doc-button {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-save-and-close-button {
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
2017-05-14 20:43:10 -05:00
|
|
|
#script-editor-netscript-doc-button {
|
|
|
|
float: right;
|
2017-05-23 21:55:24 -05:00
|
|
|
padding-right: 0px;
|
|
|
|
margin-right: 2px;
|
2017-05-14 20:43:10 -05:00
|
|
|
}
|
|
|
|
|
2017-05-23 21:55:24 -05:00
|
|
|
#script-editor-wrapper {
|
|
|
|
height:100%;
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-filename-wrapper {
|
|
|
|
background-color: #555;
|
|
|
|
margin-left: 6px;
|
|
|
|
margin-right: 0px;
|
|
|
|
padding-left: 6px;
|
|
|
|
width: 100%;
|
|
|
|
border: 2px solid white;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-filename-tag {
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
float:center;
|
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
2016-11-24 16:30:33 -06:00
|
|
|
#script-editor-filename {
|
2017-05-23 21:55:24 -05:00
|
|
|
background-color: #555;
|
|
|
|
display: inline-block;
|
|
|
|
float: center;
|
2016-11-24 16:30:33 -06:00
|
|
|
resize: none;
|
2017-05-23 21:55:24 -05:00
|
|
|
color: white;
|
|
|
|
margin: 4px;
|
|
|
|
|
|
|
|
padding: 2px;
|
2016-11-24 16:30:33 -06:00
|
|
|
|
2017-04-23 20:43:41 -05: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 16:30:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-status {
|
|
|
|
float: left;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-text {
|
|
|
|
color: #66ff33;
|
2017-05-23 21:55:24 -05:00
|
|
|
height: 80%;
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 6px;
|
|
|
|
|
|
|
|
padding-left: 6px;
|
|
|
|
padding-top: 6px;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
|
2017-04-23 20:43:41 -05: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 12:20:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Active scripts */
|
2017-04-17 23:32:17 -05:00
|
|
|
.active-scripts-list {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2016-12-19 12:20:19 -06:00
|
|
|
#active-scripts-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-04-19 14:19:33 -05:00
|
|
|
overflow-y: scroll;
|
2016-12-19 12:20:19 -06:00
|
|
|
}
|
|
|
|
|
2017-05-30 19:00:24 -05:00
|
|
|
#active-scripts-text,
|
|
|
|
#active-scripts-total-prod {
|
2017-05-20 22:45:36 -05:00
|
|
|
width: 70%;
|
2017-05-05 11:52:48 -05:00
|
|
|
margin: 6px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2017-06-06 16:22:57 -05:00
|
|
|
.active-scripts-server-header {
|
|
|
|
background-color: #444;
|
|
|
|
font-size: 20px;
|
|
|
|
color: white;
|
|
|
|
margin: 6px 6px 0px 6px;
|
|
|
|
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 (+) */
|
|
|
|
font-size: 13px;
|
|
|
|
color: white;
|
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
2017-05-04 20:08:44 -05:00
|
|
|
}
|
|
|
|
|
2017-06-06 16:22:57 -05:00
|
|
|
.active-scripts-server-header.active:after {
|
|
|
|
content: "\2796"; /* "minus" sign (-) */
|
|
|
|
font-size: 13px;
|
|
|
|
color: white;
|
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-server-panel {
|
|
|
|
margin: 0px 6px 6px 6px;
|
2017-06-06 23:09:53 -05:00
|
|
|
padding: 0px 6px 6px 6px;
|
2017-06-06 16:22:57 -05: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;
|
2016-12-19 12:20:19 -06:00
|
|
|
color: #66ff33;
|
2017-06-06 16:22:57 -05:00
|
|
|
padding: 4px;
|
|
|
|
padding-left: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: auto;
|
|
|
|
text-align: left;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
2016-12-19 12:20:19 -06:00
|
|
|
}
|
|
|
|
|
2017-06-06 16:22:57 -05:00
|
|
|
.active-scripts-script-header:hover,
|
|
|
|
.active-scripts-script-header.active:hover {
|
|
|
|
background-color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-script-header.active {
|
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-script-header:after {
|
|
|
|
content: '\02795'; /* "plus" sign (+) */
|
|
|
|
font-size: 13px;
|
|
|
|
color: #66ff33;
|
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
2017-01-03 10:24:41 -06:00
|
|
|
}
|
|
|
|
|
2017-06-06 16:22:57 -05:00
|
|
|
.active-scripts-script-header.active:after {
|
|
|
|
content: "\2796"; /* "minus" sign (-) */
|
|
|
|
font-size: 13px;
|
|
|
|
color: #66ff33;
|
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-script-panel {
|
|
|
|
padding: 0 18px;
|
|
|
|
background-color: #555;
|
|
|
|
width: auto;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-scripts-script-panel p,
|
|
|
|
.active-scripts-script-panel h2,
|
|
|
|
.active-scripts-script-panel ul,
|
|
|
|
.active-scripts-script-panel li {
|
|
|
|
background-color: #555;
|
|
|
|
width: auto;
|
|
|
|
color: white;
|
|
|
|
margin-left: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-27 00:01:21 -05:00
|
|
|
/* Hacknet Nodes */
|
|
|
|
#hacknet-nodes-container {
|
|
|
|
position: fixed;
|
2017-05-04 02:05:43 -05:00
|
|
|
padding: 10px;
|
2017-04-27 00:01:21 -05:00
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-04-27 15:02:58 -05:00
|
|
|
overflow-y: scroll;
|
2017-04-27 00:01:21 -05:00
|
|
|
}
|
|
|
|
|
2017-04-27 15:02:58 -05:00
|
|
|
#hacknet-nodes-container li{
|
|
|
|
padding: 6px;
|
|
|
|
margin: 6px;
|
2017-05-21 16:04:57 -05:00
|
|
|
width: 70%;
|
2017-04-27 15:02:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#hacknet-nodes-text,
|
|
|
|
#hacknet-nodes-money {
|
2017-05-20 22:45:36 -05:00
|
|
|
width: 70%;
|
2017-04-27 15:02:58 -05:00
|
|
|
margin: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2017-05-16 16:22:54 -05:00
|
|
|
#hacknet-nodes-purchase-button {
|
2017-05-23 14:26:52 -05:00
|
|
|
display: inline-block;
|
2017-05-16 16:22:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#hacknet-nodes-money-multipliers-div {
|
|
|
|
display: inline-block;
|
2017-05-21 00:39:18 -05:00
|
|
|
width: 70%;
|
2017-05-16 16:22:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#hacknet-nodes-multipliers {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2017-04-27 15:02:58 -05:00
|
|
|
.hacknet-node {
|
|
|
|
margin: 6px;
|
|
|
|
padding: 6px;
|
2017-04-27 16:36:59 -05:00
|
|
|
width: 85%;
|
2017-04-27 15:02:58 -05: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 00:01:21 -05:00
|
|
|
}
|
|
|
|
|
2017-01-27 21:10:16 -06:00
|
|
|
/* World */
|
|
|
|
#world-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
|
2017-05-06 14:12:45 -05:00
|
|
|
#world-city-name,
|
|
|
|
#world-city-desc {
|
|
|
|
padding: 4px;
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
|
2017-01-27 21:10:16 -06:00
|
|
|
/* Create program */
|
|
|
|
#create-program-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
|
2017-05-08 09:33:26 -05:00
|
|
|
#create-program-page-text {
|
2017-05-20 22:45:36 -05:00
|
|
|
width: 70%;
|
2017-05-08 09:33:26 -05:00
|
|
|
}
|
|
|
|
|
2017-05-25 03:09:51 -05:00
|
|
|
#create-program-list {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
2017-03-31 07:32:04 -05:00
|
|
|
.create-program-a-link-button {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #555;
|
|
|
|
color: #FFFFFF;
|
2017-05-08 12:40:53 -05:00
|
|
|
padding: 4px;
|
|
|
|
border: 1px solid #333333;
|
2017-05-23 14:26:52 -05:00
|
|
|
/*width: 30%;*/
|
2017-03-31 07:32:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.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 14:19:33 -05:00
|
|
|
/* Factions and Faction (Single Faction page) */
|
2017-01-27 21:10:16 -06:00
|
|
|
#factions-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-01-30 21:41:42 -06:00
|
|
|
color: #66ff33;
|
2017-05-23 09:31:55 -05:00
|
|
|
overflow-y: auto;
|
2017-01-27 21:10:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#faction-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
2017-06-03 23:56:18 -05:00
|
|
|
width: 99%;
|
|
|
|
overflow: auto;
|
2017-05-23 09:31:55 -05:00
|
|
|
overflow-y: auto;
|
2017-01-27 21:10:16 -06:00
|
|
|
}
|
|
|
|
|
2017-04-19 00:02:40 -05:00
|
|
|
#factions-list li {
|
|
|
|
padding: 6px;
|
|
|
|
margin: 6px;
|
|
|
|
}
|
|
|
|
|
2017-05-06 14:12:45 -05:00
|
|
|
#faction-hack-div,
|
|
|
|
#faction-fieldwork-div,
|
2017-05-20 03:19:13 -05:00
|
|
|
#faction-securitywork-div,
|
|
|
|
#faction-donate-div {
|
2017-05-06 14:12:45 -05:00
|
|
|
overflow: hidden;
|
2017-05-21 00:39:18 -05:00
|
|
|
width: 70%;
|
2017-05-06 14:12:45 -05:00
|
|
|
height: 100%;
|
2017-01-09 16:14:18 -06:00
|
|
|
}
|
|
|
|
|
2017-05-06 14:12:45 -05:00
|
|
|
#faction-hack-div-wrapper,
|
|
|
|
#faction-fieldwork-div-wrapper,
|
2017-05-20 03:19:13 -05:00
|
|
|
#faction-securitywork-div-wrapper,
|
|
|
|
#faction-donate-div-wrapper {
|
2017-05-06 14:12:45 -05:00
|
|
|
float: left;
|
|
|
|
border: 2px solid #333;
|
|
|
|
padding: 14px 6px 4px 6px;
|
|
|
|
margin: 6px;
|
|
|
|
}
|
|
|
|
|
2017-05-20 03:19:13 -05:00
|
|
|
#faction-hack-button,
|
|
|
|
#faction-fieldwork-button,
|
|
|
|
#faction-securitywork-button {
|
2017-05-06 14:12:45 -05:00
|
|
|
margin: 8px;
|
2017-01-09 16:14:18 -06:00
|
|
|
}
|
|
|
|
|
2017-05-20 03:19:13 -05:00
|
|
|
#faction-donate-amount-txt,
|
|
|
|
#faction-donate-input {
|
|
|
|
padding: 6px;
|
|
|
|
margin: 6px;
|
|
|
|
display: inline-block;
|
|
|
|
color: #66ff33;
|
|
|
|
}
|
|
|
|
|
|
|
|
#faction-donate-amount-txt {
|
|
|
|
width:50%;
|
|
|
|
}
|
|
|
|
|
2017-05-06 14:12:45 -05:00
|
|
|
div.faction-clear {
|
|
|
|
clear: both;
|
2017-01-27 21:10:16 -06:00
|
|
|
}
|
|
|
|
|
2017-04-19 14:19:33 -05:00
|
|
|
#faction-container p {
|
|
|
|
padding: 6px;
|
|
|
|
margin: 6px;
|
2017-05-21 00:39:18 -05:00
|
|
|
width: 70%;
|
2017-04-19 14:19:33 -05:00
|
|
|
}
|
|
|
|
|
2017-02-28 11:47:43 -06: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 16:39:25 -05:00
|
|
|
#faction-augmentations-container p,
|
|
|
|
#faction-augmentations-container a,
|
|
|
|
#faction-augmentations-container ul,
|
|
|
|
#faction-augmentations-container h1{
|
|
|
|
margin: 8px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2017-05-21 00:39:18 -05:00
|
|
|
#faction-augmentations-list > li{
|
|
|
|
margin: 4px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2017-01-30 21:41:42 -06:00
|
|
|
/* World */
|
|
|
|
#world-container li {
|
|
|
|
margin: 0 0 15px 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2017-02-28 11:47:43 -06:00
|
|
|
/* Augmentations */
|
2017-01-27 21:10:16 -06:00
|
|
|
#augmentations-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
2017-02-28 11:47:43 -06:00
|
|
|
color: #66ff33;
|
2017-05-10 12:42:46 -05:00
|
|
|
overflow-y: scroll;
|
2017-01-27 21:10:16 -06:00
|
|
|
}
|
|
|
|
|
2017-05-05 10:50:55 -05:00
|
|
|
#augmentations-list li {
|
2017-05-21 00:39:18 -05:00
|
|
|
width: 70%;
|
2017-05-05 10:50:55 -05:00
|
|
|
background-color: #333;
|
2017-05-04 20:08:44 -05:00
|
|
|
}
|
|
|
|
|
2017-05-05 10:50:55 -05:00
|
|
|
#augmentations-list h2,
|
|
|
|
#augmentations-list p {
|
|
|
|
margin: 4px;
|
2017-05-04 20:08:44 -05:00
|
|
|
color: #66ff33;
|
2017-05-05 10:50:55 -05:00
|
|
|
padding: 8px;
|
2017-05-21 00:39:18 -05:00
|
|
|
width: 70%;
|
2017-05-04 20:08:44 -05:00
|
|
|
background-color: #333;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-02-20 16:45:36 -06:00
|
|
|
.installed-augmentation {
|
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
2017-01-27 21:10:16 -06:00
|
|
|
/* Tutorial */
|
|
|
|
#tutorial-container {
|
|
|
|
position: fixed;
|
2017-05-06 17:19:18 -05:00
|
|
|
height: 100%;
|
2017-01-27 21:10:16 -06:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
margin-left: 10%;
|
2017-05-06 17:19:18 -05:00
|
|
|
width: 99%;
|
|
|
|
overflow: auto;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tutorial-text {
|
2017-05-20 22:45:36 -05:00
|
|
|
width: 70%;
|
2017-05-06 17:19:18 -05:00
|
|
|
margin: 10px;
|
2017-02-02 17:33:47 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Location */
|
|
|
|
#location-container {
|
|
|
|
color: #66ff33;
|
|
|
|
position: fixed;
|
2017-05-04 02:05:43 -05:00
|
|
|
padding: 6px;
|
2017-02-02 17:33:47 -06:00
|
|
|
height: 100%;
|
|
|
|
margin-left: 10%;
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
|
2017-05-04 02:05:43 -05:00
|
|
|
#location-slums-description {
|
2017-05-21 00:39:18 -05:00
|
|
|
width: 70%;
|
2017-05-04 02:05:43 -05:00
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#location-return-to-world-button {
|
|
|
|
margin: 10px;
|
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
2017-02-02 17:33:47 -06:00
|
|
|
#location-container * {
|
|
|
|
margin: 10px 5px 10px 5px;
|
2017-05-04 02:05:43 -05:00
|
|
|
}
|
|
|
|
|