components.css 989 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. }
  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. }
  36. #ingredientDetails > p{
  37. border-radius: 10px;
  38. background: gray;
  39. color: white;
  40. padding: 0 3px;
  41. font-size: 14px;
  42. }
  43. #ingredientDetails label{
  44. font-size: 15px;
  45. text-align: left;
  46. }
  47. #ingredientDetails label p{
  48. font-size: 25px;
  49. font-weight: bold;
  50. }