Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 16.78 KB | None | 0 0
  1. body {
  2.     padding-top: 0px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
  3.    font-size:13px;
  4. }
  5.  
  6. h1, .h1 {
  7.     color: #4975B4;
  8.     font-size: 28px;
  9.     font-weight: 600;
  10. }
  11. h2, .h2 {
  12.     color: #f15f1d;
  13.     font-size: 14px;
  14.     font-weight: 600;
  15. }
  16.  
  17. .portfolio-item {
  18.     margin-bottom: 25px;
  19.     width: 100%;
  20. }
  21.  
  22. .catview.products .col-sm-3{
  23.     width: 20%;
  24. }
  25. .catview h1 {
  26.     clear: left;
  27.     float: left;
  28.     margin-bottom: 30px;
  29.     margin-top: 0px;
  30. }
  31. .catview p{
  32.     margin-bottom:40px;
  33.     clear: left;
  34. }
  35.  
  36. .pagenation{
  37.     margin-top:20px;   
  38.     margin-bottom:10px;
  39. }
  40.  
  41. .pages ul{
  42.     margin:15px 0 0 0;
  43.     padding:0px;
  44.     float:right;
  45. }
  46. .pages ul li{
  47.     margin:0px 4px 4px 0;
  48.     list-style: none;
  49.     padding:0px;
  50.     float: left;
  51. }
  52. .pages ul li a{
  53.     background: #f6f6f6;
  54.     border: 1px solid #dddddd;
  55.     display: block;
  56.     padding: 4px 8px;
  57. }
  58. .pages ul li a:hover{
  59.     background: #93beeb;
  60.     border: 1px solid #93beeb;
  61.     text-decoration: none;
  62.     color: #fff;
  63. }
  64.  
  65. .pageback{
  66.     background: #6fa8e4;
  67.     border-radius: 4px;
  68.     color: #fff;
  69.     padding: 10px 30px;
  70.     text-transform: uppercase;
  71.     position: relative;
  72.     top:0px;
  73.     z-index: 1;
  74.     float: right;
  75. }
  76. .pageback:hover{
  77.     background: #619cda;
  78.     color: #fff;
  79.     text-decoration: none;
  80. }
  81.  
  82.  
  83. /* Add a black background color to the top navigation */
  84. .topnav {
  85.   background-color: #4975b4;
  86.  
  87.   /* width: -webkit-fill-available; */
  88.   /* overflow: hidden */;
  89. }
  90.  
  91. /* Style the links inside the navigation bar */
  92. .topnav a {
  93.   float: left;
  94.   display: block;
  95.   color: #f2f2f2;
  96.   text-align: center;
  97.   padding: 14px 26px;
  98.   text-decoration: none;
  99.   font-size: 17px;
  100. }
  101.  
  102. /* Add an active class to highlight the current page */
  103. .active {
  104.   background-color: #4CAF50;
  105.   color: white;
  106. }
  107.  
  108. /* Hide the link that should open and close the topnav on small screens */
  109. .topnav .icon {
  110.   display: none;
  111. }
  112.  
  113. /* Dropdown container - needed to position the dropdown content */
  114. .dropdown {
  115.   float: left;
  116.   overflow: hidden;
  117.   position: static;
  118. }
  119.  
  120. /* Style the dropdown button to fit inside the topnav */
  121. .dropdown .dropbtn {
  122.   font-size: 17px;
  123.   border: none;
  124.   outline: none;
  125.   color: white;
  126.   padding: 14px 16px;
  127.   background-color: inherit;
  128.   font-family: inherit;
  129.   margin: 0;
  130. }
  131.  
  132. /* Style the dropdown content (hidden by default) */
  133. .dropdown-content {
  134.   display: none;
  135.   position: absolute;
  136.   background-color: #f9f9f9;
  137.   min-width: 160px;
  138.   box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  139.   z-index: 1;
  140. }
  141.  
  142. /* Style the links inside the dropdown */
  143. .dropdown-content a {
  144.   float: none;
  145.   color: black;
  146.   padding: 12px 16px;
  147.   text-decoration: none;
  148.   display: block;
  149.   text-align: left;
  150. }
  151.  
  152. /* Add a dark background on topnav links and the dropdown button on hover */
  153. .topnav a:hover, .dropdown:hover .dropbtn {
  154.   background-color: #75AEFF;
  155.   color: white;
  156. }
  157.  
  158. /* Add a grey background to dropdown links on hover */
  159. .dropdown-content a:hover {
  160.   background-color:#75AEFF;
  161.   color: black;
  162. }
  163.  
  164. /* Show the dropdown menu when the user moves the mouse over the dropdown button */
  165. .dropdown:hover .dropdown-content {
  166.   display: block;
  167. }
  168.  
  169.  
  170. /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  171. @media screen and (max-width: 600px) {
  172.   .topnav a:not(:first-child), .dropdown .dropbtn {
  173.     display: none;
  174.   }
  175.   .topnav a.icon {
  176.     float: right;
  177.     display: block;
  178.   }
  179. }
  180.  
  181. @media only screen and (min-width: 1024px) {
  182.  
  183. /* Add your Desktop Styles here */
  184.  
  185. .mobielmenu {
  186.  
  187. display: none !important;
  188.  
  189. }
  190.  
  191. }
  192.  
  193. /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  194. @media screen and (max-width: 600px) {
  195.   .topnav.responsive {position: relative;}
  196.   .topnav.responsive a.icon {
  197.     position: absolute;
  198.     right: 0;
  199.     top: 0;
  200.   }
  201.   .topnav.responsive a {
  202.     float: none;
  203.     display: block;
  204.     text-align: left;
  205.   }
  206.   .topnav.responsive .dropdown {float: none;}
  207.   .topnav.responsive .dropdown-content {position: relative;}
  208.   .topnav.responsive .dropdown .dropbtn {
  209.     display: block;
  210.     width: 100%;
  211.     text-align: left;
  212.   }
  213. }
  214.  
  215. .products .col-sm-3.col-xs-6{
  216.     padding-left: 5px;
  217.     padding-right: 5px;
  218.     margin-bottom:10px;
  219. }
  220. .products .col-sm-3.col-xs-6 h2 {
  221.     background: none repeat scroll 0 0 #93beeb;
  222.     border: 0 none;
  223.     color: #fff;
  224.     font-size: 14px;
  225.     font-weight: 600;
  226.     margin: 0;
  227.     padding: 7px 0;
  228.     text-align: center;
  229. }
  230. .products .col-sm-3 div{
  231.     display: block;
  232.     border: 1px solid #e2e2e2;
  233. }
  234. .products .col-sm-3 div:hover{
  235.     border-color: #bcbcbc;
  236. }
  237. .products .col-sm-3 div p {
  238.     height: 106px;
  239.     margin-bottom: 0;
  240.     overflow: hidden;
  241.     padding: 10px 17px 0;
  242.     text-align: left;
  243. }
  244. .products .col-md-3 {
  245.     padding-left: 5px;
  246.     padding-right: 5px;
  247. }
  248. .products .col-sm-3 img{
  249.     margin-bottom:10px;
  250.     margin-top:10px;
  251. }
  252. .products .col-md-9{
  253.     padding:0px;
  254. }
  255. .products a.button {
  256.     background: #ee5f1d url(/img/arrow-right.png) no-repeat 125px center;
  257.     border-radius: 3px;
  258.     color: #fff;
  259.     display: block;
  260.     margin: 15px;
  261.     padding: 15px 10px 15px 10px;
  262.     width: 85%;
  263. }
  264. .products .col-md-9 a.button:hover {
  265.     text-decoration: underline;
  266.     background-color: #f26727;
  267. }
  268. .products .col-sm-3 .prices{
  269.     background: #F2F2F2;
  270.     border:0px;
  271.     padding:10px 20px 10px 20px;
  272. }
  273. .products .col-sm-3 .prices .adviesprijs{
  274.     color: #6d6d6d;
  275.     font-weight:600;
  276.     font-size:14px;
  277.     background-image: url(/img/streep.png);
  278.     background-repeat: no-repeat;
  279.     padding-right:3px;
  280. }
  281. .products .col-sm-3 .prices .adviesprijsleeg{
  282.     color: #6d6d6d;
  283.     font-weight:600;
  284.     font-size:14px;
  285. }
  286. .products .col-sm-3 .prices .verkoopprijs{
  287.     color: #EE5F1D;
  288.     font-weight:600;
  289.     font-size:18px;
  290. }
  291.  
  292. .col-md-12 {
  293.     clear: left;
  294. }
  295.  
  296. .col-md-12 h1 {
  297.     color: #4975B4;
  298.     font-size: 28px;
  299.     font-weight: 600;
  300.     margin-top:-5px;
  301. }
  302.  
  303. .col-md-12.banner{
  304.     padding:0px;
  305.     clear: left;
  306. }
  307. .banner .thumbnail{
  308.     border:0px;
  309.     padding:0px;
  310. }
  311.  
  312. .minithumbs {
  313.     display: block;
  314.     height: 200px;
  315.     overflow: hidden;
  316. }
  317.  
  318. .container .lead {
  319.     color: #4975B4;
  320.     font-size: 18px;
  321.     font-weight: bold;
  322.     margin:0px;
  323.     padding: 10px 15px;
  324.     border-top:1px solid #e2e2e2;
  325.     border-right:1px solid #e2e2e2;
  326.     border-left:1px solid #e2e2e2;
  327.     background: #fff;
  328. }
  329.  
  330. .col-md-5.logo{
  331.     padding:0px;
  332.         padding: 19px;
  333. }
  334. .logo h1 {
  335.     color: #5da8ec;
  336.     float: left;
  337. }
  338. .logo p {
  339.     border-left: 1px solid #cdcdcd;
  340.     color: #cdcdcd;
  341.     float: left;
  342.     font-size: 14px;
  343.     margin-left: 8px;
  344.     margin-top: 28px;
  345.     padding-left: 8px;
  346. }
  347. .col-md-5.logo div{
  348.     display:block;
  349.     position: relative;
  350.     top:25px;
  351. }
  352.  
  353. .Customerservice{
  354.     height:85px;
  355.     background: #f2f2f2;
  356. }
  357.  
  358. .navbar.navbar-inverse{
  359.     margin:0px;
  360.     height:85px;
  361.     border:0px;
  362. }
  363. .container .navbar-nav {
  364.     float: right;
  365.     position: relative;
  366.     top:30px;
  367.     z-index: 1;
  368. }
  369. .container .navbar-nav li a{
  370.     color: #8d8d8d;
  371.     text-transform: uppercase;
  372.     font-size:14px;
  373. }
  374. .container .navbar-nav li a:hover, .container .navbar-nav li:hover a{
  375.     color: #000;
  376. }
  377. .container .navbar-nav > li > a{
  378.     padding: 0px 30px 0px 30px;
  379.     border-right:2px solid #f2f2f2;
  380. }
  381. .container .navbar-nav > li > a.active{
  382.     color: #EE5F1D;
  383.     font-weight:600;
  384. }
  385. .container .navbar-nav > li.no-border > a{
  386.     border-right:0px;
  387.     padding-right:0px;
  388. }
  389.  
  390. .container .list-group-item{
  391.     background: #f8f8f8;
  392.     color: #797979;
  393.     padding: 5px 0 5px 40px;
  394.     background: #f8f8f8 url(/img/orange-arrow.png) no-repeat 15px center;
  395. }
  396. .container .list-group-item.last{
  397.     background: #fff;
  398.     font-weight:600;
  399.     padding-left:20px;
  400.     background: #fff url(/img/arrow-down.png) no-repeat 140px 22px;
  401. }
  402. .container .list-group-item.last:hover{
  403.     text-decoration: underline;
  404. }
  405. .container .list-group-item.active, .container .list-group-item.active:hover, .container .list-group-item.active:focus{
  406.     background-color: #f8f8f8;
  407.     border-color: #e2e2e2;
  408.     color: #797979;
  409.     z-index: 2;
  410. }
  411. .container .list-group-item:first-child{
  412.     border-radius:0px;
  413. }
  414.  
  415. .Customerservice .col-md-3 {
  416.     padding-left: 25px;
  417.     padding-right: 0;
  418.     position: relative;
  419.     top: 25px;
  420. }
  421. .Customerservice span {
  422.     float: left;
  423.     padding-right: 15px;
  424. }
  425. .Customerservice p {
  426.     color: #858585;
  427.     float: left;
  428.     font-style: italic;
  429.     line-height: 30px;
  430. }
  431.  
  432. .Productimages{
  433.     margin-left:-15px;
  434.     clear: left;
  435. }
  436. .Productimages a{
  437.     border:1px solid #e2e2e2;
  438.     display: block;
  439. }
  440.  
  441. .Thumbnails {
  442.     float: left;
  443.     margin-left: -15px;
  444.     margin-top: 10px;
  445.     width: 105%;
  446. }
  447.  
  448. .Thumbnails a {
  449.     float: left;
  450.     height: auto;
  451.     margin-right: 10px;
  452.     width: 31.4%;
  453. }
  454. .Thumbnails .detailimage{
  455.     border:1px solid #e2e2e2;
  456.     display: block;
  457. }
  458. .Thumbnails .detailimage:hover{
  459.     border:1px solid #bcbcbc;
  460. }
  461.  
  462. .productinfo{
  463.     background: url(/img/productbg.jpg) no-repeat left bottom;
  464.     border: 1px solid #e2e2e2;
  465.     padding-bottom:0px;
  466.     border-bottom:0px;
  467.     height: auto;
  468. }
  469. .productinfo .description{
  470.     margin-top:15px;
  471.     float: left;
  472. }
  473. .description > p {
  474.     margin: 0 0 20px;
  475. }
  476. .productinfo .Price, .productinfo .Store{
  477.     clear: left;
  478.     float: left;
  479.     margin-top:20px;
  480. }
  481. .Store b, .Store a{
  482.     color: #fff;
  483.     text-decoration: none;
  484. }
  485.  
  486. .productinfo .Price{
  487.     height:57px;
  488.     padding-top:5px;
  489.     width: 100%;
  490. }
  491. .productinfo .Price > span{
  492.     padding-left:45px;
  493.     font-size:20px;
  494.     font-weight:bold;
  495.     color: #3d3d3d;
  496. }
  497. .productinfo .Price a{
  498.     background: #4975B4;
  499.     border-radius: 4px;
  500.     color: #fff;
  501.     float: right;
  502.     margin-left: 0;
  503.     margin-top: -9px;
  504.     padding: 15px;
  505.     text-transform: uppercase;
  506. }
  507. .productinfo .Price a:hover{
  508.     background: #E35717;
  509.     text-decoration: none;
  510. }
  511.  
  512. .brand {
  513.     margin:10px 0 0 0;
  514.     padding:0px;
  515.     float: left;
  516. }
  517. .brand > span{
  518.     float: left;
  519.     width: 100px;
  520. }
  521. .brand li{
  522.     list-style: none;
  523.     float: left;
  524.     margin-left:5px;
  525.     margin-right:5px;
  526. }
  527.  
  528. .sizes {
  529.     clear: left;
  530.     float: left;
  531.     margin-bottom:10px;
  532. }
  533. .sizes ul{
  534.     margin:0px;
  535.     padding:0px;
  536. }
  537. .sizes ul li{
  538.     list-style: none;
  539. }
  540.  
  541. .Breadcrumb{
  542.     padding-top:10px;
  543. }
  544. .Breadcrumb ul{
  545.     margin:0px;
  546.     padding:0px;
  547. }
  548. .Breadcrumb ul li {
  549.     float: left;
  550.     list-style: outside none none;
  551.     padding-right: 10px;
  552. }
  553. .Breadcrumb ul li a{
  554.     color: #666;
  555. }
  556.  
  557. .Search {
  558.     margin: 0 auto;
  559.     position: relative;
  560.     width: 700px;
  561.     z-index: 22;
  562. }
  563. .Search input {
  564.     border: 0px;
  565.     border-radius: 6px 0 0 6px;
  566.     padding: 15px;
  567.     width: 75%;
  568.     font-size:14px;
  569. }
  570. .Search input.tfbutton {
  571.     width: 25%;
  572.     border-radius: 0 6px 6px 0;
  573.     background: #4975B4;
  574.     color: #fff;
  575.     font-size:14px;
  576.     font-weight:600;
  577. }
  578. .Search input.tfbutton:hover{
  579.     background: #e35717;
  580. }
  581.  
  582. .Bannercontent{
  583.     position: absolute;
  584.     width: 100%;
  585.     z-index: 0;
  586. }
  587. .Bannertext {
  588.     margin: 0 auto;
  589.     position: relative;
  590.     width: auto;
  591.     z-index: 22;
  592.     padding-top:155px;
  593. }
  594. .Bannertext > p {
  595.     color: #F2F2F2;
  596.     font-size: 38px;
  597.     font-weight: 600;
  598.     margin: 0;
  599.     text-shadow: 2px 2px #000;
  600.     position: relative;
  601.     z-index:22;
  602.     text-align:center;
  603. }
  604. .Bannertext > p.small{
  605.     color: #F2F2F2;
  606.     font-size: 18px;
  607.     font-weight: normal;
  608.     padding: 0px 0 25px;
  609.     position: relative;
  610.     text-align: center;
  611.     z-index: 22;
  612.     background: none;
  613. }
  614. .thumbnail > img{
  615.  
  616. }
  617.  
  618. .advertentie {
  619.     background: #f5f5f5;
  620.     border: 1px solid #dddddd;
  621.     border-radius: 3px;
  622.     padding: 12px;
  623.     margin-bottom:20px;
  624. }
  625. .advertentie img{
  626.     margin: 0 auto;
  627.     padding: 0 auto;
  628.     display:block; 
  629. }
  630.  
  631. .socialmedia a{
  632.     margin: 15px 15px 25px 0;
  633. }
  634. .socialmedia a:hover{
  635.     opacity: 0.8;
  636. }
  637.  
  638. .filter{
  639.     margin:0 0 20px 20px;
  640. }
  641.  
  642. .filter select{
  643.     background: #f5f5f5;
  644.     border: 1px solid #dddddd;
  645.     height:25px;
  646.     width:150px;
  647. }
  648.  
  649. #fullAd{
  650.     height:auto;
  651.     overflow:hidden;
  652.     clear:both;
  653.     margin:0;
  654. }
  655.     #fullAd .fAd{
  656.         text-align:center;
  657.         margin:15px 0 0 0;
  658.     }
  659.  
  660. footer {
  661.     background: #f2f2f2;
  662.     padding: 30px 0;
  663.     margin-top:30px;
  664.     border-top: 1px solid #e2e2e2;
  665. }
  666. footer .container{
  667.     padding:0px;
  668. }
  669. footer .col-md-3{
  670.     padding-left:5px;
  671.     padding-right:5px;
  672. }
  673. footer .col-md-5 p{
  674.     font-style: italic;
  675.     line-height: 21px;
  676.     padding-right: 30px;
  677.     padding-top: 4px;
  678.     text-align: left;
  679. }
  680. footer h3{
  681.     color: #6fa8e4;
  682.     padding-bottom:15px;
  683.     font-weight:600;
  684. }
  685.  
  686. footer ul{
  687.     margin:0px;
  688.     padding:0px;
  689. }
  690. footer ul li{
  691.     list-style:none;
  692.     line-height:26px;
  693. }
  694. footer ul li a{
  695.     color: #797979;
  696.     text-decoration: underline;
  697. }
  698. footer ul li a:hover{
  699.     color: #000;
  700. }
  701. footer .copy{
  702.     text-align: center;
  703.     color: #797979;
  704.     margin-top:30px;
  705. }
  706. footer .copy a{
  707.     color: #797979;
  708.     text-decoration: none;
  709. }
  710.  
  711. /*------------------------- Contact --------------------------*/
  712.  
  713. #contact form{
  714.     text-align: left;
  715.     margin:15px 0 0 0;
  716. }
  717. #contact label{
  718.     display:block;
  719.     font-size: 14px;
  720.     font-weight:normal;
  721. }
  722. #contact input{
  723.     width: 285px;
  724.     height: 25px;
  725.     margin:0 0 15px 0;
  726.     border: 2px solid #ddd;
  727.     border-radius:4px; 
  728. }
  729. #contact option{
  730.     width: 270px;
  731.     height: 25px;
  732. }
  733. #contact textarea{
  734.     width:95%;
  735.     height:200px;
  736.     border: 2px solid #ddd;
  737.     border-radius:4px;
  738. }  
  739. #contact #captcha{
  740.     float:left;
  741.     width:60px;
  742.     margin:10px 0 10px 0;
  743. }  
  744. #contact #antw{
  745.     width:25px;
  746.     float:left;
  747.     margin:10px 0 10px 0;
  748. }  
  749. #contact .submit{
  750.      display:block;
  751.      height: 45px;
  752.      background: #E35717;
  753.      border: 1px solid #E35717;
  754.      color: #ffffff;
  755.      font-weight:bold;
  756.      padding: 5px;
  757.      margin:10px 0 30px 0;
  758.      cursor:pointer;
  759.      font-family:Tahoma;
  760.      font-size: 14px;
  761. }
  762. #contact .fout{
  763.     color:#cc0000;
  764.     margin:10px 0 0 0;
  765.     font-size: 12px;
  766. }
  767.  
  768. /* Smartphone */
  769.  
  770. @media (max-width: 767px) {
  771.    
  772. .logo h1 {
  773.     font-size:17px;
  774.     margin-top:27px;
  775. }
  776. .logo p {
  777.     font-size:13px;
  778. }
  779.  
  780. .menuzijkant {
  781.     visibility: hidden;
  782.     clear: both;
  783.     float: left;
  784.     margin: 10px auto 5px 20px;
  785.     width: 28%;
  786.     display: none;
  787. }
  788.  
  789. .productinfo{
  790.     border: 1px solid #e2e2e2;
  791.     clear: left;
  792.     float: left;
  793.     margin-top: 10px;
  794.     width: 100%;
  795. }
  796.    
  797. .nophone{
  798.     display:none;
  799. }
  800.    
  801. .advertentie{
  802.     display:none;      
  803. }
  804.  
  805. #fullAd{
  806.     display:none;      
  807. }
  808.    
  809. .Customerservice{
  810.     height:60px;
  811. }
  812. .Customerservice .col-md-3 {
  813.     display:none;
  814. }
  815.  
  816. .products .col-sm-3.col-xs-6 h2{
  817.     font-size:12px;
  818. }
  819.  
  820. .navbar-toggle{
  821.     margin: 0;
  822.     position: relative;
  823.     top: 70px;
  824.     z-index: 1;
  825. }
  826.  
  827. .col-md-5.logo{
  828.     height:75px;
  829. }
  830. .col-md-5 img{
  831.     max-width: 100%;
  832. }
  833.  
  834. .navbar-collapse{
  835.     border:0px;
  836. }
  837. .container .navbar-nav{
  838.     float: left;
  839.     border:0px;
  840.     width: 100%;
  841.     margin:0px;
  842. }
  843. .navbar-collapse{
  844.     padding:0px;
  845. }
  846. .container .navbar-nav > li{
  847.     float: left;
  848.     margin-right:10px;
  849. }
  850. .container .navbar-nav > li > a{
  851.     border:0px;
  852.     padding:0px;
  853. }
  854. .catview.products .col-sm-3{
  855.     width: 50%;
  856. }
  857. .catview h1{
  858.     margin: 20px 0 20px 0;
  859. }
  860.  
  861. .Bannertext{
  862.     display:none;
  863. }
  864. .Search{
  865.     width: 90%;
  866.     margin-top: 20px;
  867. }
  868.  
  869.  
  870. .Productimages{
  871.     margin: 15px 0 0 0;
  872. }
  873. .detailimages{
  874.     border: 1px solid #e2e2e2;
  875.     clear: left;
  876.     float: left;
  877.     margin-top: 10px;
  878.     width: 100%;   
  879. }
  880. .detailimages .Thumbnails .detailimage, .detailimages .Thumbnails .detailimage:hover{
  881.     border: 0px;   
  882. }
  883.  
  884. .productinfo .Price a{
  885.     padding: 12px 5px;
  886. }
  887. .productinfo .Price > span{
  888.     font-size: 17px;
  889.     padding-left: 36px;
  890. }
  891. .productinfo .Price{
  892.     height:49px;
  893. }
  894. .productinfo .Price, .productinfo .Store{
  895.     margin-top:27px;
  896. }
  897.  
  898. .Thumbnails{
  899.     display: inline-flex;  
  900. }
  901. .Thumbnails a{
  902.     width: 31.4%;
  903.     margin:0 5px 8px 5px;
  904. }
  905.  
  906. }
  907.  
  908.  
  909. /* Mini Smartphone */
  910.  
  911. @media (max-width: 400px) {
  912.    
  913. .catview.products .col-sm-3{
  914.     width: 100%;   
  915. }
  916. .pageback{
  917.     display:none
  918. }
  919.  
  920. .Bannertext{
  921. display:none;
  922. }
  923. .Search{
  924. width: 90%;
  925. margin-top: 3px;
  926. }
  927.  
  928.  
  929. }
  930.  
  931.  
  932. /* iPad mini */
  933.  
  934. @media (min-width: 768px) and (max-width: 1060px) {
  935.    
  936. .col-md-5.logo{
  937.     float: left;
  938.     padding: 19px;
  939. }
  940. .container .navbar-nav > li > a{
  941.     padding: 0 20px;
  942. }
  943. .Customerservice .col-md-3{
  944.     padding-left:15px;
  945. }
  946. .Customerservice span {
  947.     padding-left: 15px;
  948.     padding-right: 5px;
  949. }
  950. .catview.products .col-sm-3{
  951.     width: 50%;
  952. }
  953.  
  954. .Bannertext{
  955. display:none;
  956. }
  957. .Search{
  958. width: 90%;
  959. margin-top: 20px;
  960. }
  961.  
  962.  
  963. .Thumbnails a{
  964.     width: 30%;
  965. }
  966.  
  967. .productinfo .Price a{
  968.     padding:10px;
  969.     margin-top:-3px;
  970. }
  971. .productinfo .Price > span{
  972.     font-size:17px;
  973. }
  974.  
  975. }
  976.  
  977. /* Laptop */
  978.  
  979. @media (min-width: 1024px) and (max-width: 1550px) {
  980.    
  981. .Bannertext{
  982.     padding-top:60px;
  983. }
  984. .Thumbnails a{
  985.     width: 31.4%;
  986. }
  987.  
  988. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement