modal.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. .modal{
  2. flex-direction: column;
  3. justify-content: center;
  4. align-items: center;
  5. position: fixed;
  6. height: 100vh;
  7. width: 100vw;
  8. background: rgba(0, 27, 45, 0.75);
  9. }
  10. .modalBox{
  11. display: flex;
  12. flex-direction: column;
  13. align-items: flex-end;
  14. }
  15. .modalBox > svg{
  16. color: rgb(255, 99, 107);
  17. cursor: pointer;
  18. }
  19. .modalSpreadsheetUpload{
  20. flex-direction: column;
  21. align-items: center;
  22. justify-content: space-between;
  23. margin-top: 0;
  24. padding: 25px 100px;
  25. background: rgb(240, 252, 255);
  26. border: 2px solid black;
  27. }
  28. .modalSpreadsheetUpload > *{
  29. margin-top: 15px;
  30. }
  31. #modalFeedback{
  32. display: flex;
  33. flex-direction: column;
  34. background: white;
  35. padding: 50px;
  36. }
  37. #modalFeedback > *{
  38. margin: 15px;
  39. }
  40. #modalFeedback label{
  41. display: flex;
  42. flex-direction: column;
  43. }
  44. #modalNewMerchant{
  45. display: flex;
  46. flex-direction: column;
  47. background: white;
  48. padding: 50px;
  49. min-width: 350px;
  50. }
  51. #modalNewMerchant h2{
  52. text-align: center;
  53. }
  54. #modalNewMerchant > *{
  55. margin: 15px;
  56. }
  57. #modalNewMerchant label{
  58. display: flex;
  59. flex-direction: column;
  60. }
  61. #modalConfirm{
  62. display: flex;
  63. flex-direction:column;
  64. align-items: center;
  65. background: white;
  66. padding: 50px;
  67. }
  68. #modalConfirm svg{
  69. font-size: 50px;
  70. margin: 15px;
  71. font-weight: bold;
  72. }
  73. #modalConfirm p{
  74. font-size: 25px;
  75. font-weight: bold;
  76. }
  77. #newMerchantSquareButton{
  78. background: white;
  79. border: none;
  80. display: flex;
  81. justify-content: center;
  82. align-items: center;
  83. border: 1px solid black;
  84. padding: 9px;
  85. cursor: pointer;
  86. margin-top: 0;
  87. margin-bottom: 0;
  88. height: 44px;
  89. }
  90. #newMerchantSquareButton:hover{
  91. background: black;
  92. color: white;
  93. }
  94. #modalSquareLocations{
  95. display: flex;
  96. flex-direction: column;
  97. align-items: center;
  98. background: white;
  99. padding: 50px;
  100. min-width: 350px;
  101. }
  102. #squareLocationsButtons{
  103. display: flex;
  104. flex-direction: column;
  105. margin-bottom: 25px;
  106. width: 100%;
  107. }
  108. #modalEditSubIngredients{
  109. flex-direction: column;
  110. align-items: center;
  111. background: white;
  112. min-width: 500px;
  113. }
  114. #editSubIngredientsContainer{
  115. display: flex;
  116. justify-content: space-around;
  117. width: 100%;
  118. }
  119. #editSubAllIng, #editSubCurrentIng{
  120. padding: 25px;
  121. width: 100%;
  122. }
  123. #editSubAllIng > *{
  124. width: 100%;
  125. }
  126. #editSubCurrentIng > * {
  127. width: 100%;
  128. }
  129. #modalCircularReference{
  130. flex-direction: column;
  131. background: white;
  132. align-items: center;
  133. padding: 25px;
  134. max-height: 90%;
  135. overflow-y: auto;
  136. }
  137. #modalCircularReference div > *{
  138. margin: 10px;
  139. }