newRecipe.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #addRecipe{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. padding-bottom: 50px;
  7. }
  8. .recipeBasicInfo{
  9. width: 75%;
  10. background: rgb(240, 252, 255);
  11. padding: 15px;
  12. border-radius: 5px;
  13. border: 1px solid black;
  14. }
  15. .recipeBasicInfo label{
  16. display: flex;
  17. justify-content: space-between;
  18. margin: 15px 0;
  19. color: black;
  20. }
  21. .recipeBasicInfo input{
  22. width: 50%;
  23. }
  24. #addRecipe h2{
  25. margin-top: 10px;
  26. }
  27. #recipeInputIngredients{
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. box-sizing: border-box;
  32. margin: 0 0 25px 0;
  33. width:100%;
  34. overflow-y: auto;
  35. overflow-x: hidden;
  36. box-shadow: 0 0 2px gray;
  37. border-radius: 5px;
  38. }
  39. #recipeInputIngredients div{
  40. width: 75%;
  41. background: rgb(240, 252, 255);
  42. border: 1px solid black;
  43. padding: 10px;
  44. border-radius: 5px;
  45. margin: 10px 0;
  46. padding: 10px 15px;
  47. text-align: center;
  48. }
  49. #recipeInputIngredients div > label{
  50. display: flex;
  51. justify-content: space-between;
  52. margin-bottom: 2px;
  53. color: black;
  54. }
  55. #recipeInputIngredients input{
  56. width: 100px;
  57. }
  58. #recipeInputIngredients div h4{
  59. color: rgb(255, 99, 107);
  60. }