bitburner-src/css/redpill.scss

35 lines
368 B
SCSS
Raw Normal View History

@import "theme";
/**
* Styling for the Red Pill screen (the BitNode selection UI)
*/
#red-pill-container {
2021-09-05 01:09:30 +02:00
position: fixed;
}
.bitnode {
2021-09-05 01:09:30 +02:00
&.level-0 {
color: red;
}
2021-09-05 01:09:30 +02:00
&.level-1 {
color: yellow;
}
2021-09-05 01:09:30 +02:00
&.level-2 {
color: #48d1cc;
}
2021-09-05 01:09:30 +02:00
&.level-3 {
color: blue;
}
2021-09-05 01:09:30 +02:00
&.unimplemented {
color: gray;
}
2021-09-05 01:09:30 +02:00
&:hover {
color: #fff;
}
}