Skip to content

Instantly share code, notes, and snippets.

@bapinney
bapinney / dabblet.css
Created December 12, 2015 20:23 — forked from csssecrets/dabblet.css
Pie charts — with SVG
/**
* Pie charts — with SVG
*/
.pie {
width: 100px;
height: 100px;
display: inline-block;
margin: 10px;
transform: rotate(-90deg);
@bapinney
bapinney / dabblet.css
Last active December 12, 2015 20:32 — forked from csssecrets/dabblet.css
Animated pie chart
/**
* Animated pie chart
*/
.pie {
width: 100px; height: 100px;
border-radius: 50%;
background: yellowgreen;
background-image: linear-gradient(to right, transparent 50%, currentColor 0);
color: #655;