data.css 655 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #title{
  2. font-size: 45px;
  3. color: rgb(255, 99, 107);
  4. text-align: center;
  5. margin-top: 25px;
  6. }
  7. /* Home Strand */
  8. #homeStrand{
  9. flex-direction: column;
  10. align-items: center;
  11. }
  12. #homeStrand > *{
  13. margin: 15px;
  14. }
  15. .tables{
  16. display: flex;
  17. justify-content: space-around;
  18. width: 100%;
  19. }
  20. .dataTable{
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. }
  25. /* Graph Action */
  26. #graphAction{
  27. flex-direction: column;
  28. align-items: center;
  29. }
  30. #graphAction > *{
  31. margin: 10px;
  32. }
  33. canvas{
  34. height: 60vh;
  35. width: 98vw;
  36. }