components.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .sidebar{
  2. display: flex;
  3. width: 18vw;
  4. height: 100vh;
  5. box-sizing: border-box;
  6. padding: 100px 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. }
  18. .sidebarHide *{
  19. width: 0;
  20. transition: width 0.2s;
  21. }
  22. .sidebarHide input{
  23. display: none;
  24. }
  25. #addIngredient{
  26. flex-direction: column;
  27. }
  28. #ingredientDetails{
  29. flex-direction: column;
  30. align-items: center;
  31. }
  32. .lineBorder{
  33. width: 100%;
  34. border-bottom: 1px solid gray;
  35. margin: 25px;
  36. }
  37. #ingredientDetails > p{
  38. border-radius: 10px;
  39. background: gray;
  40. color: white;
  41. padding: 0 3px;
  42. font-size: 14px;
  43. }
  44. #ingredientDetails label{
  45. font-size: 20px;
  46. text-align: center;
  47. }
  48. #ingredientDetails label p{
  49. font-size: 30px;
  50. font-weight: bold;
  51. padding: 10px;
  52. }