style.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758
  1. /**
  2. * @version 7.10 [rev.7.10.03]
  3. */
  4. @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
  5. * {
  6. margin: 0;
  7. padding: 0;
  8. }
  9. body {
  10. font-family: 'Open Sans', sans-serif;
  11. font-size: 14px;
  12. font-weight: 400;
  13. color: #333333;
  14. background-color: #f0f0f0;
  15. }
  16. #wrapper {
  17. width: 100%;
  18. background-color: #fff;
  19. padding-top: 20px;
  20. padding-bottom: 20px;
  21. min-height: 600px;
  22. }
  23. h1, h2, h3, h4, h5, h6 {
  24. font-weight: 700;
  25. margin-top: 0;
  26. margin-bottom: 1em;
  27. }
  28. h1 {
  29. font-size: 34px;
  30. }
  31. h2 {
  32. font-size: 30px;
  33. }
  34. h3 {
  35. font-size: 26px;
  36. }
  37. h4 {
  38. font-size: 22px;
  39. }
  40. /* overwritten default headline css */
  41. h1.headline,
  42. h2.headline,
  43. h3.headline {
  44. background-color: #f8f8f8;
  45. border-bottom: 4px solid #004D00;
  46. line-height: normal;
  47. padding-left: 10px;
  48. }
  49. h1.headline span,
  50. h2.headline span,
  51. h3.headline span {
  52. border-bottom: 4px solid #51A74E;
  53. padding: 0 14px;
  54. }
  55. h4.headline {
  56. border-bottom: 1px solid #dedede;
  57. line-height: normal;
  58. }
  59. h4.headline span {
  60. border-bottom: 2px solid #e0e0e0;
  61. padding-bottom: 1px;
  62. font-weight: 500;
  63. }
  64. /* overridden carousel controls - will display on the top right */
  65. .carousel-control {
  66. padding-top: 0;
  67. width: 5%;
  68. }
  69. .carousel-control .icon-prev,
  70. .carousel-control .icon-next,
  71. .carousel-control .glyphicon-chevron-left,
  72. .carousel-control .glyphicon-chevron-right {
  73. top: 5%;
  74. }
  75. .carousel-control .icon-prev,
  76. .carousel-control .glyphicon-chevron-left {
  77. left: 20%;
  78. }
  79. .carousel-control .icon-next,
  80. .carousel-control .glyphicon-chevron-right {
  81. right: 20%;
  82. }
  83. .carousel-control.left {
  84. left: auto;
  85. right: 20px;
  86. }
  87. img {
  88. border: 0;
  89. border: none;
  90. }
  91. .img-thumbnail,
  92. .form-control {
  93. border-radius: 2px;
  94. }
  95. .price {
  96. color: #115B8A;
  97. }
  98. /* browse container content */
  99. #browse .filter-results,
  100. #browse .section-title {
  101. margin: 0 0 12px 0;
  102. font-size: 24px;
  103. line-height: 28px;
  104. }
  105. #browse .featured h2 {
  106. font-size: 18px;
  107. line-height: 20px;
  108. margin: 0 0 16px;
  109. color: #999;
  110. }
  111. .browse-title {
  112. margin-bottom: 12px;
  113. }
  114. /* browse menu left side search filter */
  115. .search {
  116. font-size: 12px;
  117. margin-top: 0;
  118. list-style: none;
  119. padding-left: 0;
  120. }
  121. .search li > a {
  122. display: block;
  123. font-weight: bold;
  124. margin-bottom: 4px;
  125. }
  126. .search ul {
  127. display: block;
  128. padding: 0;
  129. max-height: 230px;
  130. overflow: auto;
  131. margin-bottom: 12px;
  132. }
  133. .search ul a {
  134. font-weight: normal;
  135. color: #999;
  136. padding: 0;
  137. }
  138. .search .form-group {
  139. margin-bottom: 0;
  140. }
  141. .search label {
  142. margin-top: 0;
  143. margin-bottom: 10px;
  144. }
  145. .search label:last-child {
  146. margin-bottom: 0;
  147. }
  148. a {
  149. color: #115B8A;
  150. text-decoration: none;
  151. display: inline-block;
  152. text-shadow: 0 1px 0 #FFFFFF;
  153. }
  154. a:hover, a:focus {
  155. color: #777;
  156. text-decoration: none;
  157. }
  158. hr {
  159. border-top: 1px solid #ddd;
  160. margin: 4px 0 2px;
  161. }
  162. input:focus,
  163. select:focus,
  164. textarea:focus,
  165. button:focus {
  166. outline: none;
  167. }
  168. /* -- branding header (layout) -- */
  169. .branding-header {
  170. position: relative;
  171. background-color: #f8f8f8;
  172. padding-bottom: 15px;
  173. }
  174. /* -- logo left (layout) -- */
  175. .logo {
  176. float: left;
  177. width: 30%;
  178. margin: 19px 0 5px;
  179. }
  180. .logo img {
  181. width: 100%;
  182. max-width: 100%;
  183. }
  184. .nav-tabs > li > a {
  185. border-radius: 2px 2px 0 0;
  186. }
  187. .tab-content {
  188. background-color: #F6F6F6;
  189. padding-left: 8px;
  190. padding-right: 8px;
  191. padding-bottom: 8px;
  192. border-left: 1px solid #eee;
  193. border-right: 1px solid #eee;
  194. border-bottom: 1px solid #ddd;
  195. }
  196. .actions .details-tabs > li > a {
  197. border-radius: 2px 2px 0 0;
  198. }
  199. .actions .details-content {
  200. border-radius: 2px;
  201. }
  202. /* -- header bar (layout) -- */
  203. .header-bar {
  204. margin-top: 15px;
  205. }
  206. .header-bar .login-buttons {
  207. font-size: 12px;
  208. margin-bottom: 8px;
  209. }
  210. .header-bar .welcome-msg {
  211. padding-right: 12px;
  212. }
  213. .header-bar .login-buttons a {
  214. border-left: 1px dotted #333;
  215. padding: 0 6px 0 12px;
  216. color: #001F3A;
  217. }
  218. /* -- search bar (layout) -- */
  219. .search-bar {
  220. /*background-color: #338930;*/
  221. background-color: #479D44;
  222. font-size: 20px;
  223. font-weight: 700;
  224. color: #fff;
  225. }
  226. .search-bar .container {
  227. position: relative;
  228. }
  229. .search-bar .navbar {
  230. margin: 0;
  231. }
  232. /* search bar browse drop-down menu (layout) */
  233. .browse-menu {
  234. float: left;
  235. background-color: #333;
  236. }
  237. .browse-menu a,
  238. .search-bar .navbar-nav > li > a {
  239. display: block;
  240. color: #fff;
  241. line-height: 60px;
  242. text-shadow: 1px 1px 0 #001F3A;
  243. font-weight: bold;
  244. white-space: nowrap;
  245. padding: 0 25px;
  246. text-transform: uppercase;
  247. text-align: center;
  248. }
  249. .search-bar .navbar-nav > li > a {
  250. text-shadow: 1px 1px 0 #004D00;
  251. }
  252. .search-bar .navbar-nav > li > a:hover {
  253. background-color: #297F26;
  254. }
  255. .search-bar .navbar-nav > li.active > a {
  256. background-color: #51A74E;
  257. }
  258. #browse-content a:hover {
  259. color: #479D44;
  260. }
  261. .browse-menu a span {
  262. margin-left: 5px;
  263. font-size: 12px;
  264. }
  265. /* categories browse drop-down menu content (layout) */
  266. #browse-content {
  267. width: 60%;
  268. display: none;
  269. position: absolute;
  270. top: 60px;
  271. left: 0;
  272. z-index: 999;
  273. background: #fff;
  274. box-shadow: 0 2px 2px -1px #e8e8e8;
  275. border: 1px solid #e8e8e8;
  276. padding: 0 5px 10px 15px;
  277. margin-top: 0;
  278. list-style: none;
  279. }
  280. #browse-content li {
  281. float: left;
  282. width: 50%;
  283. }
  284. #browse-content li a {
  285. font-size: 14px;
  286. font-weight: 400;
  287. }
  288. #browse-content li a:hover {
  289. color: #338930;
  290. }
  291. #browse-content li small {
  292. color: #333;
  293. font-size: 12px;
  294. font-weight: normal;
  295. }
  296. #browse-content span {
  297. margin-left: 5px;
  298. font-size: 10px;
  299. color: #333;
  300. }
  301. /* ----- Category Select (layout) ----- */
  302. #category-select-btn {
  303. padding: 6px 8px;
  304. background-color: #fafafa;
  305. border: 1px solid #CCC;
  306. font-weight: normal;
  307. height: 34px;
  308. position: relative;
  309. width: 215px;
  310. border-radius: 2px;
  311. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  312. }
  313. #category-select-btn i {
  314. float: right;
  315. line-height: 22px;
  316. padding-left: 12px;
  317. padding-right: 4px;
  318. border-left: 1px solid #ddd;
  319. }
  320. #category-select-content {
  321. display: none;
  322. position: absolute;
  323. top: 45px;
  324. left: 0;
  325. z-index: 1999;
  326. overflow-y: auto;
  327. max-height: 300px;
  328. background-color: #fafafa;
  329. border: solid 1px #ddd;
  330. margin-top: 0;
  331. list-style: none;
  332. padding-left: 0;
  333. }
  334. #category-select-content li + li {
  335. border-top: 1px dotted #ccc;
  336. }
  337. #category-select-content a {
  338. display: block;
  339. outline: none;
  340. padding: 7px 10px;
  341. }
  342. /* header search form wrapper (layout) */
  343. .header-search-form {
  344. float: right;
  345. position: relative;
  346. }
  347. /* shopping cart button position */
  348. .navbar-nav .btn-shopping-cart-dropdown {
  349. margin-top: 15px;
  350. }
  351. /* buttons css (layout) */
  352. .btn {
  353. font-weight: 400;
  354. border-radius: 2px;
  355. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  356. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  357. }
  358. .btn-link {
  359. box-shadow: none;
  360. }
  361. .btn-primary {
  362. border: 1px solid #006614;
  363. background-color: #108916;
  364. }
  365. .btn-primary:hover,
  366. .btn-primary:focus {
  367. background-color: #338930;
  368. }
  369. .btn-primary,
  370. .btn-success,
  371. .btn-info,
  372. .btn-warning,
  373. .btn-danger {
  374. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  375. }
  376. .btn-sm {
  377. font-size: 12px;
  378. font-weight: 400;
  379. }
  380. .nav-pills > li.active > a,
  381. .nav-pills > li.active > a:focus,
  382. .nav-pills > li.active > a:hover {
  383. background-color: #306F8A;
  384. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  385. }
  386. /* header left navbar w/ icons */
  387. .left-navbar li a {
  388. line-height: 24px;
  389. }
  390. .left-navbar li a > i {
  391. font-size: 16px;
  392. color: #444;
  393. }
  394. .left-navbar .badge {
  395. text-shadow: none !important;
  396. font-size: 11px;
  397. font-weight: 400;
  398. }
  399. /* header advanced search box (layout) */
  400. .form-header {
  401. margin-top: 7px;
  402. }
  403. .form-header .input-search {
  404. width: 290px;
  405. background-color: #FAFAFA;
  406. }
  407. .advanced-search-box {
  408. line-height: 48px;
  409. border-left: 1px solid #f1f1f1;
  410. }
  411. .advanced-search-box a {
  412. color: #333;
  413. font-weight: bold;
  414. }
  415. .advanced-search-box a:hover {
  416. color: #306F8A;
  417. }
  418. /* categories and home page slider (layout - app/index) */
  419. .categories-and-slider {
  420. position: relative;
  421. height: 264px;
  422. width: 958px;
  423. border: 1px solid #f1f1f1;
  424. margin: 40px 0;
  425. }
  426. .categories-and-slider {
  427. border-bottom: 1px solid #ddd;
  428. }
  429. /* home page categories accordion (layout - app/index) */
  430. .categories-accordion {
  431. width: 230px;
  432. height: 264px;
  433. border-right: 1px solid #f1f1f1;
  434. float: left;
  435. }
  436. .clear {
  437. clear: both;
  438. visibility: hidden !important;
  439. display: block !important;
  440. }
  441. /* category select (layout - app/index) */
  442. .categories-select {
  443. margin: 0;
  444. width: 230px;
  445. float: left;
  446. cursor: pointer;
  447. text-align: left;
  448. }
  449. .categories-select a {
  450. display: block;
  451. padding: 8px 0;
  452. text-indent: 15px;
  453. color: #333;
  454. font-weight: bold;
  455. font-size: 13px;
  456. border-bottom: 1px solid #f1f1f1;
  457. }
  458. .categories-select a:hover {
  459. color: #306F8A;
  460. }
  461. .icon {
  462. display: block;
  463. float: left;
  464. width: 32px;
  465. height: 32px;
  466. margin: 20px 15px;
  467. }
  468. /* tabbed content (layout - app/index) */
  469. .tabbed-content {
  470. margin: 20px 0 0;
  471. /*width: 960px;*/
  472. position: relative;
  473. float: left;
  474. }
  475. /* nav container (layout - app/index) */
  476. .home-page-tabs ul {
  477. display: block;
  478. float: left;
  479. margin-left: 35px;
  480. margin-bottom: 0;
  481. }
  482. .home-page-tabs ul li {
  483. display: inline;
  484. text-align: center;
  485. float: left;
  486. margin-right: 3px;
  487. }
  488. .home-page-tabs ul li a {
  489. top: 2px;
  490. padding: 11px 25px;
  491. background: #f1f1f1;
  492. border: 2px solid #f1f1f1;
  493. border-bottom: 0;
  494. border-radius: 6px 6px 0 0;
  495. -webkit-border-radius: 6px 6px 0 0;
  496. -moz-border-radius: 6px 6px 0 0;
  497. position: relative;
  498. color: #999;
  499. font-weight: bold;
  500. text-shadow: 1px 1px 1px #eee;
  501. font-size: 14px;
  502. cursor: pointer;
  503. float: left;
  504. margin: 0;
  505. }
  506. .home-page-tabs ul li a:hover {
  507. color: #306F8A;
  508. background: #f8f8f8;
  509. top: 3px;
  510. }
  511. .home-page-tabs ul li a.active {
  512. top: 3px;
  513. color: #306F8A;
  514. border: 2px solid #f1f1f1;
  515. text-shadow: 1px 1px 1px white;
  516. background: #f8f8f8;
  517. border-bottom: none !important;
  518. }
  519. /* login page */
  520. .login-box .content {
  521. min-height: 200px;
  522. padding-bottom: 20px;
  523. }
  524. .login-box .first {
  525. border-right: 1px solid #ddd;
  526. }
  527. .product h1.title {
  528. margin-bottom: 0.4em;
  529. }
  530. .subtitle {
  531. display: inline;
  532. font-size: 18px;
  533. line-height: 24px;
  534. font-weight: 500;
  535. }
  536. .details-content .tab-content {
  537. border: none;
  538. background-color: transparent;
  539. }
  540. /* home page footer (layout) */
  541. footer {
  542. border-top: 1px solid #eee;
  543. padding-top: 10px;
  544. padding-bottom: 20px;
  545. margin: 20px 0 0;
  546. position: relative;
  547. font-size: 11px;
  548. background-color: #f0f0f0;
  549. }
  550. footer .links {
  551. text-align: right;
  552. }
  553. footer .links li {
  554. display: inline;
  555. }
  556. footer .statistics {
  557. text-align: right;
  558. }
  559. footer .social {
  560. padding-top: 4px;
  561. overflow: hidden;
  562. }
  563. footer .social-button {
  564. padding-right: 8px;
  565. float: left;
  566. }
  567. /* scroll to top (layout) */
  568. .scroll-top {
  569. width: 36px;
  570. height: 36px;
  571. background: #338930;
  572. text-align: center;
  573. position: fixed;
  574. bottom: 10px;
  575. right: 10px;
  576. cursor: pointer;
  577. color: #fff;
  578. font-size: 30px;
  579. text-decoration: none;
  580. -webkit-border-radius: 5px;
  581. -moz-border-radius: 5px;
  582. border-radius: 5px;
  583. opacity: 0.5;
  584. }
  585. /* breadcrumbs (theme specific) */
  586. .breadcrumbs {
  587. margin: 0 0 20px 0;
  588. padding: 4px 0 0 8px;
  589. }
  590. /* listing details page breadcrumbs (theme specific) */
  591. .breadcrumb {
  592. margin-bottom: 4px;
  593. background-color: #f1f1f1;
  594. }
  595. .breadcrumb > li a.home {
  596. float: left;
  597. height: 16px;
  598. width: 16px;
  599. background: url(../images/sprite.png) 0 -254px no-repeat;
  600. text-indent: -999px;
  601. }
  602. .breadcrumb > li a.home:hover {
  603. background-position: 0 -270px;
  604. }
  605. .product .breadcrumb {
  606. margin-bottom: 24px;
  607. background-color: transparent;
  608. }
  609. /* REGISTER AND LOGIN MODAL BOXES */
  610. .form-modal {
  611. max-width: 280px;
  612. margin: 0 auto;
  613. }
  614. .form-modal input {
  615. margin-bottom: 16px;
  616. }
  617. /* recently viewed box override */
  618. .recently-viewed {
  619. margin: 25px 0 0;
  620. }
  621. .recently-viewed .headline {
  622. margin: 0 0 15px 0;
  623. }
  624. .pagination > li > a, .pagination > li > span {
  625. color: #115B8A;
  626. }
  627. .pagination > .active > a,
  628. .pagination > .active > a:focus,
  629. .pagination > .active > a:hover,
  630. .pagination > .active > span,
  631. .pagination > .active > span:focus,
  632. .pagination > .active > span:hover {
  633. background-color: #115B8A;
  634. border-color: #115B8A;
  635. }