Няма описание
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.

_single-product.scss 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. /************************
  2. single-product start
  3. ************************/
  4. .single-product-head {
  5. .title {
  6. font-weight: fontweight(semi-bold);
  7. font-size: 30px;
  8. }
  9. .star-content {
  10. .star-on {
  11. margin: 0 1px 0 0;
  12. color: $color-warning;
  13. font-weight: fontweight(regular);
  14. font-size: 18px;
  15. }
  16. a {
  17. font-size: 15px;
  18. font-weight: fontweight(regular);
  19. span {
  20. margin-right: 6px;
  21. }
  22. }
  23. }
  24. }
  25. // product-tab-menu single-product
  26. .product-tab-menu {
  27. &.single-product {
  28. .nav-item {
  29. margin-bottom: 30px;
  30. .nav-link {
  31. text-transform: capitalize;
  32. color: $color-dark;
  33. padding: 0 0 15px 0;
  34. margin: 0 30px;
  35. font-size: 24px;
  36. font-weight: fontweight(semi-bold);
  37. border: 0px;
  38. @include max-screen(767) {
  39. font-size: 18px;
  40. }
  41. @include border-radius(0px);
  42. &:hover {
  43. color: $theme-color;
  44. }
  45. &.active {
  46. color: $theme-color;
  47. }
  48. }
  49. }
  50. }
  51. }
  52. .single-product-desc {
  53. background: $color-white;
  54. padding: 30px;
  55. border: 1px solid $border-color;
  56. ul {
  57. font-size: 15px;
  58. line-height: 24px;
  59. text-align: left;
  60. }
  61. }
  62. .studio-thumb {
  63. img {
  64. border: 1px solid $border-color;
  65. }
  66. h3 {
  67. text-transform: capitalize;
  68. font-weight: fontweight(medium);
  69. color: $color-dark;
  70. line-height: 24px;
  71. font-size: 0.9375rem;
  72. margin-top: 1.25rem;
  73. margin-bottom: 0.5rem;
  74. }
  75. h6 {
  76. font-size: 1rem;
  77. color: $color-dark;
  78. font-weight: fontweight(medium);
  79. small {
  80. font-weight: fontweight(regular);
  81. font-size: 14px;
  82. color: $body-color;
  83. }
  84. }
  85. }
  86. .product-features {
  87. ul {
  88. display: flex;
  89. flex-wrap: wrap;
  90. align-items: stretch;
  91. li {
  92. flex: 1 0 40%;
  93. font-weight: fontweight(regular);
  94. background: $feature;
  95. padding: 0.625rem;
  96. margin-right: 0.625rem;
  97. min-height: 2.5rem;
  98. word-break: normal;
  99. text-transform: capitalize;
  100. margin-bottom: 0.5rem;
  101. }
  102. }
  103. }
  104. .grade-content {
  105. .grade {
  106. font-weight: fontweight(medium);
  107. text-transform: capitalize;
  108. font-size: 14px;
  109. color: $instock;
  110. margin-right: 10px;
  111. }
  112. .star-on {
  113. color: $color-warning;
  114. font-weight: fontweight(regular);
  115. font-size: 18px;
  116. }
  117. .title {
  118. font-weight: fontweight(medium);
  119. text-transform: capitalize;
  120. font-size: 14px;
  121. color: $instock;
  122. margin-top: 20px;
  123. margin-bottom: 10px;
  124. }
  125. .sub-title {
  126. color: $color-dark;
  127. margin-bottom: 10px;
  128. font-weight: fontweight(medium);
  129. line-height: 18px;
  130. font-size: 14px;
  131. padding-top: 9px;
  132. margin-bottom: 10px;
  133. }
  134. p {
  135. line-height: 18px;
  136. font-size: 14px;
  137. color: $grey-soft;
  138. }
  139. }
  140. .group-img {
  141. img {
  142. max-width: 80px;
  143. }
  144. }
  145. .product-grouped {
  146. .title {
  147. margin-bottom: 0.8rem;
  148. color: $color-dark;
  149. font-size: 15px;
  150. text-transform: capitalize;
  151. }
  152. span {
  153. font-size: 14px;
  154. color: $body-color;
  155. line-height: 1;
  156. }
  157. }
  158. .product-anotherinfo-wrapper ul li {
  159. color: #888;
  160. font-size: 14px;
  161. list-style: outside none none;
  162. margin: 0 0 13px;
  163. }
  164. .product-anotherinfo-wrapper ul li span {
  165. color: $color-dark;
  166. display: inline-block;
  167. font-weight: 500;
  168. margin: 0 26px 0 0;
  169. min-width: 85px;
  170. }
  171. .single-review .review-top-wrap .review-left {
  172. display: -webkit-box;
  173. display: -ms-flexbox;
  174. display: flex;
  175. }
  176. .single-review .review-top-wrap .review-left .review-name {
  177. margin-right: 25px;
  178. }
  179. .single-review .review-top-wrap .review-left .review-name h4 {
  180. font-size: 16px;
  181. font-weight: 600;
  182. }
  183. .single-review .review-top-wrap .review-left .rating-product {
  184. line-height: 1;
  185. }
  186. .rating-product {
  187. margin-bottom: 6px;
  188. }
  189. .rating-product i {
  190. overflow: hidden;
  191. font-size: 16px;
  192. color: #fdd835;
  193. }
  194. .single-review .review-top-wrap .review-left {
  195. display: -webkit-box;
  196. display: -ms-flexbox;
  197. display: flex;
  198. }
  199. .review-left a {
  200. color: #565656;
  201. margin-left: auto;
  202. }
  203. .single-review .review-bottom p {
  204. margin: 0;
  205. max-width: 93%;
  206. }
  207. .ratting-form-wrapper .ratting-form form .star-box {
  208. display: -webkit-box;
  209. display: -ms-flexbox;
  210. display: flex;
  211. margin: 6px 0 20px;
  212. }
  213. .ratting-form-wrapper h3 {
  214. margin: 0;
  215. font-size: 16px;
  216. font-weight: 600;
  217. }
  218. .ratting-form-wrapper .ratting-form form .star-box span {
  219. margin: 0 15px 0 0;
  220. }
  221. .rating-form-style {
  222. margin-bottom: 10px;
  223. }
  224. .ratting-form-wrapper .ratting-form form .rating-form-style input,
  225. .ratting-form-wrapper .ratting-form form .rating-form-style textarea {
  226. padding: 2px 10px 2px 20px;
  227. background: transparent;
  228. border: 1px solid #e6e6e6;
  229. color: #333;
  230. }
  231. .rating-form-style input {
  232. height: 45px;
  233. -webkit-box-shadow: none;
  234. box-shadow: none;
  235. padding-left: 10px;
  236. font-size: 14px;
  237. color: #253237;
  238. width: 100%;
  239. margin-bottom: 15px;
  240. outline: none;
  241. }
  242. .rating-form-style {
  243. margin-bottom: 10px;
  244. }
  245. .ratting-form-wrapper .ratting-form form .rating-form-style textarea {
  246. height: 180px;
  247. padding: 20px 10px 2px 20px;
  248. margin-bottom: 20px;
  249. width: 100%;
  250. outline: none;
  251. }
  252. .rating-form-style input[type="submit"] {
  253. padding: 0 55px !important;
  254. line-height: 48px;
  255. height: 48px;
  256. width: auto;
  257. font-size: 15px;
  258. font-weight: 600;
  259. border: 0;
  260. box-shadow: none;
  261. text-transform: uppercase;
  262. background: $color-dark !important;
  263. color: #fff !important;
  264. transition: all 300ms linear;
  265. &:hover {
  266. background: $theme-color !important;
  267. }
  268. }
  269. /************************
  270. single-product End
  271. ************************/