bitburner-src/css/styles.css

541 lines
11 KiB
CSS
Raw Normal View History

2017-06-07 03:23:51 +02:00
:root{
--my-font-color: #6f3;
--my-background-color: #000;
--my-highlight-color: #fff;
2017-06-07 03:23:51 +02:00
}
2017-08-20 03:36:19 +02:00
* {
2016-10-16 01:23:04 +02:00
margin: 0;
padding: 0;
font-size: 16px;
font-family: 'Lucida Console', 'Lucida Sans Unicode', 'Fira Mono', 'Consolas', 'Courier New', Courier, monospace, 'Times New Roman';
2017-09-01 16:12:40 +02:00
}
body {
2017-06-07 03:23:51 +02:00
background-color: var(--my-background-color);
2016-10-16 01:23:04 +02:00
}
p,
pre,
h2,
.text {
2017-06-07 03:23:51 +02:00
color: var(--my-font-color);
2016-10-16 01:23:04 +02:00
}
h1 {
font-size: 22px;
2017-06-07 03:23:51 +02:00
color: var(--my-font-color);
}
2016-11-24 23:30:33 +01:00
ul {
padding: 2px;
list-style-type: none;
}
li {
list-style-type: none;
}
2017-04-24 17:35:10 +02:00
span {
margin: 4px;
padding: 4px;
}
2017-09-01 16:12:40 +02:00
#entire-game-container {
background-color: transparent;
2017-09-01 16:12:40 +02:00
}
/* Disable border highlight on elements */
input:focus,
textarea:focus,
button:focus,
td:focus,
tr:focus {
outline: none;
}
2017-07-22 00:54:55 +02:00
/* Main navigation menu */
.mainmenu {
list-style-type: none;
margin: 0;
padding: 0;
width: 10%;
position: fixed;
height: 100%;
overflow: auto;
2017-08-20 03:36:19 +02:00
border: 0;
border-bottom: 1px solid #000;
border-radius: 0;
background-color: #333;
}
2017-07-22 00:54:55 +02:00
/* Default buttons */
.mainmenu>li a {
display: block;
color: #e6e6e6;
2017-07-22 00:54:55 +02:00
background-color: #555;
padding: 16px;
text-decoration: none;
}
2017-07-22 00:54:55 +02:00
/* Hovering makes them lighter */
.mainmenu>li a:hover,
.mainmenu>li a:hover:not(.active),
.mainmenu>li a:focus {
background-color: #777;
color: #fff;
2016-10-16 01:23:04 +02:00
}
2017-07-22 00:54:55 +02:00
/* Panel headers can become active, and they are "lighter" than the rest */
.mainmenu>li a.active {
background-color: #777;
color: #fff;
2016-10-16 01:23:04 +02:00
}
2017-07-22 00:54:55 +02:00
.mainmenu>li a.active:hover {
background-color: #aaa;
2017-07-22 00:54:55 +02:00
}
/* Plus and minus signs */
.mainmenu-accordion-header:after {
content: '\02795';
font-size: 13px;
color: #fff;
2017-07-22 00:54:55 +02:00
float: right;
margin-left: 5px;
}
.mainmenu-accordion-header.opened:after {
content: "\2796";
}
.mainmenu-accordion-header.opened {
background-color: #222;
2017-07-22 00:54:55 +02:00
}
/* Slide down transition */
.mainmenu-accordion-panel {
max-height: 0;
opacity: 1;
transition: max-height 0.2s ease-out;
}
/* Borders */
.mainmenu-accordion-header {
border: 2px solid #fff;
2016-10-16 01:23:04 +02:00
}
/* Make html links ("a" elements) nice looking buttons with this class */
a:link, a:visited {
color: #fff;
}
.a-link-button {
text-decoration: none;
background-color: #555;
color: #fff;
padding: 5px;
margin: 5px;
border: 1px solid #333;
-moz-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
2016-10-16 01:23:04 +02:00
}
.a-link-button:hover {
background-color: #666;
}
2017-09-26 04:44:33 +02:00
.a-link-button:active {
-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
2017-09-26 04:44:33 +02:00
}
/* Make anchor tags ("a" elements) inactive (not clickable) */
.a-link-button-inactive {
text-decoration: none;
background-color: #333;
color: #fff;
padding: 5px;
margin: 5px;
border: 1px solid #333;
cursor: default;
}
.a-link-button-inactive:hover .tooltiptext,
.a-link-button-inactive:hover .tooltiptexthigh,
.a-link-button-inactive:hover .tooltiptextleft {
visibility: visible;
}
.a-link-button-inactive:active {
pointer-events: none;
}
/* Make anchor tags ("a" elements) for activated actions */
.a-link-button-bought {
text-decoration: none;
background-color: #0a0;
color: #fff;
padding: 5px;
margin: 5px;
border: 1px solid #0a0;
cursor: default;
}
.a-link-button-bought:hover .tooltiptext,
.a-link-button-bought:hover .tooltiptexthigh,
.a-link-button-bought:hover .tooltiptextleft {
visibility: visible;
}
.a-link-button-bought:active {
pointer-events: none;
}
.dropdown {
color: #fff;
background-color: #000;
}
.text-input {
color: #fff;
background-color: #000;
}
/* Notification icon (for create program right now only) */
2017-07-22 00:54:55 +02:00
#create-program-tab {
position: relative;
}
#create-program-notification {
font-size: 10px;
2017-08-20 03:36:19 +02:00
position: absolute; /* Position the badge within the relatively positioned button */
top: 0;
right: 0;
}
.notification-on {
background-color: #fa3e3e;
color: #fff;
border-radius: 2px;
padding: 1px 3px;
}
.notification-off {
background-color: #333;
color: #333;
border-radius: 0;
padding: 0;
}
/* Tool tips (when hovering over an element */
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
2017-05-10 22:21:15 +02:00
width: 300px;
2017-06-07 03:23:51 +02:00
background-color: var(--my-background-color);
border: 2px solid var(--my-highlight-color);
color: #fff;
text-align: center;
padding: 4px;
left: 101%;
2017-08-20 03:36:19 +02:00
position: absolute;
2017-09-25 14:50:19 +02:00
z-index: 99;
}
/* Same thing as a normal tooltip except its a bit higher */
.tooltip .tooltiptexthigh {
visibility: hidden;
width: 300px;
background-color: var(--my-background-color);
border: 2px solid var(--my-highlight-color);
color: #fff;
text-align: center;
padding: 4px;
left: 101%;
bottom: -25%;
position: absolute;
z-index: 99;
}
/* Similar to a normal tooltip except its positioned on the left of the elemnt
rather than the right to avoid exceeding the elements normal width */
.tooltip .tooltiptextleft {
visibility: hidden;
width: 300px;
background-color: var(--my-background-color);
border: 2px solid var(--my-highlight-color);
color: #fff;
text-align: center;
padding: 4px;
left: 40%;
bottom: -10%;
position: absolute;
z-index: 99;
}
.tooltip:hover .tooltiptext,
.tooltip:hover .tooltiptexthigh,
.tooltip:hover .tooltiptextleft {
visibility: visible;
2017-05-15 07:09:14 +02:00
}
2018-03-12 20:39:04 +01:00
/* help tip. Question mark that opens popup with info/details */
.help-tip {
content: '?';
padding: 1px;
margin-left: 3px;
color: #fff;
border: 1px solid #fff;
border-radius: 5px;
display: inline-block;
2018-03-12 20:39:04 +01:00
}
.help-tip:hover {
background-color: #888;
}
.help-tip:active {
-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
2018-03-12 20:39:04 +01:00
}
/* Flashing button (Red) */
2017-05-15 07:09:14 +02:00
@-webkit-keyframes glowing {
0% { background-color: #b20000; -webkit-box-shadow: 0 0 3px #b20000; }
50% { background-color: #f00; -webkit-box-shadow: 0 0 40px #f00; }
100% { background-color: #b20000; -webkit-box-shadow: 0 0 3px #b20000; }
2017-05-15 07:09:14 +02:00
}
@-moz-keyframes glowing {
0% { background-color: #b20000; -moz-box-shadow: 0 0 3px #b20000; }
50% { background-color: #f00; -moz-box-shadow: 0 0 40px #f00; }
100% { background-color: #b20000; -moz-box-shadow: 0 0 3px #b20000; }
2017-05-15 07:09:14 +02:00
}
@-o-keyframes glowing {
0% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
50% { background-color: #f00; box-shadow: 0 0 40px #f00; }
100% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
2017-05-15 07:09:14 +02:00
}
@keyframes glowing {
0% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
50% { background-color: #f00; box-shadow: 0 0 40px #f00; }
100% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
2017-05-15 07:09:14 +02:00
}
.flashing-button {
-webkit-animation: glowing 1500ms infinite;
-moz-animation: glowing 1500ms infinite;
-o-animation: glowing 1500ms infinite;
animation: glowing 1500ms infinite;
}
/* Blinking Cursor */
/* ----- blinking cursor animation ----- */
.typed-cursor{
opacity: 1;
-webkit-animation: blink 0.95s infinite;
-moz-animation: blink 0.95s infinite;
-ms-animation: blink 0.95s infinite;
-o-animation: blink 0.95s infinite;
animation: blink 0.95s infinite;
}
@-keyframes blink{
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
@-webkit-keyframes blink{
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
@-moz-keyframes blink{
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
@-ms-keyframes blink{
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
@-o-keyframes blink{
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
/* Status text */
@-webkit-keyframes status-text{
from{
opacity: 1;
top: 0;
}
to{
opacity: 0;
top: 0;
}
}
.status-text{
display: inline;
position: fixed;
top: 0;
-webkit-animation: status-text 3s 1;
background-color: transparent;
height: 15%;
}
#status-text-container {
background-color: transparent;
}
#status-text {
font-size: 20px;
color: #fff;
right: 0;
bottom: 0;
padding: 4px;
margin-right: 14px;
background-color: transparent;
z-index: 2;
width: auto;
}
2017-05-20 09:33:33 +02:00
/* Character Overview */
#character-overview-wrapper {
position: relative;
}
2017-05-20 09:33:33 +02:00
#character-overview-container {
display: none;
position: absolute; /* Stay in place */
2017-05-20 09:33:33 +02:00
right: 0;
top: 0;
2017-09-19 20:38:03 +02:00
height: 205px; /* Full height */
2017-05-20 09:33:33 +02:00
padding: 5px;
2017-06-07 03:23:51 +02:00
border: 2px solid var(--my-highlight-color);
width: 19%;
2017-05-20 09:33:33 +02:00
overflow: auto; /* Enable scroll if needed */
background-color: #444; /* Fallback color */
z-index: 1;
}
#character-overview-text {
padding: 4px;
margin: 8px;
color: #fff;
2017-05-20 09:33:33 +02:00
background-color: #444;
}
#character-overview-save-button,
#character-overview-options-button {
color: #aaa;
font-size: 14px;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
2017-07-22 00:54:55 +02:00
height: 22px;
background-color: #000;
}
#character-overview-save-button:hover,
#character-overview-save-button:focus,
#character-overview-options-button:hover,
#character-overview-options-button:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
#character-overview-options-button {
2017-07-22 00:54:55 +02:00
display: inline;
}
/* Scan analyze links from AutoLink */
.scan-analyze-link {
cursor: pointer;
color: #fff;
text-decoration: underline;
}
.scan-analyze-link:hover {
text-decoration: none;
}
/* Accordion menus (Header with collapsible panel) */
.accordion-header {
background-color: #444;
font-size: 20px;
color: #fff;
margin: 6px 6px 0 6px;
padding: 6px;
cursor: pointer;
width: 80%;
text-align: left;
border: none;
outline: none;
}
.accordion-header.active,
.accordion-header:hover {
background-color: #555;
}
.accordion-header.active:hover {
background-color: #666;
}
.accordion-header:after {
content: '\02795'; /* "plus" sign (+) */
font-size: 13px;
color: #fff;
float: right;
margin-left: 5px;
}
.accordion-header.active:after {
content: "\2796"; /* "minus" sign (-) */
font-size: 13px;
color: #fff;
float: right;
margin-left: 5px;
}
.accordion-panel {
margin: 0 6px 6px 6px;
padding: 0 6px 6px 6px;
width: 75%;
margin-left: 5%;
display: none;
background-color: #555;
overflow-y: auto;
overflow-x: none;
}
.accordion-panel div,
.accordion-panel ul,
.accordion-panel p,
.accordion-panel ul > li {
background-color: #555;
}