components.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .sidebar{
  2. display: flex;
  3. width: 18vw;
  4. height: 100vh;
  5. box-sizing: border-box;
  6. padding: 25px;
  7. transition: width 0.2s;
  8. overflow: hidden;
  9. box-shadow: -1px 0px 10px gray;
  10. }
  11. .sidebarHide{
  12. width: 0;
  13. transition: width 0.2s;
  14. margin: 0;
  15. padding: 0;
  16. overflow: hidden;
  17. box-shadow: -1px 0px 10px gray;
  18. }
  19. .sidebarHide > *{
  20. width: 0;
  21. transition: width 0.2s;
  22. visibility: hidden;
  23. }
  24. .sidebar button:first-of-type{
  25. background: none;
  26. border: none;
  27. cursor: pointer;
  28. margin-bottom: 100px;
  29. padding: 3px;
  30. border-radius: 5px;
  31. margin-right: auto;
  32. }
  33. .sidebar button:first-of-type:hover{
  34. background: rgb(0, 27, 45);
  35. color: white;
  36. }
  37. .lineBorder{
  38. width: 100%;
  39. border-bottom: 1px solid gray;
  40. margin: 25px;
  41. }
  42. #addIngredient{
  43. flex-direction: column;
  44. }
  45. #ingredientDetails{
  46. flex-direction: column;
  47. align-items: center;
  48. }
  49. #ingredientDetails > p{
  50. border-radius: 10px;
  51. background: gray;
  52. color: white;
  53. padding: 0 3px;
  54. font-size: 14px;
  55. }
  56. #ingredientDetails label{
  57. font-size: 20px;
  58. text-align: center;
  59. }
  60. #ingredientDetails label p{
  61. font-size: 30px;
  62. font-weight: bold;
  63. padding: 10px;
  64. }
  65. #recipeDetails{
  66. flex-direction: column;
  67. align-items: center;
  68. box-sizing: border-box;
  69. }
  70. #recipeDetailsButtons{
  71. display: flex;
  72. justify-content: space-between;
  73. width: 100%;
  74. margin-bottom: 100px;
  75. }
  76. #recipeDetailsButtons button{
  77. background: none;
  78. border: none;
  79. cursor: pointer;
  80. margin: 0;
  81. padding: 3px;
  82. border-radius: 5px;
  83. }
  84. #recipeDetailsButtons button:hover{
  85. background: rgb(0, 27, 45);
  86. color: white;
  87. }
  88. #recipeIngredients{
  89. width: 100%;
  90. }
  91. .recipeIngredient{
  92. display: flex;
  93. justify-content: space-between;
  94. margin: 25px;
  95. }
  96. #recipePrice{
  97. display: flex;
  98. flex-direction: column;
  99. align-items: center;
  100. }
  101. #recipePrice p{
  102. font-size: 25px;
  103. font-weight: bold;
  104. }