mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
db2bf79e3b
* infiltration use buttons instead of a links * minor accessibility patch * Hospitalization will not cost more than 10% of the players money. * Adde hospitalization netscript function * Removed the suggestion that the combat path will lead to Daedalus, it still will. But new players should not be told that this is a viable path to completing a BitNode. * getMemberInformation now returns everything about the member. * New netscript function to get the players hacknet server hash capacity * yesno dialog box will not keep older messages anymore * v0.51.1
188 lines
2.9 KiB
SCSS
188 lines
2.9 KiB
SCSS
@import "mixins";
|
|
@import "theme";
|
|
|
|
/* CSS for different main menu pages, such as character info, script editor, etc (but excluding
|
|
terminal which has its own page) */
|
|
|
|
.generic-menupage-container {
|
|
height: 100%;
|
|
padding-left: 10px;
|
|
margin-left: 10%;
|
|
width: 99%;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
/* Character Info */
|
|
#character-container {
|
|
padding-top: 10px;
|
|
position: fixed;
|
|
}
|
|
|
|
/* World */
|
|
#world-container {
|
|
position: fixed;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#world-city-name,
|
|
#world-city-desc {
|
|
padding: 4px;
|
|
margin: 4px;
|
|
}
|
|
|
|
/* Create program */
|
|
#create-program-container {
|
|
position: fixed;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#create-program-page-text,
|
|
#create-program-list {
|
|
width: 70%;
|
|
}
|
|
|
|
/* Factions and Faction (Single Faction page) */
|
|
#factions-container {
|
|
position: fixed;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#faction-container {
|
|
position: fixed;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.faction-work-div {
|
|
width: 70%;
|
|
height: 100%;
|
|
}
|
|
|
|
.faction-work-div-wrapper {
|
|
overflow: hidden;
|
|
border: 2px solid #333;
|
|
padding: 6px;
|
|
margin: 6px;
|
|
width: 70%;
|
|
}
|
|
|
|
#faction-container p,
|
|
#faction-container pre {
|
|
padding: 4px 6px;
|
|
margin: 4px 6px;
|
|
}
|
|
|
|
#faction-container pre {
|
|
width: 70%;
|
|
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+ */
|
|
}
|
|
|
|
/* World */
|
|
#world-container li {
|
|
margin: 0 0 15px 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
/* Tutorial */
|
|
#tutorial-container {
|
|
position: fixed;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#tutorial-text {
|
|
width: 70%;
|
|
margin: 10px;
|
|
}
|
|
|
|
#tutorial-container a {
|
|
width: 50%;
|
|
}
|
|
|
|
/* Dev menu */
|
|
#dev-menu-container {
|
|
position: fixed;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
#dev-menu-text {
|
|
width: 70%;
|
|
margin: 10px;
|
|
}
|
|
|
|
#dev-menu-container a {
|
|
width: 50%;
|
|
}
|
|
|
|
/* Location */
|
|
#location-container {
|
|
position: fixed;
|
|
padding: 6px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
#location-container a {
|
|
display: inline-block;
|
|
width: 30%;
|
|
}
|
|
|
|
#location-slums-description {
|
|
width: 70%;
|
|
margin: 10px;
|
|
}
|
|
|
|
#location-return-to-world-button {
|
|
margin: 10px;
|
|
padding: 6px;
|
|
}
|
|
|
|
#location-container > * {
|
|
margin: 10px 5px 10px 5px;
|
|
}
|
|
|
|
#location-job-reputation,
|
|
#location-company-favor {
|
|
display: inline;
|
|
}
|
|
|
|
/* Infiltration */
|
|
#infiltration-container {
|
|
position: fixed;
|
|
padding: 6px;
|
|
|
|
span {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
#infiltration-left-panel,
|
|
#infiltration-right-panel {
|
|
display: inline-block;
|
|
border: 1px solid #fff;
|
|
width: 35%;
|
|
height: 75%;
|
|
top: 10px;
|
|
overflow-y: auto;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
#infiltration-faction-select {
|
|
color: #fff;
|
|
}
|
|
|
|
#infiltration-left-panel p,
|
|
#infiltration-right-panel p {
|
|
margin: 4px;
|
|
}
|
|
|
|
#infiltration-buttons {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#infiltration-buttons .a-link-button {
|
|
display: inline;
|
|
}
|