profile_chart.css 487 B

123456789101112131415161718192021222324252627282930313233343536
  1. html, body {
  2. padding: 0px;
  3. border: 0px;
  4. margin: 0px;
  5. width: 100%;
  6. height: 100%;
  7. overflow: hidden;
  8. }
  9. canvas {
  10. position: absolute;
  11. top: 10px;
  12. left: 10px;
  13. padding: 0px;
  14. border: 0px;
  15. margin: 0px;
  16. }
  17. #tooltip {
  18. font: Courier New;
  19. position: absolute;
  20. background-color: white;
  21. border: 1px;
  22. border-style: solid;
  23. border-color: black;
  24. pointer-events: none;
  25. padding: 5px;
  26. font: 14px Arial;
  27. visibility: hidden;
  28. height: auto;
  29. }
  30. .stat {
  31. color: blue;
  32. text-align: right;
  33. }