Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

_offcanvas-cart.scss 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /********************************
  2. offcanvas cart style
  3. ********************************/
  4. .offcanvas {
  5. .inner {
  6. .head {
  7. margin-bottom: 25px;
  8. padding-bottom: 15px;
  9. border-bottom: 1px solid $border-color2;
  10. .offcanvas-close {
  11. position: relative;
  12. width: 20px;
  13. height: 20px;
  14. text-indent: -9999px;
  15. border: 0;
  16. background-color: transparent;
  17. }
  18. }
  19. .sub-total {
  20. padding-top: 15px;
  21. padding-bottom: 15px;
  22. border-top: 1px solid $border-color2;
  23. margin: 30px 0;
  24. border-bottom: 1px solid $border-color2;
  25. strong {
  26. color: $color-dark;
  27. font-weight: fontweight(medium);
  28. }
  29. .amount {
  30. font-weight: fontweight(medium);
  31. }
  32. }
  33. .minicart-message {
  34. margin-top: 15px;
  35. color: $color-dark;
  36. margin-bottom: 15px;
  37. }
  38. }
  39. }
  40. .minicart-product-list {
  41. margin: 0;
  42. padding-left: 0;
  43. list-style: none;
  44. li {
  45. display: flex;
  46. flex-wrap: wrap;
  47. margin-bottom: 30px;
  48. padding-bottom: 30px;
  49. border-bottom: 1px solid $border-color;
  50. .image {
  51. flex: 1 0 0px;
  52. img {
  53. max-width: 100%;
  54. border: 1px solid $border-color;
  55. }
  56. @include max-screen(575) {
  57. flex: 1 0 50px;
  58. }
  59. }
  60. &:last-child {
  61. margin-bottom: 0;
  62. padding-bottom: 0;
  63. border-bottom: 0;
  64. }
  65. .content {
  66. position: relative;
  67. flex: 1 0 calc(100% - 150px);
  68. padding-left: 15px;
  69. .title {
  70. color: $color-dark;
  71. line-height: 18px;
  72. margin-bottom: 10px;
  73. font-size: 15px;
  74. text-transform: capitalize;
  75. }
  76. .quantity-price {
  77. font-size: 14px;
  78. display: block;
  79. margin-top: 10px;
  80. .amount {
  81. color: $color-dark;
  82. font-weight: 500;
  83. }
  84. }
  85. .remove {
  86. line-height: 1;
  87. position: absolute;
  88. top: 0;
  89. right: 0;
  90. padding: 0 3px;
  91. color: $color-dark;
  92. font-size: 18px;
  93. }
  94. @include max-screen(575) {
  95. flex: 1 0 calc(100% - 75px);
  96. }
  97. }
  98. }
  99. }
  100. // theme1
  101. .theme1 {
  102. .inner {
  103. .sub-total {
  104. .amount {
  105. color: $theme-color;
  106. }
  107. }
  108. }
  109. }
  110. // theme1
  111. .theme1 {
  112. .minicart-product-list {
  113. li {
  114. .content {
  115. .title {
  116. &:hover {
  117. color: $theme-color;
  118. }
  119. }
  120. .remove {
  121. &:hover {
  122. color: $theme-color;
  123. }
  124. }
  125. }
  126. }
  127. }
  128. }
  129. /********************************
  130. offcanvas cart style ENd
  131. ********************************/