style.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. ul.inline li{
  2. padding:0;
  3. }
  4. ul.inline{
  5. margin: 0;
  6. }
  7. a:hover,a:focus,a:active{
  8. color:#333;
  9. }
  10. a{
  11. color:#727272;
  12. }
  13. body {
  14. overflow-x: hidden;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. ::-moz-selection {
  19. background-color: #727272;
  20. color: #fff;
  21. text-shadow: none;
  22. -webkit-text-shadow: none;
  23. }
  24. ::selection {
  25. background-color: #727272;
  26. color: #fff;
  27. text-shadow: none;
  28. -webkit-text-shadow: none;
  29. }
  30. a{
  31. outline: none!important;
  32. }
  33. a:hover,
  34. a:active,
  35. a:focus
  36. {
  37. text-decoration: none;
  38. }
  39. h1,
  40. h2,
  41. h3,
  42. h4,
  43. h5{
  44. margin: 0;
  45. font-weight: bold;
  46. }
  47. .cusmo-btn{
  48. font-family: "Raleway"!important;
  49. background-color: #FFBB00;
  50. border-radius: 30px;
  51. border:none;
  52. color: #FFFFFF !important;
  53. display: inline-block !important;
  54. font-size: 13px;
  55. font-weight: bold !important;
  56. padding: 10px 20px !important;
  57. text-decoration: none;
  58. text-transform: uppercase;
  59. }
  60. .download-btn{
  61. font-family: "Raleway"!important;
  62. background-color: #2E8B57;
  63. border-radius: 5px;
  64. color: #FFFFFF !important;
  65. font-size: 13px;
  66. font-weight: bold !important;
  67. padding: 10px 20px !important;
  68. text-decoration: none;
  69. }
  70. .cusmo-btn.gray{
  71. background-color: #D2D2D2;
  72. }
  73. .cusmo-btn:hover{
  74. color:#fff!important;
  75. background-color: #333!important;
  76. background-image: none!important;
  77. }
  78. .cusmo-btn:focus{
  79. text-decoration: none;
  80. background-color: #333!important;
  81. background-image: none!important;
  82. }
  83. .add-to-wishlist-btn{
  84. color:#70543f;
  85. }
  86. .products-holder .row-fluid div:last-child .product-item:after{
  87. display: none;
  88. }
  89. .section-home-products .products-holder .product-item:after{
  90. right: -24px;
  91. }
  92. .products-holder .product-item:after{
  93. content: "";
  94. height: 90%;
  95. position: absolute;
  96. right: -34px;
  97. top: 0;
  98. width: 1px;
  99. background-color: #E9E9E9;
  100. }
  101. .products-holder .product-item{
  102. text-align: center;
  103. padding: 10px 0 12px 0;
  104. border-radius: 10px;
  105. position: relative;
  106. border:4px solid transparent;
  107. width: 200px;
  108. }
  109. .tab-content{
  110. overflow: hidden;
  111. }
  112. .products-holder .product-item:hover{
  113. border:4px solid #FFBB00;
  114. z-index: 1000;
  115. }
  116. .products-holder .product-item .tag-line span{
  117. display: block;
  118. font-style: italic;
  119. }
  120. .ie8 .products-holder .product-item .add-button{
  121. display: none;
  122. }
  123. .ie8 .products-holder .product-item:hover.add-button{
  124. display: inline-block;
  125. }
  126. .products-holder .product-item .add-button{
  127. opacity: 0;
  128. }
  129. .products-holder .product-item:hover .add-button{
  130. opacity: 1;
  131. }
  132. .products-holder.tab-pane{
  133. display: none;
  134. padding-bottom: 30px;
  135. }
  136. .products-holder.tab-pane.in{
  137. display: block;
  138. }
  139. .products-holder .product-item h1{
  140. color: #373737;
  141. font-size: 17px;
  142. font-weight: bold;
  143. line-height: 18px;
  144. margin: 12px 0 1px;
  145. text-transform: uppercase;
  146. }
  147. .products-holder .price{
  148. color: #75513B;
  149. font-size: 18px;
  150. font-weight: 600;
  151. margin: 5px 0 12px;
  152. }
  153. .section-home-products .controls-holder {
  154. text-align: center;
  155. margin: 40px 0 30px 0;
  156. border-bottom: 4px solid #E1E4D9;
  157. padding-bottom: 20px;
  158. }
  159. .section-home-products .controls-holder li{
  160. color: #8D8D8D;
  161. font-size: 18px;
  162. font-weight: 600;
  163. line-height: 23px;
  164. margin-right: 47px;
  165. position: relative;
  166. }
  167. .controls-holder li:hover:after,
  168. .controls-holder li.active:after
  169. {
  170. background-color: #fff;
  171. bottom: -27px;
  172. box-shadow: 0 4px #E1E4D9;
  173. content: "";
  174. height: 20px;
  175. position: absolute;
  176. width: 20px;
  177. left: 0;
  178. right: 0;
  179. margin-left: auto;
  180. margin-right: auto;
  181. border-radius: 50px;
  182. }
  183. .buttons-holder{
  184. text-align: right;
  185. margin-top:20px;
  186. }
  187. .total-p{
  188. color: #75513B;
  189. font-size: 25px;
  190. font-weight: 600;
  191. margin-right: 5px;
  192. }
  193. .total-a{
  194. color: #75513B;
  195. font-size: 25px;
  196. font-weight: 600;
  197. margin-right: 20px
  198. }
  199. @media all and (min-width:1024px){
  200. .container{
  201. width: 970px;
  202. margin: 0 auto;
  203. }
  204. .home-slider .flex-direction-nav .flex-prev {
  205. left: -10px;
  206. }
  207. .home-slider .flex-direction-nav .flex-next {
  208. right: -10px;
  209. }
  210. }