ingredients.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #ingredientsStrand{
  2. display: none;
  3. align-items: center;
  4. height: 100%;
  5. box-sizing: border-box;
  6. }
  7. #categoryList{
  8. overflow-y: auto;
  9. width: 80%;
  10. }
  11. .categoryDiv{
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. }
  16. .categoryDiv > div:first-of-type{
  17. display: flex;
  18. cursor: pointer;
  19. width: 100%;
  20. margin: 5px 0;
  21. }
  22. .categoryDiv > div:first-of-type p{
  23. display: flex;
  24. align-items: center;
  25. padding: 20px 0 20px 100px;
  26. background: rgb(0, 27, 45);
  27. flex-grow: 1;
  28. color: white;
  29. margin-right: 25px
  30. }
  31. .categoryDiv > div:first-of-type button{
  32. padding: 10px;
  33. background: rgb(0, 27, 45);
  34. border: none;
  35. width: 75px;
  36. height: 75px;
  37. cursor: pointer;
  38. }
  39. .ingredientsDiv{
  40. flex-direction: column;
  41. width: 50%;
  42. }
  43. .ingredientSpacer{
  44. border: none;
  45. border-top: 1px dashed black;
  46. margin: auto;
  47. }