data.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: space-around;
  16. }
  17. /* Home Strand */
  18. #homeStrand{
  19. flex-direction: column;
  20. align-items: center;
  21. }
  22. #homeStrand > *{
  23. margin: 15px;
  24. }
  25. .tables{
  26. display: flex;
  27. justify-content: space-around;
  28. width: 100%;
  29. }
  30. .dataTable{
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. }
  35. /* Ingredient Strand */
  36. #ingredientStrand{
  37. flex-direction: column;
  38. align-items: space-around;
  39. }
  40. #ingredientStrand > *{
  41. margin: 10px;
  42. }
  43. .canvasBox{
  44. display: flex;
  45. justify-content: space-between;
  46. width: 100vw;
  47. height: 100vh;
  48. }
  49. canvas{
  50. flex-grow: 10;
  51. max-height: 60vh;
  52. max-width: 90vw;
  53. }
  54. #ingredientOptions{
  55. flex-grow: 1;
  56. display: flex;
  57. flex-direction: column;
  58. }