Nessuna descrizione
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.

_modal.scss 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /*************************************
  2. common modal CSS
  3. *************************************/
  4. /* modal style1 */
  5. .modal {
  6. &.style1 {
  7. .modal-dialog {
  8. max-width: 1020px;
  9. }
  10. .modal-header {
  11. border: none;
  12. padding: 6px 0.625rem;
  13. height: 30px;
  14. .close {
  15. font-size: 30px;
  16. font-weight: fontweight(medium);
  17. line-height: 1;
  18. color: $black;
  19. text-shadow: 0 1px 0 $color-white;
  20. opacity: 1;
  21. position: absolute;
  22. top: 25px;
  23. right: 30px;
  24. padding: 0;
  25. &:hover {
  26. color: $color-dark !important;
  27. }
  28. }
  29. }
  30. .modal-body {
  31. padding: 30px 30px 90px;
  32. }
  33. .product-head {
  34. .title {
  35. font-weight: fontweight(semi-bold);
  36. text-transform: capitalize;
  37. font-size: 24px;
  38. margin: 0 0 20px 0;
  39. }
  40. .sub-title {
  41. font-size: 14px;
  42. color: #565656;
  43. margin: 0 0 10px 0;
  44. }
  45. .star-content {
  46. .star-on {
  47. color: $color-warning;
  48. font-size: 12px;
  49. }
  50. .de-selected {
  51. color: $deselect;
  52. }
  53. }
  54. }
  55. .new-price {
  56. text-transform: capitalize;
  57. font-weight: fontweight(medium);
  58. line-height: 30px;
  59. color: $color-dark;
  60. font-size: 26px;
  61. margin-bottom: 30px;
  62. }
  63. }
  64. }
  65. @media (max-width: 576px) {
  66. .modal.style1 .product-head .title {
  67. margin: 0 0 2rem 0;
  68. font-size: 18px;
  69. line-height: 1.4;
  70. }
  71. }
  72. .check-box .title {
  73. text-transform: uppercase;
  74. margin-bottom: 5px;
  75. font-size: 14px;
  76. font-weight: fontweight(medium);
  77. color: $color-dark;
  78. line-height: 24px;
  79. }
  80. .pro-social-links {
  81. ul {
  82. li {
  83. margin-right: 15px;
  84. &.share {
  85. line-height: 30px;
  86. font-weight: fontweight(medium);
  87. color: $color-dark;
  88. font-size: 14px;
  89. }
  90. a {
  91. display: block;
  92. width: 20px;
  93. text-align: center;
  94. color: $grey-soft;
  95. font-size: 18px;
  96. line-height: 30px;
  97. }
  98. }
  99. }
  100. }
  101. // theme1
  102. .theme1 {
  103. .pro-social-links {
  104. ul {
  105. li {
  106. a {
  107. &:hover {
  108. color: $theme-color;
  109. }
  110. }
  111. }
  112. }
  113. }
  114. }
  115. .addto-whish-list {
  116. a {
  117. display: inline-block;
  118. line-height: 30px;
  119. padding: 0;
  120. border: none;
  121. color: $tab-menu-color;
  122. font-size: 14px;
  123. margin-right: 15px;
  124. }
  125. }
  126. // theme1
  127. .theme1 {
  128. .addto-whish-list {
  129. a {
  130. &:hover {
  131. color: $theme-color;
  132. }
  133. }
  134. }
  135. }
  136. .product-discount {
  137. margin: 15px 0px 0px;
  138. }
  139. .regular-price {
  140. font-weight: fontweight(medium);
  141. line-height: 30px;
  142. color: $color-dark;
  143. font-size: 26px;
  144. }
  145. /* modal style2 */
  146. .modal {
  147. &.style2 {
  148. .modal-dialog {
  149. max-width: 300px;
  150. }
  151. .modal-header {
  152. border: 0;
  153. padding: 0;
  154. .close {
  155. font-size: 30px;
  156. font-weight: fontweight(medium);
  157. line-height: 1;
  158. color: $black;
  159. text-shadow: 0 1px 0 $color-white;
  160. opacity: 1;
  161. position: absolute;
  162. top: 25px;
  163. right: 30px;
  164. padding: 0;
  165. z-index: 999;
  166. &:hover {
  167. color: $color-dark !important;
  168. }
  169. }
  170. }
  171. .title {
  172. padding: 45px 25px;
  173. text-align: center;
  174. font-size: 14px;
  175. color: $body-color;
  176. i {
  177. margin-right: 15px;
  178. }
  179. }
  180. }
  181. }
  182. /* modal style3 */
  183. .modal {
  184. &.style3 {
  185. .modal-dialog {
  186. max-width: 1140px;
  187. }
  188. .modal-header {
  189. padding: 15px;
  190. border-bottom: 1px solid $color-grey;
  191. .close {
  192. opacity: 1;
  193. position: absolute;
  194. top: 10px;
  195. right: 30px;
  196. padding: 0;
  197. z-index: 999;
  198. color: $color-white;
  199. font-size: 30px;
  200. font-weight: fontweight(medium);
  201. line-height: 1;
  202. text-shadow: 0 1px 0 $color-white;
  203. &:hover {
  204. color: $color-dark;
  205. color: $color-dark;
  206. }
  207. }
  208. }
  209. .modal-title {
  210. text-align: center;
  211. padding-right: 20px;
  212. color: $color-white;
  213. font-size: 1.125rem;
  214. line-height: 24px;
  215. line-height: 1;
  216. font-weight: fontweight(medium);
  217. span {
  218. font-size: 15px;
  219. margin-right: 15px;
  220. }
  221. }
  222. .modal-body {
  223. padding: 3.125rem 1.875rem;
  224. }
  225. .product-name {
  226. line-height: 24px;
  227. font-weight: fontweight(medium);
  228. font-size: 16px;
  229. margin-bottom: 20px;
  230. color: $color-dark;
  231. }
  232. .price {
  233. line-height: 1.4;
  234. color: $color-dark;
  235. font-size: 14px;
  236. font-weight: fontweight(medium);
  237. }
  238. .color {
  239. line-height: 2.5;
  240. color: $color-dark;
  241. font-size: 14px;
  242. font-weight: fontweight(medium);
  243. }
  244. .quantity {
  245. color: $color-dark;
  246. font-size: 14px;
  247. font-weight: fontweight(medium);
  248. }
  249. }
  250. }
  251. .modal-cart-content {
  252. padding-left: 2.5rem;
  253. strong {
  254. font-weight: fontweight(medium);
  255. color: $color-dark;
  256. font-size: 14px;
  257. }
  258. p {
  259. color: $color-dark;
  260. font-size: 14px;
  261. }
  262. }
  263. @media (max-width: 767px) {
  264. .modal-cart-content {
  265. padding-left: 0px;
  266. }
  267. }
  268. .divide-right {
  269. border-right: 1px solid $border-color;
  270. }
  271. .dmc {
  272. font-size: 14px !important;
  273. font-weight: fontweight(regular);
  274. }
  275. @media (max-width: 767px) {
  276. .divide-right {
  277. border-right: 1px solid transparent;
  278. }
  279. }
  280. @media (max-width: 991px) {
  281. .modal.style3 img {
  282. display: block;
  283. max-width: 180px;
  284. margin: 0 auto 1.5rem;
  285. }
  286. }
  287. .cart-content-btn i {
  288. font-size: 15px;
  289. margin-right: 15px;
  290. vertical-align: middle;
  291. }
  292. /* modal 4 style */
  293. .style4 {
  294. .modal-dialog {
  295. max-width: 600px;
  296. }
  297. .modal-title {
  298. font-weight: fontweight(regular);
  299. padding: 10px;
  300. font-size: 13px;
  301. text-transform: uppercase;
  302. background: $color-dark !important;
  303. }
  304. .modal-header {
  305. padding: 30px 30px 0px;
  306. margin-bottom: 10px;
  307. border: 0px;
  308. }
  309. .modal-body {
  310. padding: 15px 30px 30px;
  311. }
  312. .modal-form {
  313. > .title {
  314. font-weight: fontweight(medium);
  315. color: $color-dark;
  316. line-height: 24px;
  317. font-size: 1.25rem;
  318. margin-bottom: 10px;
  319. }
  320. label {
  321. &.title {
  322. border-top: 1px solid $border-color;
  323. padding-top: 15px;
  324. font-weight: fontweight(medium);
  325. color: $color-dark;
  326. font-size: 14px;
  327. }
  328. margin: 12px 0 4px 0;
  329. text-align: right;
  330. display: block;
  331. font-weight: fontweight(medium);
  332. color: $color-dark;
  333. font-size: 14px;
  334. }
  335. .form-control {
  336. padding: 0 5px;
  337. min-height: 28px;
  338. height: 28px;
  339. border: 1px solid $border-color;
  340. border-radius: 0;
  341. box-shadow: none;
  342. &.textarea {
  343. height: 80px;
  344. }
  345. }
  346. }
  347. .modal-thumb {
  348. img {
  349. border: 1px solid $border-color;
  350. }
  351. .title {
  352. padding: 10px 0 5px;
  353. font-size: 13px;
  354. font-weight: fontweight(medium);
  355. color: $color-dark;
  356. line-height: 18px;
  357. }
  358. }
  359. .star-content {
  360. span {
  361. color: $color-warning;
  362. font-size: 18px;
  363. &.quality {
  364. font-weight: fontweight(medium);
  365. color: $color-dark;
  366. font-size: 14px;
  367. }
  368. }
  369. }
  370. .required {
  371. font-size: 12px;
  372. color: $color-dark;
  373. margin-bottom: 10px;
  374. }
  375. }
  376. .or {
  377. font-size: 12px;
  378. color: $color-dark;
  379. }
  380. /*************************************
  381. common modal CSS ENd
  382. *************************************/