newOrder.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #newOrderIngredientList{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 40%;
  6. }
  7. .newOrderLabels{
  8. display: flex;
  9. flex-direction: column;
  10. width: 100%;
  11. margin-bottom: 25px;
  12. }
  13. .newOrderLabels label{
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. font-size: 15px;
  18. margin: 10px 0;
  19. }
  20. .newOrderLabels input{
  21. width: 50%;
  22. }
  23. #newOrderIngredients{
  24. display: flex;
  25. flex-direction: column;
  26. width: 90%;
  27. overflow-y: auto;
  28. }
  29. #newOrderIngredients .choosable{
  30. background: rgb(240, 252, 255);
  31. justify-content: left;
  32. color: black;
  33. }
  34. #newOrderIngredients .choosable:hover{
  35. background: rgb(179, 191, 209);
  36. }
  37. #newOrder{
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. width: 60%;
  42. border-left: 1px solid black;
  43. padding-left: 25px;
  44. }
  45. #newOrder > label{
  46. margin: 5px;
  47. }
  48. #selectedIngredientList{
  49. display: flex;
  50. flex-direction: column;
  51. align-items: center;
  52. height: 75%;
  53. overflow-y: auto;
  54. margin-bottom: 10px;
  55. }
  56. .selectedIngredient{
  57. display: flex;
  58. flex-direction: column;
  59. background: rgb(0, 27, 45);
  60. color: white;
  61. margin: 5px 0;
  62. width: 95%;
  63. }
  64. .selectedIngredient > div{
  65. margin: 3px;
  66. display: flex;
  67. justify-content: space-between;
  68. align-items: center
  69. }
  70. .selectedIngredient p{
  71. font-weight: bold;
  72. font-size: 17px;
  73. }
  74. .newOrderRemove{
  75. background: rgb(0, 27, 45);
  76. border: 1px solid white;
  77. color: white;
  78. font-size: 13px;
  79. font-weight: bold;
  80. padding: 5px;
  81. cursor: pointer;
  82. }
  83. .newOrderRemove:hover{
  84. background: rgb(201, 201, 201);
  85. color: black;
  86. }
  87. .selectedIngredient input{
  88. width: 45%;
  89. }