newOrder.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. }
  33. #newOrderIngredients .choosable:hover{
  34. background: rgb(179, 191, 209);
  35. }
  36. #newOrder{
  37. display: flex;
  38. flex-direction: column;
  39. align-items: center;
  40. width: 60%;
  41. border-left: 1px solid black;
  42. padding-left: 25px;
  43. }
  44. #newOrder > label{
  45. margin: 5px;
  46. }
  47. #selectedIngredientList{
  48. display: flex;
  49. flex-direction: column;
  50. align-items: center;
  51. height: 75%;
  52. overflow-y: auto;
  53. margin-bottom: 10px;
  54. }
  55. .selectedIngredient{
  56. display: flex;
  57. flex-direction: column;
  58. background: rgb(0, 27, 45);
  59. color: white;
  60. margin: 5px 0;
  61. width: 95%;
  62. }
  63. .selectedIngredient > div{
  64. margin: 3px;
  65. display: flex;
  66. justify-content: space-between;
  67. align-items: center
  68. }
  69. .selectedIngredient p{
  70. font-weight: bold;
  71. font-size: 17px;
  72. }
  73. .newOrderRemove{
  74. background: rgb(0, 27, 45);
  75. border: 1px solid white;
  76. color: white;
  77. font-size: 13px;
  78. font-weight: bold;
  79. padding: 5px;
  80. cursor: pointer;
  81. }
  82. .newOrderRemove:hover{
  83. background: rgb(201, 201, 201);
  84. color: black;
  85. }
  86. .selectedIngredient input{
  87. width: 45%;
  88. }