Skip to content

Instantly share code, notes, and snippets.

@bettysteger
Created June 27, 2014 08:02
Show Gist options
  • Save bettysteger/927747b9f7a1e273da3e to your computer and use it in GitHub Desktop.
Save bettysteger/927747b9f7a1e273da3e to your computer and use it in GitHub Desktop.
Overwrites CSS for a nvd3 pie chart
$pieSize: 18px;
.pie-wrap { // own class
float: left;
svg {
display: inline-block;
width: $pieSize;
height: $pieSize;
margin: 4px;
.nvd3.nv-wrap .nv-pie .nv-slice { // health
fill: green;
path {
stroke: green;
}
&:last-child { // unhealth
fill: transparent;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment