editRecipe.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. #editRecipeRight h2{
  32. font-size: 20px;
  33. }
  34. .lineBorderVert{
  35. border-left: 2px solid rgb(255, 99, 107);
  36. margin: 5px;
  37. }
  38. #editRecipeUnused, #editRecipeUsed{
  39. display: flex;
  40. flex-direction: column;
  41. width: 95%;
  42. flex-basis: 0;
  43. flex-grow: 2;
  44. overflow-y: auto;
  45. }
  46. .editRecipeInputItem{
  47. display: flex;
  48. flex-direction: column;
  49. }
  50. .editRecipeInputItem > div{
  51. display: flex;
  52. align-items: center;
  53. }
  54. .editRecipeInputItem input{
  55. width: 150px;
  56. }
  57. #editRecipeSubmit{
  58. margin-top: auto;
  59. }