mini-cart.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. ol li{
  2. list-style-type: none;
  3. height:100%;
  4. margin:0;
  5. padding:0;
  6. }
  7. .basket-row a {
  8. background: none !important;
  9. }
  10. .custom-flex {
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-between;
  14. flex-flow: row wrap;
  15. }
  16. .basket-row {
  17. padding: 0 15px;
  18. height: 53px;
  19. overflow: hidden;
  20. margin-bottom: 7px;
  21. }
  22. .cust-flex{
  23. display: flex;
  24. justify-content: space-between;
  25. flex-flow: row;
  26. align-content: stretch;
  27. flex-basis: 65px;
  28. font-size: 17px;
  29. }
  30. .flex-prod-name{
  31. width: 250px;
  32. font-size: 16px;
  33. max-height: 48px;
  34. }
  35. .cart {
  36. width: 480px;
  37. border:1px solid #ccc;
  38. line-height: 22px;
  39. }
  40. .cart_list ol {
  41. style:none;
  42. }
  43. .empty-cart{
  44. text-align: center;
  45. font-style: tahoma;
  46. font-weight: bold;
  47. }
  48. .prod_price{
  49. width: 87px;
  50. text-align: right;
  51. font-size: 18px;
  52. font-weight: 500;
  53. }
  54. .cart_size{
  55. color:white;
  56. width: 48px;
  57. height: 30px;
  58. cursor: pointer;
  59. margin: 0 6px;
  60. }
  61. .cart-title{
  62. border: solid 1px;
  63. }
  64. .dropdown {
  65. color:#707070;
  66. position: relative;
  67. display: inline-block;
  68. }
  69. /*.*/
  70. .dropdown:hover .dropdown-cont {
  71. display: block;
  72. }
  73. .dropdown-cont {
  74. color:#707070;
  75. display: none;
  76. position: absolute;
  77. right:5px;
  78. background-color: #f1f1f1;
  79. min-width: 160px;
  80. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  81. z-index: 50;
  82. top: 50px;
  83. }
  84. .dropdown-cont a {
  85. color:#707070;
  86. padding: 12px;
  87. padding-right: 12px;
  88. text-decoration: none;
  89. }
  90. .dropdown-cont a:hover{
  91. background-color: #ddd;
  92. }
  93. .mini_img {
  94. height: 30px;
  95. width: 30px;
  96. margin-bottom: -5px;
  97. }
  98. .cart_title {
  99. font-family: Roboto, sans-serif;
  100. text-align: center;
  101. padding: 15px 0;
  102. border-bottom: 1px solid;
  103. font-weight: bold;
  104. font-size: 18px;
  105. }
  106. .cart_total{
  107. border-top: 1px solid;
  108. padding: 10px 15px;
  109. font-size: 20px;
  110. display: flex;
  111. justify-content: flex-end;
  112. }
  113. .cart_total span {
  114. padding: 0 5px;
  115. font-size: 17px;
  116. }
  117. .button{
  118. margin:2px;
  119. }
  120. .quantity_but{
  121. font-size: 14px;
  122. font-weight: bold;
  123. color: black;
  124. padding: 0 3px;
  125. vertical-align: text-bottom;
  126. }
  127. .quantity_but:hover {
  128. cursor:pointer;
  129. }
  130. .cart_product{
  131. padding: 3px 0;
  132. font-size: 14px;
  133. font-family: tahoma;
  134. }
  135. .cart_product .cart_name{
  136. text-transform: capitalize;
  137. text-align: center;
  138. }
  139. .cart_product .quantity{
  140. min-width:15px;
  141. text-align: center;
  142. display:inline-block;
  143. }
  144. .no-padding {
  145. padding: 0;
  146. }
  147. .no-padding-left{
  148. padding-left:0;
  149. }
  150. .cart ol {
  151. padding:0px;
  152. }
  153. .cart_items a:hover {
  154. background-color: #ddd;
  155. }
  156. .cart_products{
  157. padding:0px;
  158. }
  159. .cart_products li:hover{
  160. border-radius: 2px;
  161. border-color: #D8D8D8;
  162. background-color: #D8D8D8;
  163. cursor:pointer;
  164. }
  165. .cart_total .price {
  166. font-weight: bold;
  167. }
  168. .order_but {
  169. padding-top:2px;
  170. margin-right: 15px;
  171. margin-left: 15px;
  172. color:#f8f8f8;
  173. font-size: 15px;
  174. border-color: #78909c;
  175. background:#78909c;
  176. text-align: center;
  177. float: right;
  178. }
  179. .order_but:hover{
  180. cursor: pointer;
  181. border-color: #607d8b;
  182. background:#607d8b;
  183. }