data.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. }
  81. /* Purchase Strand */
  82. #purchaseStrand{
  83. flex-direction: column;
  84. align-items: space-between;
  85. }
  86. #purchaseStrand > *{
  87. margin: 10px;
  88. }
  89. .canvasBox{
  90. display: flex;
  91. justify-content: space-between;
  92. }
  93. #recipeOptions{
  94. flex-grow: 1;
  95. display: flex;
  96. flex-direction: column;
  97. }