data.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #title{
  2. font-size: 45px;
  3. color: rgb(255, 99, 107);
  4. text-align: center;
  5. margin-top: 25px;
  6. }
  7. .checkboxDiv{
  8. display: flex;
  9. }
  10. .checkboxDiv > *{
  11. margin: 2px;
  12. }
  13. .dates{
  14. display: flex;
  15. justify-content: center;
  16. }
  17. .dates > *{
  18. margin: 10px;
  19. }
  20. /* Home Strand */
  21. #homeStrand{
  22. flex-direction: column;
  23. align-items: center;
  24. }
  25. #homeStrand > *{
  26. margin: 15px;
  27. }
  28. .tables{
  29. display: flex;
  30. justify-content: space-around;
  31. width: 100%;
  32. }
  33. .dataTable{
  34. display: flex;
  35. flex-direction: column;
  36. align-items: center;
  37. }
  38. /* Ingredient Strand */
  39. #ingredientStrand{
  40. flex-direction: column;
  41. align-items: space-around;
  42. }
  43. #ingredientStrand > *{
  44. margin: 10px;
  45. }
  46. .canvasBox{
  47. display: flex;
  48. justify-content: space-between;
  49. width: 100vw;
  50. height: 100vh;
  51. }
  52. canvas{
  53. flex-grow: 10;
  54. max-height: 60vh;
  55. max-width: 90vw;
  56. }
  57. #ingredientOptions{
  58. flex-grow: 1;
  59. display: flex;
  60. flex-direction: column;
  61. }