editRecipe.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #editRecipe{
  2. flex-direction: column;
  3. }
  4. #editRecipeInputContainer{
  5. display: flex;
  6. flex-direction: column;
  7. margin: 15px auto;
  8. }
  9. #editRecipeInputContainer label{
  10. display: flex;
  11. justify-content: space-between;
  12. }
  13. #editRecipeInputContainer input{
  14. margin-left: 10px;
  15. }
  16. #editRecipeContents{
  17. display: flex;
  18. flex-grow: 2;
  19. }
  20. #editRecipeLeft, #editRecipeRight{
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. width: 50%;
  25. }
  26. #editRecipeLeft{
  27. border-right: 2px solid rgb(255, 99, 107);
  28. }
  29. #editRecipeUnused, #editRecipeUsed{
  30. display: flex;
  31. flex-direction: column;
  32. width: 95%;
  33. }
  34. .editRecipeInputItem{
  35. display: flex;
  36. flex-direction: column;
  37. }
  38. .editRecipeInputItem > div{
  39. display: flex;
  40. align-items: center;
  41. }
  42. .editRecipeInputItem input{
  43. width: 150px;
  44. }
  45. #editRecipeSubmit{
  46. margin-top: auto;
  47. }