newIngredient.css 772 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #newIngredient{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. }
  7. #newIngredient label{
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. width: 100%;
  12. background: white;
  13. padding: 10px;
  14. margin: 2px;
  15. color: black;
  16. }
  17. #newIngredient .button{
  18. margin: 15px auto;
  19. }
  20. #newIngredient h2{
  21. text-align: center;
  22. margin-bottom: 25px;
  23. }
  24. .converterBox{
  25. display: flex;
  26. align-items: center;
  27. width: 100%;
  28. margin: 10px;
  29. }
  30. .converterBox input{
  31. width: 30%;
  32. }
  33. .converterBox select{
  34. margin-left: auto;
  35. }
  36. .converterBox p{
  37. margin: 0 10px;
  38. }