style.css 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. *,
  2. *::before,
  3. *::after {
  4. box-sizing: border-box;
  5. }
  6. body {
  7. font-size: 13px;
  8. font-family: "Open Sans", sans-serif;
  9. }
  10. a {
  11. color: black;
  12. text-decoration: none;
  13. }
  14. @font-face {
  15. font-family: "icomoon";
  16. src: url("../fonts/icomoon.eot?4oli75");
  17. src: url("../fonts/icomoon.eot?4oli75#iefix") format("embedded-opentype"),
  18. url("../fonts/icomoon.ttf?4oli75") format("truetype"),
  19. url("../fonts/icomoon.woff?4oli75") format("woff"),
  20. url("../fonts/icomoon.svg?4oli75#icomoon") format("svg");
  21. font-weight: normal;
  22. font-style: normal;
  23. font-display: block;
  24. }
  25. [class^="icon-"],
  26. [class*=" icon-"] {
  27. /* use !important to prevent issues with browser extensions that change fonts */
  28. font-family: "icomoon" !important;
  29. speak: none;
  30. font-style: normal;
  31. font-weight: normal;
  32. font-variant: normal;
  33. text-transform: none;
  34. line-height: 1;
  35. /* Better Font Rendering =========== */
  36. -webkit-font-smoothing: antialiased;
  37. -moz-osx-font-smoothing: grayscale;
  38. }
  39. .icon-instagram:before {
  40. content: "\e903";
  41. }
  42. .icon-car:before {
  43. content: "\e902";
  44. font-size: 40px;
  45. padding: 10px;
  46. border-radius: 50%;
  47. color: #4baec7;
  48. background: white;
  49. }
  50. .icon-phone:before {
  51. content: "\e901";
  52. font-size: 40px;
  53. padding: 10px;
  54. border-radius: 50%;
  55. color: #4baec7;
  56. background: white;
  57. }
  58. .icon-cart:before {
  59. content: "\e900";
  60. font-size: 25px;
  61. color: white;
  62. background: green;
  63. padding: 10px;
  64. border-radius: 50%;
  65. }
  66. .icon-cart1:before {
  67. content: "\e93a";
  68. font-size: 20px;
  69. color: white;
  70. background: green;
  71. padding: 10px;
  72. border-radius: 50%;
  73. }
  74. .icon-search:before {
  75. content: "\e986";
  76. font-size: 15px;
  77. margin-right: 15px;
  78. vertical-align: middle;
  79. }
  80. .icon-circle-right:before {
  81. content: "\ea42";
  82. }
  83. .icon-circle-left:before {
  84. content: "\ea44";
  85. }
  86. .icon-google:before {
  87. content: "\ea8b";
  88. }
  89. .icon-facebook:before {
  90. content: "\ea90";
  91. }
  92. .icon-twitter:before {
  93. content: "\ea96";
  94. }
  95. .container {
  96. padding: 0 160px;
  97. width: 100%;
  98. }
  99. .header-background {
  100. background: #4cb1ca;
  101. padding: 17px 0;
  102. }
  103. .header-login {
  104. display: flex;
  105. justify-content: space-between;
  106. align-items: center;
  107. }
  108. .language-currency > span {
  109. opacity: 0.8;
  110. color: white;
  111. padding-right: 5px;
  112. }
  113. #language,
  114. #currency {
  115. background: #4cb1ca;
  116. border: none;
  117. color: white;
  118. font-family: "Open Sans", sans-serif;
  119. cursor: pointer;
  120. }
  121. #language {
  122. margin-right: 20px;
  123. position: relative;
  124. }
  125. #language > li:last-child {
  126. position: absolute;
  127. display: none;
  128. margin-top: 5px;
  129. }
  130. .list-login > li {
  131. display: inline;
  132. }
  133. .list-login > li > a {
  134. color: white;
  135. }
  136. .list-login > li > a:hover {
  137. color: #000000;
  138. transition: all 0.5s;
  139. }
  140. .list-login > li:not(:last-child) {
  141. border-right: 1px solid white;
  142. padding: 0 15px;
  143. }
  144. .list-login > li:last-child {
  145. padding-left: 15px;
  146. }
  147. .logo-menu {
  148. font-size: 14px;
  149. padding: 40px 0;
  150. font-weight: bold;
  151. text-transform: uppercase;
  152. display: flex;
  153. justify-content: space-between;
  154. align-items: center;
  155. }
  156. .title {
  157. font-size: 36px;
  158. }
  159. .menu > li {
  160. display: inline;
  161. }
  162. .menu > li:not(:first-child) {
  163. padding-left: 25px;
  164. }
  165. .menu > li > a:hover {
  166. color: #4cb1ca;
  167. transition: all 0.3s;
  168. }
  169. .search {
  170. border: 1px solid black;
  171. }
  172. #search {
  173. padding: 10px 10px 10px 10px;
  174. font-size: 13px;
  175. border: none;
  176. outline: none;
  177. }
  178. .buy {
  179. display: flex;
  180. align-items: center;
  181. }
  182. .cart > a {
  183. text-transform: uppercase;
  184. font-weight: bold;
  185. color: #444444;
  186. padding-left: 10px;
  187. }
  188. /* MAIN */
  189. .banner {
  190. background: url(../images/banner.png) no-repeat;
  191. background-size: cover;
  192. width: 100%;
  193. height: 475px;
  194. margin-bottom: 50px;
  195. }
  196. .text-banner {
  197. padding-top: 190px;
  198. }
  199. .text-banner > p {
  200. text-transform: uppercase;
  201. font-size: 30px;
  202. color: white;
  203. background: black;
  204. display: inline-block;
  205. padding: 12px 15px;
  206. opacity: 0.7;
  207. }
  208. .text-banner > p:last-child {
  209. margin-top: 3px;
  210. font-weight: bold;
  211. }
  212. .product-right_banners {
  213. display: flex;
  214. }
  215. .product > h1 {
  216. font-size: 24px;
  217. text-transform: uppercase;
  218. color: #444444;
  219. }
  220. .featured-product {
  221. display: flex;
  222. justify-content: space-between;
  223. flex-wrap: wrap;
  224. padding: 25px 0 25px;
  225. }
  226. .description {
  227. display: flex;
  228. align-items: center;
  229. justify-content: space-between;
  230. }
  231. .box {
  232. display: inline-block;
  233. box-shadow: 1px 1px 8px gray;
  234. padding: 10px 10px 30px;
  235. margin-bottom: 25px;
  236. }
  237. .box:hover {
  238. transform: scale(1.1);
  239. }
  240. .description-money {
  241. font-size: 15px;
  242. padding-top: 15px;
  243. }
  244. .description-money > h2 {
  245. padding-bottom: 10px;
  246. max-width: 160px;
  247. }
  248. .description-money > span {
  249. color: green;
  250. font-size: 20px;
  251. }
  252. .icon-cart {
  253. margin-top: 15px;
  254. }
  255. .right_banners {
  256. margin-left: 25px;
  257. }
  258. .right-slider {
  259. background: url(../images/right_banner.png) no-repeat;
  260. background-size: cover;
  261. height: 453px;
  262. width: 241px;
  263. display: flex;
  264. flex-direction: column;
  265. align-items: center;
  266. justify-content: space-between;
  267. }
  268. .right-slider > h2 {
  269. text-transform: uppercase;
  270. font-size: 24px;
  271. text-align: center;
  272. padding-top: 30px;
  273. }
  274. #btn {
  275. margin: 0 auto 30px;
  276. color: white;
  277. background: #4baec7;
  278. border: 1px solid #4baec7;
  279. font-size: 14px;
  280. padding: 15px 25px;
  281. cursor: pointer;
  282. }
  283. .slider-circle {
  284. box-shadow: 0 0 4px #a3a3a3;
  285. padding: 10px 0;
  286. max-width: 232px;
  287. margin-left: 4px;
  288. text-align: center;
  289. }
  290. #circle {
  291. background: green;
  292. padding: 8px;
  293. border-radius: 50%;
  294. display: inline-block;
  295. }
  296. /* FOOTER */
  297. .shipping-call-us {
  298. background: #4cb1ca;
  299. font-size: 21px;
  300. padding: 20px 0;
  301. text-transform: uppercase;
  302. }
  303. .shipping-call-us > .container {
  304. display: flex;
  305. justify-content: space-between;
  306. align-items: center;
  307. }
  308. .delivery > a,
  309. .call-us > a {
  310. display: flex;
  311. align-items: center;
  312. }
  313. .delivery > a > p,
  314. .call-us > a > p {
  315. color: white;
  316. padding-left: 20px;
  317. }