This commit is contained in:
Willyb321
2018-12-03 08:37:48 +11:00
parent b3e632adbc
commit 4a38f2e02e
75 changed files with 2731 additions and 25 deletions

39
src/less/pips.less Executable file
View File

@@ -0,0 +1,39 @@
// 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;
}
}