2019-01-20 23:57:38 +01:00
|
|
|
@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;
|
2019-01-20 23:57:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.bitnode {
|
2021-09-05 01:09:30 +02:00
|
|
|
&.level-0 {
|
|
|
|
color: red;
|
|
|
|
}
|
2019-01-20 23:57:38 +01:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
&.level-1 {
|
|
|
|
color: yellow;
|
|
|
|
}
|
2019-07-09 03:34:31 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
&.level-2 {
|
|
|
|
color: #48d1cc;
|
|
|
|
}
|
2019-07-09 03:34:31 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
&.level-3 {
|
|
|
|
color: blue;
|
|
|
|
}
|
2019-07-09 03:34:31 +02:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
&.unimplemented {
|
|
|
|
color: gray;
|
|
|
|
}
|
2019-01-20 23:57:38 +01:00
|
|
|
|
2021-09-05 01:09:30 +02:00
|
|
|
&:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-01-20 23:57:38 +01:00
|
|
|
}
|