Adding comparison charts, fixes and tweaks

This commit is contained in:
Colin McLeod
2015-05-12 22:43:47 -07:00
parent 1cec10432a
commit 02fe76f43b
22 changed files with 446 additions and 119 deletions

View File

@@ -1,8 +1,40 @@
svg.chart {
.chart {
.user-select-none();
display: block;
width:100%;
height:100%;
display: inline-block;
margin: 1em;
//width:100%;
//height:100%;
cursor: default;
h3 {
text-align: center;
&[ng-click] {
cursor: pointer;
}
}
svg {
.axis {
line, path {
fill: none;
stroke: @primary-disabled;
}
text {
font-size: 0.75em;
fill: @primary-disabled;
}
&.y {
text tspan:first-child {
fill: @primary;
}
}
}
}
}