_charts.scss 780 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* Chart Circle */
  2. .chart-circle {
  3. display: flex;
  4. justify-content: center;
  5. .circles-text {
  6. font-size: 25px !important;
  7. }
  8. }
  9. /* Chart JS Container */
  10. .chart-container {
  11. min-height: 300px;
  12. position: relative;
  13. }
  14. /* HTML legend */
  15. .html-legend {
  16. list-style: none;
  17. cursor: pointer;
  18. padding-left: 0;
  19. text-align: center;
  20. margin-top: 1rem;
  21. }
  22. .html-legend li {
  23. display: inline-block;
  24. vertical-align: middle;
  25. padding: 0 5px;
  26. margin-right: 5px;
  27. margin-bottom: 6px;
  28. color: #8d9498;
  29. font-size: 12px;
  30. }
  31. .html-legend li.hidden {
  32. text-decoration: line-through;
  33. }
  34. .html-legend li span {
  35. border-radius: 15px;
  36. display: inline-block;
  37. height: 15px;
  38. margin-right: 10px;
  39. width: 15px;
  40. vertical-align: top;
  41. }
  42. .jqstooltip{
  43. box-sizing: content-box;
  44. }