mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
23 lines
269 B
SCSS
23 lines
269 B
SCSS
|
@import "theme";
|
||
|
|
||
|
/**
|
||
|
* Styling for the Red Pill screen (the BitNode selection UI)
|
||
|
*/
|
||
|
#red-pill-container {
|
||
|
position: fixed;
|
||
|
}
|
||
|
|
||
|
|
||
|
.bitnode {
|
||
|
color: #00f;
|
||
|
}
|
||
|
|
||
|
.bitnode-destroyed {
|
||
|
color: #f00;
|
||
|
}
|
||
|
|
||
|
.bitnode:hover,
|
||
|
.bitnode-destroyed:hover {
|
||
|
color: #fff;
|
||
|
}
|