style.css 702 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. body {
  2. font-family: 'Noto Serif SC', serif, 'Anonymous Pro', monospace;
  3. background-color: floralwhite;
  4. }
  5. h1,h2,h3,h4 {
  6. font-weight: bold;
  7. }
  8. @media screen {
  9. body {
  10. padding: 20px 5px 5px 5px;
  11. }
  12. }
  13. @media screen and (min-width:699px) {
  14. body {
  15. padding: 20px 75px 40px 75px;
  16. }
  17. #fileOutput {
  18. margin-right: 50px;
  19. }
  20. .table {
  21. margin-left: 80px;
  22. }
  23. }
  24. @media screen and (min-width:1200px) {
  25. body {
  26. padding: 20px 150px 40px 150px;
  27. }
  28. #fileOutput {
  29. margin-right: 200px;
  30. }
  31. .table {
  32. margin-left: 100px;
  33. }
  34. }
  35. .table {
  36. font-size: 14px;
  37. }
  38. .chart {
  39. width: auto;
  40. height: 400px;
  41. }