style.css 398 B

1234567891011121314151617181920212223242526
  1. html,body {
  2. width: 100%;
  3. height: 100%;
  4. margin: 0;
  5. padding: 0;
  6. }
  7. body {
  8. font-family: Arial;
  9. font-size: 14px;
  10. line-height: 1.428571429;
  11. color: #333333;
  12. }
  13. #chart-container {
  14. position: relative;
  15. display: inline-block;
  16. top: 10px;
  17. left: 10px;
  18. height: 420px;
  19. width: calc(100% - 24px);
  20. border: 2px dashed #aaa;
  21. border-radius: 5px;
  22. overflow: auto;
  23. text-align: center;
  24. }