Files
coriolis/src/less/pips.less
Willyb321 4a38f2e02e add less
2018-12-03 08:37:48 +11:00

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;
}
}