trail.less
// Color variables (appears count calculates by raw css)
@color0: #dddddd; // Appears 2 times
.trail {
display: block;
line-height: 0px;
margin: 0px;
padding: 0px;
li {
background: @color0;
border: 1px solid white;
display: inline-block;
height: 9px;
width: 9px;
}
li.done {
background: lightgreen;
}
li.miss {
background: red;
}
li.today {
background: #FFA500;
}
li.none {
background: @color0;
}
}