mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 22:55:35 +00:00
40 lines
555 B
Plaintext
Executable File
40 lines
555 B
Plaintext
Executable File
// The pips table - keep the background black
|
|
#pips {
|
|
|
|
table {
|
|
background-color: @bgBlack;
|
|
color: @primary;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
// A clickable entity in the pips table
|
|
.clickable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
// A multi-crew pip
|
|
.mc {
|
|
stroke: @secondary;
|
|
fill: @secondary;
|
|
}
|
|
|
|
// A full pip
|
|
.full {
|
|
stroke: @primary;
|
|
fill: @primary;
|
|
}
|
|
|
|
// A half pip
|
|
.half {
|
|
stroke: @primary-disabled;
|
|
fill: @primary-disabled;
|
|
}
|
|
|
|
// An empty pip
|
|
.empty {
|
|
stroke: @primary-bg;
|
|
fill: @primary-bg;
|
|
}
|
|
}
|
|
|