covid.css 583 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. *{margin:0;padding:0;}
  2. body{
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. height: 100vh;
  7. }
  8. #title{
  9. display: flex;
  10. justify-content: center;
  11. width: 100%;
  12. }
  13. #centerTitle{
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. }
  18. #searchButton{
  19. width: 100px;
  20. height: 35px;
  21. margin-top: 10px;
  22. }
  23. #selectors{
  24. display: flex;
  25. flex-direction: column;
  26. position: fixed;
  27. top: 10px;
  28. right: 50px;
  29. z-index: 10;
  30. }
  31. #chart{
  32. flex-basis: 100px;
  33. flex-grow: 10;
  34. width: 90vw;
  35. height: 75vh;
  36. }