components.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. .sidebar button:first-of-type{
  12. background: none;
  13. border: none;
  14. cursor: pointer;
  15. margin-bottom: 100px;
  16. margin-right: auto;
  17. }
  18. .sidebarHide{
  19. width: 0;
  20. transition: width 0.2s;
  21. margin: 0;
  22. padding: 0;
  23. overflow: hidden;
  24. box-shadow: -1px 0px 10px gray;
  25. }
  26. .sidebarHide > *{
  27. width: 0;
  28. transition: width 0.2s;
  29. visibility: hidden;
  30. }
  31. #addIngredient{
  32. flex-direction: column;
  33. }
  34. #ingredientDetails{
  35. flex-direction: column;
  36. align-items: center;
  37. }
  38. .lineBorder{
  39. width: 100%;
  40. border-bottom: 1px solid gray;
  41. margin: 25px;
  42. }
  43. #ingredientDetails > p{
  44. border-radius: 10px;
  45. background: gray;
  46. color: white;
  47. padding: 0 3px;
  48. font-size: 14px;
  49. }
  50. #ingredientDetails label{
  51. font-size: 20px;
  52. text-align: center;
  53. }
  54. #ingredientDetails label p{
  55. font-size: 30px;
  56. font-weight: bold;
  57. padding: 10px;
  58. }