Project: Mall App Client: Maiora
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

293 Zeilen
6.0 KiB

  1. .header-bar {
  2. background-image: url('../../assets/custom/background-2.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: 45vh;
  75. width: 100%;
  76. padding-top: 30px;
  77. margin-bottom: -25px;
  78. .icons-holder {
  79. position: relative;
  80. display: flex;
  81. width: 90%;
  82. margin: 0 auto;
  83. justify-content: space-between;
  84. &.navigate-button {
  85. position: absolute;
  86. left: 86%;
  87. bottom: 30px;
  88. width: auto;
  89. a {
  90. display: flex;
  91. justify-content: center;
  92. align-items: center;
  93. }
  94. }
  95. button, a {
  96. background-color: white;
  97. color: var(--brand-blue);
  98. font-size: 18px;
  99. padding: 5px;
  100. border-radius: 50%;
  101. height: 30px;
  102. width: 30px;
  103. display: block;
  104. margin-bottom: 10px;
  105. box-shadow: 0px 0px 5px var(--brand-grey);
  106. &.active {
  107. background-color: var(--brand-blue);
  108. color: white;
  109. }
  110. }
  111. }
  112. img {
  113. position: absolute;
  114. left: 0;
  115. top: 0;
  116. height: 100%;
  117. width: 100%;
  118. object-fit: cover;
  119. filter: brightness(80%);
  120. }
  121. }
  122. .card-holder {
  123. background-color: transparent;
  124. position: relative;
  125. .card {
  126. box-shadow: 0px 0px 5px var(--brand-grey);
  127. width: 90%;
  128. margin: 0 auto;
  129. border-radius: 10px;
  130. overflow: hidden;
  131. padding: 20px;
  132. background-color: white;
  133. h3 {
  134. color: var(--brand-dark-grey);
  135. font-size: 20px;
  136. letter-spacing: 0.5px;
  137. font-weight: 600;
  138. }
  139. .stats-holder {
  140. display: flex;
  141. justify-content: space-between;
  142. color: var(--brand-blue);
  143. font-size: 10px;
  144. font-weight: bold;
  145. margin: 15px 0;
  146. span {
  147. color: var(--brand-grey);
  148. }
  149. }
  150. p {
  151. margin: 0 auto;
  152. font-size: 11px;
  153. line-height: 1.5;
  154. color: var(--brand-grey);
  155. }
  156. }
  157. }
  158. .tabs-holder {
  159. display: flex;
  160. width: 90%;
  161. margin: 20px auto;
  162. overflow: hidden;
  163. border-radius: 30px;
  164. box-shadow: 0px 0px 5px var(--brand-grey);
  165. position: relative;
  166. &::before {
  167. content: '';
  168. position: absolute;
  169. left: 0;
  170. top: 0;
  171. height: 100%;
  172. width: 50%;
  173. background-color: var(--brand-blue);
  174. border-radius: 30px;
  175. transform: translateX(0%);
  176. transition: transform 0.3s;
  177. }
  178. &.right {
  179. &::before {
  180. transform: translateX(100%);
  181. }
  182. }
  183. button {
  184. position: relative;
  185. background-color: transparent;
  186. color: var(--brand-blue);
  187. font-size: 12px;
  188. letter-spacing: 0.5px;
  189. height: 40px;
  190. width: 50%;
  191. font-weight: 500;
  192. transition: color 0.3s;
  193. &.active {
  194. color: white;
  195. }
  196. }
  197. }
  198. .result-list {
  199. ion-item {
  200. display: none;
  201. &.show {
  202. display: block;
  203. }
  204. h3 .rating-holder {
  205. font-size: 9px;
  206. margin-left: auto;
  207. align-self: flex-start;
  208. display: flex;
  209. align-items: flex-end;
  210. margin-right: 10px;
  211. ion-icon {
  212. font-size: 12px;
  213. margin-right: 3px;
  214. }
  215. }
  216. .offers-holder {
  217. border-bottom: 0;
  218. border-top: 1px solid #efefef;
  219. .offer {
  220. ion-icon {
  221. color: var(--brand-grey);
  222. transform: scale(1.1);
  223. }
  224. }
  225. }
  226. .description {
  227. margin: 5px 0;
  228. .share-button {
  229. float: right;
  230. font-size: 14px;
  231. background-color: transparent;
  232. border: 0px;
  233. color: var(--brand-dark-grey);
  234. padding: 0;
  235. }
  236. }
  237. }
  238. }
  239. .advertisement-slots {
  240. white-space: nowrap;
  241. width: 100%;
  242. overflow-x: auto;
  243. figure {
  244. margin: 0;
  245. display: inline-block;
  246. width: 100px;
  247. height: 100px;
  248. margin: 0 5px;
  249. img {
  250. object-fit: cover;
  251. width: 100%;
  252. height: 100%;
  253. }
  254. }
  255. }