Project: Mall App Client: Maiora
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

6 лет назад
6 лет назад
6 лет назад
6 лет назад
6 лет назад
6 лет назад
6 лет назад
6 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. .header-bar {
  2. background-image: url('../../assets/custom/background-5.svg');
  3. background-size: cover;
  4. background-repeat: no-repeat;
  5. background-position: left top;
  6. display: flex;
  7. align-items: center;
  8. justify-content: space-between;
  9. padding: 15px;
  10. height: 75px;
  11. z-index: 3;
  12. top: 0;
  13. left: 0;
  14. width: 100%;
  15. position: sticky;
  16. box-shadow: 0px 3px 5px var(--brand-grey);
  17. margin-bottom: 20px;
  18. .heading-holder {
  19. display: flex;
  20. align-items: center;
  21. }
  22. button, a {
  23. background-color: white;
  24. color: var(--brand-blue);
  25. font-size: 18px;
  26. padding: 5px;
  27. border-radius: 50%;
  28. height: 30px;
  29. width: 30px;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. &.active {
  34. color: white;
  35. background-color: var(--brand-blue);
  36. }
  37. }
  38. h3 {
  39. font-size: 16px;
  40. color: white;
  41. letter-spacing: 0.5px;
  42. margin-left: 10px;
  43. font-weight: 600;
  44. }
  45. }
  46. .cart-utilities-holder {
  47. display: flex;
  48. align-items: center;
  49. justify-content: space-between;
  50. width: 90%;
  51. margin: 0 auto;
  52. h5 {
  53. color: var(--brand-dark-grey);
  54. font-size: 12px;
  55. }
  56. ion-button {
  57. --padding-end: 0;
  58. --color: var(--brand-blue);
  59. font-size: 10px;
  60. margin: 0;
  61. span,ion-icon {
  62. vertical-align: middle;
  63. }
  64. }
  65. }
  66. ul {
  67. padding: 0;
  68. margin: 0;
  69. list-style: none;
  70. }
  71. .cart-item-list {
  72. width: 90%;
  73. margin: 0 auto;
  74. border-bottom: 1px solid #efefef;
  75. .cart-item {
  76. margin-bottom: 20px;
  77. border-bottom: 1px solid #efefef;
  78. padding-bottom: 20px;
  79. &:last-child {
  80. border-bottom: 0;
  81. }
  82. }
  83. header {
  84. font-size: 14px;
  85. display: flex;
  86. align-items: center;
  87. justify-content: space-between;
  88. font-weight: bold;
  89. color: dimgrey;
  90. ion-button {
  91. --padding-end: 0;
  92. --color: var(--brand-blue);
  93. font-size: 10px;
  94. margin: 0;
  95. }
  96. }
  97. .add-on-button {
  98. --border-width: 1px;
  99. --border-color: var(--brand-blue);
  100. --padding-top: 0;
  101. --padding-bottom: 0;
  102. font-size: 10px;
  103. margin: 0;
  104. height: 25px;
  105. }
  106. }
  107. .breakups {
  108. color: var(--brand-dark-grey);
  109. font-size: 10px;
  110. li {
  111. display: flex;
  112. justify-content: space-between;
  113. align-items: center;
  114. margin: 10px auto;
  115. }
  116. .total {
  117. color: black;
  118. }
  119. .quantity-scale-holder {
  120. display: flex;
  121. align-items: center;
  122. border: 1px solid var(--brand-grey);
  123. border-radius: 10px;
  124. margin: 10px 0;
  125. button {
  126. font-size: 10px;
  127. height: 20px;
  128. width: 30px;
  129. background-color: transparent;
  130. &:first-child {
  131. border-right: 1px solid var(--brand-grey);
  132. }
  133. &:last-child {
  134. border-left: 1px solid var(--brand-grey);
  135. }
  136. }
  137. .quantity {
  138. padding: 0 10px;
  139. }
  140. }
  141. .time-holder {
  142. font-size: 10px;
  143. display: flex;
  144. align-items: center;
  145. justify-content: space-between;
  146. a {
  147. text-decoration: underline;
  148. }
  149. }
  150. }
  151. .total-price-breakup {
  152. width: 90%;
  153. margin: 0 auto;
  154. ul {
  155. border-top: 1px solid #efefef;
  156. padding: 5px 0;
  157. }
  158. .total-price {
  159. display: flex;
  160. align-items: center;
  161. justify-content: space-between;
  162. font-size: 12px;
  163. width: 100%;
  164. color: dimgrey;
  165. padding: 13px 0;
  166. border-top: 1px solid #efefef;
  167. border-bottom: 1px solid #efefef;
  168. font-weight: bold;
  169. }
  170. }
  171. .pay-button {
  172. width: 85%;
  173. margin: 10px auto;
  174. font-size: 12px;
  175. }