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;
|
|
|
|
}
|
|
|
|
|
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-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-01-31 04:41:42 +01:00
|
|
|
/* World */
|
|
|
|
#world-container li {
|
|
|
|
margin: 0 0 15px 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
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;
|
2021-06-13 17:05:40 +02:00
|
|
|
margin: 5px;
|
|
|
|
width: 70%;
|
2017-07-03 21:42:11 +02:00
|
|
|
}
|