app-ecommerce-details.scss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. // ================================================================================================
  2. // File Name: app-ecommerce-details.scss
  3. // Description: App Ecommerce Details SCSS.
  4. // ----------------------------------------------------------------------------------------------
  5. // Item Name: Vuexy - Vuejs, React, Angular, HTML & Laravel Admin Dashboard Template
  6. // Author: PIXINVENT
  7. // Author URL: http://www.themeforest.net/user/pixinvent
  8. // ================================================================================================
  9. @import '../bootstrap-extended/include'; // Bootstrap includes
  10. @import '../components/include'; // Components includes
  11. // App e-commerce detail style
  12. .ecommerce-application {
  13. .app-ecommerce-details {
  14. .product-img {
  15. width: 600px;
  16. }
  17. // ratings style
  18. .ratings-list-item {
  19. svg,
  20. i {
  21. font-size: 1.286rem;
  22. height: 1.286rem;
  23. width: 1.286rem;
  24. }
  25. }
  26. .filled-star {
  27. fill: $warning;
  28. stroke: $warning;
  29. color: $warning;
  30. }
  31. .unfilled-star {
  32. stroke: $gray-100;
  33. color: $gray-100;
  34. }
  35. // Item Price
  36. .item-price {
  37. color: $primary;
  38. }
  39. // Common for list-view, checkout and wishlist
  40. .item-company {
  41. display: inline-flex;
  42. font-weight: $font-weight-normal;
  43. font-size: 0.875rem;
  44. .company-name {
  45. font-weight: $font-weight-bolder;
  46. margin-left: 0.25rem;
  47. }
  48. }
  49. // Product feature list
  50. .product-features {
  51. margin-top: 1.5rem;
  52. margin-bottom: 1.5rem;
  53. li {
  54. svg,
  55. i {
  56. height: 1.4rem;
  57. width: 1.4rem;
  58. font-size: 1.4rem;
  59. margin-right: 0.75rem;
  60. }
  61. display: flex;
  62. align-items: center;
  63. margin-bottom: 1rem;
  64. span {
  65. font-weight: $font-weight-bolder;
  66. }
  67. }
  68. }
  69. .product-color-options {
  70. margin-top: 1.5rem;
  71. margin-bottom: 1.2rem;
  72. }
  73. .btn-wishlist {
  74. .text-danger {
  75. color: $danger;
  76. fill: $danger;
  77. }
  78. }
  79. .btn-share {
  80. .btn-icon {
  81. ~ .dropdown-menu {
  82. min-width: 3rem;
  83. }
  84. }
  85. }
  86. .item-features {
  87. background-color: $body-bg;
  88. padding-top: 5.357rem;
  89. padding-bottom: 5.357rem;
  90. i,
  91. svg {
  92. font-size: 2.5rem;
  93. height: 2.5rem;
  94. width: 2.5rem;
  95. color: $primary;
  96. }
  97. }
  98. }
  99. // centered slides option-1
  100. .swiper-responsive-breakpoints {
  101. &.swiper-container {
  102. .swiper-slide {
  103. text-align: center;
  104. background-color: $body-bg;
  105. padding: 1.5rem 3rem;
  106. border-radius: $card-border-radius;
  107. .img-container {
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. height: 250px;
  112. }
  113. }
  114. }
  115. }
  116. //navigation button custom icons
  117. .swiper-button-prev,
  118. .swiper-button-next,
  119. .swiper-container-rtl .swiper-button-prev,
  120. .swiper-container-rtl .swiper-button-next {
  121. background-image: none;
  122. width: 35px;
  123. font-size: $h1-font-size;
  124. &:focus {
  125. outline: none;
  126. }
  127. }
  128. .swiper-button-prev {
  129. left: 0;
  130. &:after {
  131. background-image: url(str-replace(str-replace($chevron-left, 'currentColor', $primary), '#', '%23'));
  132. background-repeat: no-repeat;
  133. background-position: center;
  134. background-size: 44px;
  135. color: $body-color;
  136. width: 44px;
  137. height: 44px;
  138. content: '';
  139. }
  140. }
  141. .swiper-button-next {
  142. right: 0;
  143. &:after {
  144. background-image: url(str-replace(str-replace($chevron-right, 'currentColor', $primary), '#', '%23'));
  145. background-repeat: no-repeat;
  146. background-position: center;
  147. background-size: 44px;
  148. color: $body-color;
  149. width: 44px;
  150. height: 44px;
  151. content: '';
  152. }
  153. }
  154. .swiper-container-rtl {
  155. .swiper-button-prev {
  156. &:after {
  157. background-image: url(str-replace(str-replace($chevron-right, 'currentColor', $primary), '#', '%23'));
  158. background-repeat: no-repeat;
  159. background-position: center;
  160. background-size: 44px;
  161. color: $body-color;
  162. width: 44px;
  163. height: 44px;
  164. content: '';
  165. }
  166. }
  167. .swiper-button-next {
  168. &:after {
  169. background-image: url(str-replace(str-replace($chevron-left, 'currentColor', $primary), '#', '%23'));
  170. background-repeat: no-repeat;
  171. background-position: center;
  172. background-size: 44px;
  173. color: $body-color;
  174. width: 44px;
  175. height: 44px;
  176. content: '';
  177. }
  178. }
  179. }
  180. // color options
  181. .product-color-options {
  182. .color-option {
  183. border: 1px solid transparent;
  184. border-radius: 50%;
  185. position: relative;
  186. cursor: pointer;
  187. padding: 3px;
  188. .filloption {
  189. height: 18px;
  190. width: 18px;
  191. border-radius: 50%;
  192. }
  193. }
  194. // selected
  195. .selected {
  196. // these use for border color only page specific
  197. .b-primary {
  198. border-color: $primary;
  199. .filloption {
  200. box-shadow: 0 2px 4px 0 rgba($primary, 0.4);
  201. }
  202. }
  203. .b-success {
  204. border-color: $success;
  205. .filloption {
  206. box-shadow: 0 2px 4px 0 rgba($success, 0.4);
  207. }
  208. }
  209. .b-danger {
  210. border-color: $danger;
  211. .filloption {
  212. box-shadow: 0 2px 4px 0 rgba($danger, 0.4);
  213. }
  214. }
  215. .b-warning {
  216. border-color: $warning;
  217. .filloption {
  218. box-shadow: 0 2px 4px 0 rgba($warning, 0.4);
  219. }
  220. }
  221. .b-info {
  222. border-color: $info;
  223. .filloption {
  224. box-shadow: 0 2px 4px 0 rgba($info, 0.4);
  225. }
  226. }
  227. }
  228. .b-primary .filloption {
  229. box-shadow: 0 2px 4px 0 rgba($primary, 0.4);
  230. }
  231. .b-success .filloption {
  232. box-shadow: 0 2px 4px 0 rgba($success, 0.4);
  233. }
  234. .b-danger .filloption {
  235. box-shadow: 0 2px 4px 0 rgba($danger, 0.4);
  236. }
  237. .b-warning .filloption {
  238. box-shadow: 0 2px 4px 0 rgba($warning, 0.4);
  239. }
  240. .b-info .filloption {
  241. box-shadow: 0 2px 4px 0 rgba($info, 0.4);
  242. }
  243. }
  244. }
  245. @include media-breakpoint-down(sm) {
  246. .ecommerce-application .swiper-responsive-breakpoints.swiper-container .swiper-slide {
  247. padding: 1rem;
  248. }
  249. }
  250. @include media-breakpoint-down(sm) {
  251. .ecommerce-application {
  252. .app-ecommerce-details {
  253. // ratings style
  254. .ratings-list-item {
  255. svg,
  256. i {
  257. font-size: 1rem;
  258. height: 1rem;
  259. width: 1rem;
  260. }
  261. }
  262. }
  263. }
  264. }