bitburner-src/css/hacknetnodes.scss

71 lines
1.1 KiB
SCSS
Raw Normal View History

2019-03-25 04:03:24 +01:00
@import "mixins";
@import "theme";
/**
* Styling for the Hacknet Nodes UI Page
*/
.hacknet-general-info {
2021-09-05 01:09:30 +02:00
margin: 10px;
width: 70vw;
2019-03-25 04:03:24 +01:00
}
#hacknet-nodes-container li {
2021-09-05 01:09:30 +02:00
float: left;
overflow: hidden;
white-space: nowrap;
2019-03-25 04:03:24 +01:00
2021-09-05 01:09:30 +02:00
&.hacknet-node {
2021-09-09 05:47:34 +02:00
$boxShadowArgs: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
2021-09-05 01:09:30 +02:00
@include boxShadow($boxShadowArgs);
2019-03-25 04:03:24 +01:00
2021-09-05 01:09:30 +02:00
margin: 6px;
padding: 7px;
width: 35vw;
border: 2px solid var(--my-highlight-color);
}
2019-03-25 04:03:24 +01:00
}
#hacknet-nodes-list {
2021-09-05 01:09:30 +02:00
list-style: none;
width: 82vw;
2019-03-25 04:03:24 +01:00
}
#hacknet-nodes-money {
2021-09-05 01:09:30 +02:00
margin: 10px;
float: left;
2019-03-25 04:03:24 +01:00
}
#hacknet-nodes-money-multipliers-div {
2021-09-05 01:09:30 +02:00
display: inline-block;
width: 70vw;
2019-03-25 04:03:24 +01:00
}
#hacknet-nodes-multipliers {
2021-09-05 01:09:30 +02:00
float: right;
2019-03-25 04:03:24 +01:00
}
#hacknet-nodes-purchase-button {
2021-09-05 01:09:30 +02:00
display: inline-block;
2019-03-25 04:03:24 +01:00
}
.hacknet-node-container {
2021-09-05 01:09:30 +02:00
display: inline-table;
2019-03-25 04:03:24 +01:00
2021-09-05 01:09:30 +02:00
.row {
display: table-row;
height: 30px;
2019-03-25 04:03:24 +01:00
2021-09-05 01:09:30 +02:00
p {
display: table-cell;
2019-03-25 04:03:24 +01:00
}
2021-09-05 01:09:30 +02:00
}
2019-03-25 04:03:24 +01:00
2021-09-05 01:09:30 +02:00
.upgradable-info {
display: inline-block;
margin: 0 4px; /* Don't want the vertical margin/padding, just left & right */
padding: 0 4px;
width: $defaultFontSize * 4;
}
2019-03-25 04:03:24 +01:00
}