ingredients.css 1.1 KB

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