editIngredient.css 911 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #editIngredient{
  2. flex-direction: column;
  3. align-items: center;
  4. width: 100%;
  5. }
  6. #editIngredient label{
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. }
  11. .unitbuttons{
  12. width: 100%;
  13. display: flex;
  14. justify-content: space-around;
  15. }
  16. .unitButton{
  17. margin: 5px;
  18. padding: 5px;
  19. background: rgb(179, 191, 209);
  20. border: none;
  21. font-size: 15px;
  22. font-weight: bold;
  23. cursor: pointer;
  24. color: rgb(255, 99, 107);
  25. }
  26. .unitButton:hover{
  27. background: rgb(240, 252, 255);
  28. }
  29. .unitActive{
  30. background: rgb(0, 27, 45);
  31. }
  32. .unitActive:hover{
  33. background: rgb(0, 27, 45);
  34. cursor: default;
  35. }