mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
35 lines
418 B
SCSS
35 lines
418 B
SCSS
@import "theme";
|
|
|
|
/**
|
|
* Styling for the Red Pill screen (the BitNode selection UI)
|
|
*/
|
|
#red-pill-container {
|
|
position: fixed;
|
|
}
|
|
|
|
.bitnode {
|
|
&.level-0 {
|
|
color: red;
|
|
}
|
|
|
|
&.level-1 {
|
|
color: yellow;
|
|
}
|
|
|
|
&.level-2 {
|
|
color: #48d1cc;
|
|
}
|
|
|
|
&.level-3 {
|
|
color: blue;
|
|
}
|
|
|
|
&.unimplemented {
|
|
color: gray;
|
|
}
|
|
|
|
&:hover {
|
|
color: #fff;
|
|
}
|
|
}
|