2019-01-20 14:57:38 -08:00
|
|
|
@import "theme";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Styling for the Red Pill screen (the BitNode selection UI)
|
|
|
|
*/
|
|
|
|
#red-pill-container {
|
2021-09-04 19:09:30 -04:00
|
|
|
position: fixed;
|
2019-01-20 14:57:38 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.bitnode {
|
2021-09-04 19:09:30 -04:00
|
|
|
&.level-0 {
|
|
|
|
color: red;
|
|
|
|
}
|
2019-01-20 14:57:38 -08:00
|
|
|
|
2021-09-04 19:09:30 -04:00
|
|
|
&.level-1 {
|
|
|
|
color: yellow;
|
|
|
|
}
|
2019-07-08 18:34:31 -07:00
|
|
|
|
2021-09-04 19:09:30 -04:00
|
|
|
&.level-2 {
|
|
|
|
color: #48d1cc;
|
|
|
|
}
|
2019-07-08 18:34:31 -07:00
|
|
|
|
2021-09-04 19:09:30 -04:00
|
|
|
&.level-3 {
|
|
|
|
color: blue;
|
|
|
|
}
|
2019-07-08 18:34:31 -07:00
|
|
|
|
2021-09-04 19:09:30 -04:00
|
|
|
&.unimplemented {
|
|
|
|
color: gray;
|
|
|
|
}
|
2019-01-20 14:57:38 -08:00
|
|
|
|
2021-09-04 19:09:30 -04:00
|
|
|
&:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-01-20 14:57:38 -08:00
|
|
|
}
|