| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #editRecipe{
- flex-direction: column;
- }
- #editRecipeInputContainer{
- display: flex;
- flex-direction: column;
- margin: 15px auto;
- }
- #editRecipeInputContainer label{
- display: flex;
- justify-content: space-between;
- }
- #editRecipeInputContainer input{
- margin-left: 10px;
- }
- #editRecipeContents{
- display: flex;
- flex-grow: 2;
- }
- #editRecipeLeft, #editRecipeRight{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 50%;
- }
- #editRecipeLeft{
- border-right: 2px solid rgb(255, 99, 107);
- }
- #editRecipeUnused, #editRecipeUsed{
- display: flex;
- flex-direction: column;
- width: 95%;
- }
- .editRecipeInputItem{
- display: flex;
- flex-direction: column;
- }
- .editRecipeInputItem > div{
- display: flex;
- align-items: center;
- }
- .editRecipeInputItem input{
- width: 150px;
- }
- #editRecipeSubmit{
- margin-top: auto;
- }
|