/assets/css/jquery.circliful.css

https://bitbucket.org/nehajoshi24/telemetrydataanalytics · CSS · 53 lines · 43 code · 7 blank · 3 comment · 0 complexity · 63abc4df6f7a669a3bf00da012f55e57 MD5 · raw file

  1. .circliful .outer {
  2. fill: transparent;
  3. stroke: #333;
  4. stroke-width: 19.8;
  5. stroke-dasharray: 534;
  6. transition: stroke-dashoffset 1s;
  7. -webkit-animation-play-state: running;
  8. /* firefox bug fix - won't rotate at 90deg angles */
  9. -moz-transform: rotate(-89deg) translateX(-190px);
  10. }
  11. /* full circle 25 empty 534 */
  12. .circliful .inner {
  13. fill: transparent;
  14. stroke: orange;
  15. stroke-width: 20;
  16. stroke-dasharray: 534;
  17. transition: stroke-dashoffset 1s;
  18. -webkit-animation-play-state: running;
  19. /* firefox bug fix - won't rotate at 90deg angles */
  20. -moz-transform: rotate(-89deg) translateX(-190px);
  21. stroke-dashoffset: 0;
  22. }
  23. .circliful {
  24. overflow: visible !important;
  25. }
  26. .svg-container {
  27. width: 100%;
  28. margin: 0 auto;
  29. overflow: visible;
  30. position: relative;
  31. }
  32. svg .icon {
  33. font-family: FontAwesome;
  34. }
  35. .legend-line {
  36. white-space: nowrap;
  37. }
  38. .color-box {
  39. width: 15px;
  40. height: 15px;
  41. border-radius: 2px;
  42. display: inline-block;
  43. float: left;
  44. padding-top: 3px;
  45. margin: 2px 5px 0 0;
  46. }