No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_chart.scss 951B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // Chart
  3. //
  4. .chart {
  5. position: relative;
  6. height: $chart-height;
  7. }
  8. // Size variations
  9. .chart-sm {
  10. height: $chart-height-sm;
  11. }
  12. // Legend
  13. .chart-legend {
  14. display: flex;
  15. justify-content: center;
  16. margin-top: $chart-legend-margin-top;
  17. font-size: $chart-legend-font-size;
  18. text-align: center;
  19. color: $chart-legend-color;
  20. }
  21. .chart-legend-item {
  22. display: inline-flex;
  23. align-items: center;
  24. + .chart-legend-item {
  25. margin-left: 1rem;
  26. }
  27. }
  28. .chart-legend-indicator {
  29. display: inline-block;
  30. width: 0.5rem;
  31. height: 0.5rem;
  32. margin-right: 0.375rem;
  33. border-radius: 50%;
  34. }
  35. // Tooltip
  36. #chart-tooltip {
  37. z-index: 0;
  38. .arrow {
  39. top: 100%;
  40. left: 50%;
  41. transform: translateX(-50%) translateX(-.5rem);
  42. }
  43. }
  44. // Chart info overlay
  45. .chart-info-overlay {
  46. position: absolute;
  47. top: 0;
  48. left: 5%;
  49. max-width: 350px;
  50. padding: 20px;
  51. z-index: 1;
  52. }