Guest User

Untitled

a guest
Apr 25th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /**
  2. * Pie charts — with SVG
  3. */
  4.  
  5. .pie {
  6. width: 100px;
  7. height: 100px;
  8. display: inline-block;
  9. margin: 10px;
  10. transform: rotate(-90deg);
  11. }
  12.  
  13. svg {
  14. background: #fff;
  15. border-radius: 50%;
  16. }
  17.  
  18. circle {
  19. fill: yellowgreen;
  20. stroke: #655;
  21. stroke-width: 32;
  22. }
  23.  
  24. @keyframes grow { to { stroke-dasharray: 100 100 } }
  25.  
  26. .pie.animated circle {
  27. animation: grow 2s infinite linear;
  28. }
Add Comment
Please, Sign In to add comment