You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

326 lines
5.6 KiB

  1. .mod_iso_productlist,
  2. .mod_iso_relatedproducts {
  3. padding: 0 0 5rem 0;
  4. @media (max-width: 575px) {
  5. padding-left: 0;
  6. padding-right: 0;
  7. }
  8. .product_list {
  9. display: flex;
  10. justify-content: space-around;
  11. flex-wrap: wrap;
  12. }
  13. .product {
  14. position: relative;
  15. padding: 0 0.5rem 7.5rem 0.5rem;
  16. @media (max-width: 768px) {
  17. padding-bottom: 3.5rem;
  18. }
  19. .formbody {
  20. position: relative;
  21. display: flex;
  22. flex-wrap: wrap;
  23. width: 270px;
  24. margin: 0 auto;
  25. padding: 0 0 2rem 0;
  26. @media (max-width: 575px) {
  27. width: 60vw;
  28. }
  29. }
  30. h3 {
  31. order: 2;
  32. margin: 0 auto;
  33. padding: 0 0 1rem 0;
  34. text-align: center;
  35. font-size: size(20);
  36. line-height: size(26);
  37. color: $font;
  38. a {
  39. color: $font;
  40. }
  41. }
  42. .image_container {
  43. order: 1;
  44. margin: 0 auto;
  45. a {
  46. display: block;
  47. padding: 0 0 1rem 0;
  48. }
  49. img {
  50. border: 4px solid $secondary;
  51. width: 270px;
  52. height: 270px;
  53. object-fit: cover;
  54. background: $white;
  55. border-radius: 50%;
  56. @media (max-width: 575px) {
  57. width: 60vw;
  58. height: 60vw;
  59. }
  60. }
  61. }
  62. .sku {
  63. display: none;
  64. }
  65. .offer {
  66. order: 4;
  67. position: absolute;
  68. top: 203px;
  69. right: 0;
  70. font-family: 'Mohave', sans-serif;
  71. a {
  72. color: $font;
  73. text-decoration: none;
  74. }
  75. .price {
  76. background: $secondary;
  77. border-radius: 10px;
  78. padding: 12px 20px 1px 20px;
  79. font-weight: 700;
  80. font-size: size(32);
  81. line-height: size(32);
  82. .currency {
  83. font-weight: 300;
  84. font-size: size(16);
  85. }
  86. .original_price {
  87. position: absolute;
  88. left: -5px;
  89. top: -25px;
  90. background: $font;
  91. border-radius: 10px;
  92. padding: 1px 11px 0 11px;
  93. font-weight: 500;
  94. color: $white;
  95. font-size: size(18);
  96. }
  97. .price {
  98. background: none;
  99. border-radius: 0;
  100. padding: 0;
  101. font-size: inherit;
  102. line-height: inherit;
  103. }
  104. }
  105. }
  106. .details {
  107. display: none;
  108. a {
  109. }
  110. }
  111. .submit_container {
  112. order: 3;
  113. position: absolute;
  114. bottom: 0;
  115. left: 50%;
  116. transform: translate(-50%, 0);
  117. margin: 0 auto;
  118. .submit {
  119. @include button();
  120. }
  121. }
  122. }
  123. .empty {
  124. text-align: center;
  125. font-weight: 700;
  126. color: $primary;
  127. }
  128. }
  129. .mod_iso_productreader {
  130. .back {
  131. display: none;
  132. }
  133. .formbody {
  134. }
  135. .spwn-image-set {
  136. width: 100%;
  137. position: relative;
  138. padding: 0 0 2rem 0;
  139. margin: 0 auto;
  140. @media (max-width: 768px) {
  141. width: 80%;
  142. }
  143. .spwn-image-gallery {
  144. }
  145. .offer {
  146. position: absolute;
  147. right: 50%;
  148. bottom: 150px;
  149. transform: translate(310px, 0);
  150. font-family: 'Mohave', sans-serif;
  151. @media (max-width: 768px) {
  152. right: 300px;
  153. }
  154. @media (max-width: 575px) {
  155. bottom: 75px;
  156. }
  157. .price {
  158. background: $secondary;
  159. border-radius: 10px;
  160. padding: 12px 20px 1px 20px;
  161. font-weight: 700;
  162. font-size: size(32);
  163. line-height: size(32);
  164. .currency {
  165. font-weight: 300;
  166. font-size: size(16);
  167. }
  168. .original_price {
  169. position: absolute;
  170. left: -5px;
  171. top: -25px;
  172. background: $font;
  173. border-radius: 10px;
  174. padding: 1px 11px 0 11px;
  175. font-weight: 500;
  176. color: $white;
  177. font-size: size(18);
  178. }
  179. .price {
  180. background: none;
  181. border-radius: 0;
  182. padding: 0;
  183. font-size: inherit;
  184. line-height: inherit;
  185. }
  186. }
  187. }
  188. .image_container {
  189. }
  190. img {
  191. width: 554px;
  192. margin: 0 auto;
  193. @media (max-width: 768px) {
  194. width: 100%;
  195. }
  196. }
  197. .slick-dots {
  198. button {
  199. background: rgba(0, 0, 0, .2);
  200. &:hover {
  201. background: $primary;
  202. }
  203. }
  204. .slick-active {
  205. button {
  206. background: $primary;
  207. }
  208. }
  209. }
  210. }
  211. h1, h2 {
  212. width: 100%;
  213. text-align: center;
  214. padding: 0 0 8rem 0;
  215. }
  216. h3 {
  217. color: $primary;
  218. padding-bottom: 1.5rem;
  219. }
  220. .sku {
  221. display: none;
  222. }
  223. .description {
  224. padding: 0 0 3rem 0;
  225. font-weight: 700;
  226. }
  227. .spwn-additional-text {
  228. margin: 0 0 2rem 0;
  229. &.spwn-bg {
  230. @include fullwidth();
  231. margin-bottom: 2rem;
  232. padding: 2rem 0 0 0;
  233. .spwn-inner {
  234. max-width: calc(1280px - 24px - 190px - 190px);
  235. margin: 0 auto;
  236. @media (max-width: 1280px) {
  237. max-width: calc(100% - 14.85vw - 14.85vw);
  238. }
  239. @media (max-width: 1004px) {
  240. max-width: calc(100% - 40px - 40px);
  241. }
  242. @media (max-width: 768px) {
  243. max-width: calc(100% - 20px - 20px);
  244. }
  245. }
  246. }
  247. ul {
  248. li {
  249. position: relative;
  250. padding: 0 0 2rem 34px;
  251. &:before {
  252. content: "";
  253. display: block;
  254. position: absolute;
  255. left: 0;
  256. top: 7px;
  257. width: 12px;
  258. height: 12px;
  259. background: $secondary;
  260. border-radius: 50%;
  261. }
  262. }
  263. }
  264. }
  265. .submit_container {
  266. display: flex;
  267. justify-content: center;
  268. flex-wrap: wrap;
  269. width: 100%;
  270. padding: 0 0 4rem 0;
  271. .submit {
  272. @include button();
  273. margin: 0 12px;
  274. }
  275. }
  276. }