Project: Mall App Client: Maiora
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

mall-details.page.scss 6.2 KiB

hace 6 años
hace 6 años
hace 6 años
hace 6 años
hace 6 años
hace 6 años
hace 6 años
hace 6 años
hace 6 años
hace 6 años
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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: 2;
  12. pointer-events: none;
  13. opacity: 0;
  14. top: 0;
  15. left: 0;
  16. width: 100%;
  17. position: fixed;
  18. transition: opacity 0.5s;
  19. box-shadow: 0px 3px 5px var(--brand-grey);
  20. &.active {
  21. opacity: 1;
  22. pointer-events: all;
  23. }
  24. .heading-holder {
  25. display: flex;
  26. align-items: center;
  27. }
  28. button, a {
  29. background-color: white;
  30. color: var(--brand-blue);
  31. font-size: 18px;
  32. padding: 5px;
  33. border-radius: 50%;
  34. height: 30px;
  35. width: 30px;
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. &.active {
  40. color: white;
  41. background-color: var(--brand-blue);
  42. }
  43. }
  44. h3 {
  45. font-size: 16px;
  46. color: white;
  47. letter-spacing: 0.5px;
  48. margin-left: 10px;
  49. font-weight: 600;
  50. }
  51. .stats-holder {
  52. font-size: 10px;
  53. color: white;
  54. display: flex;
  55. align-items: center;
  56. .stat {
  57. margin-left: 10px;
  58. }
  59. }
  60. .utilities-buttons-holder {
  61. position: absolute;
  62. right: 15px;
  63. bottom: -15px;
  64. display: flex;
  65. align-items: center;
  66. button, a {
  67. margin-left: 10px;
  68. box-shadow: 0px 3px 5px var(--brand-grey);
  69. }
  70. }
  71. }
  72. .upfold-holder {
  73. position: relative;
  74. height: 30vh;
  75. width: 100%;
  76. padding: 30px 0;
  77. margin-bottom: calc(-30vh + 90px);
  78. .icons-holder {
  79. position: relative;
  80. display: flex;
  81. width: 90%;
  82. margin: 0 auto;
  83. justify-content: space-between;
  84. .action-buttons-holder {
  85. display: flex;
  86. align-items: center;
  87. width: 50%;
  88. justify-content: flex-end;
  89. button {
  90. margin-right: 15px;
  91. }
  92. }
  93. &.navigate-button {
  94. position: absolute;
  95. left: 86%;
  96. bottom: 30px;
  97. width: auto;
  98. a {
  99. display: flex;
  100. justify-content: center;
  101. align-items: center;
  102. }
  103. }
  104. button, a {
  105. background-color: white;
  106. color: var(--brand-blue);
  107. font-size: 18px;
  108. padding: 5px;
  109. border-radius: 50%;
  110. height: 30px;
  111. width: 30px;
  112. display: block;
  113. box-shadow: 0px 0px 5px var(--brand-grey);
  114. &.active {
  115. background-color: var(--brand-blue);
  116. color: white;
  117. }
  118. }
  119. }
  120. img {
  121. position: absolute;
  122. left: 0;
  123. top: 0;
  124. height: 100%;
  125. width: 100%;
  126. object-fit: cover;
  127. filter: brightness(80%);
  128. }
  129. }
  130. .card-holder {
  131. background-color: transparent;
  132. position: relative;
  133. .card {
  134. box-shadow: 0px 0px 5px var(--brand-grey);
  135. width: 90%;
  136. margin: 0 auto;
  137. border-radius: 10px;
  138. overflow: hidden;
  139. padding: 20px;
  140. background-color: white;
  141. opacity: 0.95;
  142. h3 {
  143. color: var(--brand-dark-grey);
  144. font-size: 20px;
  145. letter-spacing: 0.5px;
  146. font-weight: 600;
  147. margin: 0;
  148. }
  149. .stats-holder {
  150. display: flex;
  151. justify-content: space-between;
  152. color: var(--brand-blue);
  153. font-size: 10px;
  154. font-weight: bold;
  155. margin: 15px 0;
  156. span {
  157. color: var(--brand-grey);
  158. }
  159. }
  160. p {
  161. margin: 0 auto;
  162. font-size: 11px;
  163. line-height: 1.5;
  164. color: var(--brand-grey);
  165. }
  166. }
  167. }
  168. .tabs-holder {
  169. display: flex;
  170. width: 90%;
  171. margin: 20px auto;
  172. overflow: hidden;
  173. border-radius: 30px;
  174. box-shadow: 0px 0px 5px var(--brand-grey);
  175. position: relative;
  176. &::before {
  177. content: '';
  178. position: absolute;
  179. left: 0;
  180. top: 0;
  181. height: 100%;
  182. width: 50%;
  183. background-color: var(--brand-blue);
  184. border-radius: 30px;
  185. transform: translateX(0%);
  186. transition: transform 0.3s;
  187. }
  188. &.right {
  189. &::before {
  190. transform: translateX(100%);
  191. }
  192. }
  193. button {
  194. position: relative;
  195. background-color: transparent;
  196. color: var(--brand-blue);
  197. font-size: 12px;
  198. letter-spacing: 0.5px;
  199. height: 35px;
  200. width: 50%;
  201. transition: color 0.3s;
  202. &.active {
  203. color: white;
  204. }
  205. }
  206. }
  207. .result-list {
  208. ion-item {
  209. display: none;
  210. &.show {
  211. display: block;
  212. }
  213. h3 .rating-holder {
  214. font-size: 9px;
  215. margin-left: auto;
  216. align-self: flex-start;
  217. display: flex;
  218. align-items: flex-end;
  219. margin-right: 10px;
  220. ion-icon {
  221. font-size: 12px;
  222. margin-right: 3px;
  223. }
  224. }
  225. .offers-holder {
  226. border-bottom: 0;
  227. border-top: 1px solid #efefef;
  228. .offer {
  229. padding: 7px 0;
  230. ion-icon {
  231. color: var(--brand-grey);
  232. transform: scale(1.1);
  233. }
  234. }
  235. }
  236. .description {
  237. margin: 5px 0;
  238. padding-right: 20px;
  239. position: relative;
  240. .share-button {
  241. position: absolute;
  242. right: 0px;
  243. top: 5px;
  244. font-size: 14px;
  245. background-color: transparent;
  246. border: 0px;
  247. color: var(--brand-dark-grey);
  248. padding: 0;
  249. }
  250. }
  251. }
  252. }
  253. .advertisement-slots {
  254. white-space: nowrap;
  255. width: 100%;
  256. overflow-x: auto;
  257. figure {
  258. margin: 0;
  259. display: inline-block;
  260. width: 100px;
  261. height: 100px;
  262. margin: 0 5px;
  263. img {
  264. object-fit: cover;
  265. width: 100%;
  266. height: 100%;
  267. }
  268. }
  269. }