mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-10 15:15:34 +00:00
add less
This commit is contained in:
39
src/less/pips.less
Executable file
39
src/less/pips.less
Executable 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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user