data.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. body, html{
  2. height: 100%;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. #title{
  7. font-size: 45px;
  8. color: rgb(255, 99, 107);
  9. text-align: center;
  10. margin-top: 25px;
  11. }
  12. .checkboxDiv{
  13. display: flex;
  14. }
  15. .checkboxDiv > *{
  16. margin: 2px;
  17. }
  18. .dates{
  19. display: flex;
  20. justify-content: center;
  21. }
  22. .dates > *{
  23. margin: 10px;
  24. }
  25. canvas{
  26. flex-grow: 9;
  27. height: 64vh;
  28. }
  29. /* Home Strand */
  30. #homeStrand{
  31. flex-direction: column;
  32. align-items: center;
  33. }
  34. #homeStrand > *{
  35. margin: 15px;
  36. }
  37. .tables{
  38. display: flex;
  39. justify-content: space-around;
  40. width: 100%;
  41. }
  42. .dataTable{
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. }
  47. /* Ingredient Strand */
  48. #ingredientStrand{
  49. flex-direction: column;
  50. align-items: space-between;
  51. }
  52. #ingredientStrand > *{
  53. margin: 10px;
  54. }
  55. .canvasBox{
  56. display: flex;
  57. justify-content: space-between;
  58. }
  59. #ingredientOptions{
  60. flex-grow: 1;
  61. display: flex;
  62. flex-direction: column;
  63. }
  64. /* Recipe Strand */
  65. #recipeStrand{
  66. flex-direction: column;
  67. align-items: space-between;
  68. }
  69. #recipeStrand > *{
  70. margin: 10px;
  71. }
  72. .canvasBox{
  73. display: flex;
  74. justify-content: space-between;
  75. }
  76. #recipeOptions{
  77. flex-grow: 1;
  78. display: flex;
  79. flex-direction: column;
  80. }