editRecipe.css 1.3 KB

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