Advertisement
Guest User

site

a guest
Dec 14th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 6.95 KB | None | 0 0
  1. html,
  2. body {
  3.    margin:0;
  4.    padding:0;
  5.    height:100%;
  6.    background: url('../img/bg_fixed.png') no-repeat center center fixed;
  7.   -webkit-background-size: cover;
  8.   -moz-background-size: cover;
  9.   background-size: cover;
  10.   -o-background-size: cover;
  11. }
  12.  
  13. @font-face {
  14.      font-family: Driver_Gothic_Pro_Regular;
  15.      src: url('../fonts/infestation/Driver_Gothic_Pro_Regular.otf');
  16. }
  17.  
  18. @font-face {
  19.      font-family: Reise_Reise;
  20.      src: url('../fonts/infestation/Reise_Reise.ttf');
  21. }
  22.  
  23. @font-face {
  24.      font-family: Bebas_Neue_Cyrillic;
  25.      src: url('../fonts/infestation/Bebas_Neue_Cyrillic.ttf');
  26. }
  27.  
  28.  
  29.  
  30.  
  31.  
  32. table {
  33.   border: 1px solid #ccc;
  34.   border-collapse: collapse;
  35.   margin: 0;
  36.   padding: 0;
  37.   width: 100%;
  38.   table-layout: fixed;
  39. }
  40. table caption {
  41.   font-size: 1.5em;
  42.   margin: .5em 0 .75em;
  43. }
  44. table tr {
  45.  
  46.   border: 1px solid #ddd;
  47.   padding: .35em;
  48. }
  49. table th,
  50. table td {
  51.   padding: .625em;
  52.   text-align: center;
  53. }
  54. table th {
  55.   font-size: .85em;
  56.   letter-spacing: .1em;
  57.   text-transform: uppercase;
  58. }
  59. @media screen and (max-width: 600px) {
  60.   table {
  61.     border: 0;
  62.   }
  63.   table caption {
  64.     font-size: 1.3em;
  65.   }
  66.   table thead {
  67.     border: none;
  68.     clip: rect(0 0 0 0);
  69.     height: 1px;
  70.     margin: -1px;
  71.     overflow: hidden;
  72.     padding: 0;
  73.     position: absolute;
  74.     width: 1px;
  75.   }
  76.   table tr {
  77.     border-bottom: 3px solid #ddd;
  78.     display: block;
  79.     margin-bottom: .625em;
  80.   }
  81.   table td {
  82.     border-bottom: 1px solid #ddd;
  83.     display: block;
  84.     font-size: .8em;
  85.     text-align: right;
  86.   }
  87.   table td:before {
  88.     /*
  89.     * aria-label has no advantage, it won't be read inside a table
  90.     content: attr(aria-label);
  91.     */
  92.     content: attr(data-label);
  93.     float: left;
  94.     font-weight: bold;
  95.     text-transform: uppercase;
  96.   }
  97.   table td:last-child {
  98.     border-bottom: 0;
  99.   }
  100. }
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109. body{
  110.     font-family: 'Ubuntu', sans-serif;
  111. }
  112.  
  113. .blue{
  114. color:#5CC8E8;
  115. }
  116.  
  117. h1,h2,h3,h4,h5{
  118.     font-family: 'Ubuntu', sans-serif; 
  119. }
  120.  
  121. .caption h2 {  
  122. font-family: Reise_Reise;
  123. font-size: 30px;
  124. color:#5CC8E8;
  125. }
  126.  
  127. .caption h3 {
  128. margin: 0 0 30px;
  129. color:#fff;
  130. }
  131.  
  132. .caption h4 {
  133. font-size: 30px;   
  134. font-family:Bebas_Neue_Cyrillic;
  135. color:#fff;
  136. }
  137.  
  138. .caption a:hover{
  139.     text-decoration:none;
  140.     color:#fff;
  141. }
  142.  
  143.  
  144. .wrapper{
  145. min-height:100%;
  146. position:relative;
  147. }
  148.  
  149. .body{
  150.        
  151.     padding-bottom:200px !important;   /* Height of the footer */
  152. }
  153.  
  154. .padding{
  155.     padding:0 0.5em;
  156. }
  157.  
  158. .nomargin{
  159. margin:0;
  160. }
  161.  
  162. .topheader{
  163.        
  164.     margin-bottom:20px;
  165.     padding:5px 0;
  166. }
  167.  
  168. .header{
  169.     text-align:center;
  170.    
  171.     padding:20px 0;
  172. }
  173.     .header h1{
  174.         margin:0;
  175.     }
  176.  
  177. .logo a{
  178.     color:#000;
  179. }
  180. .logo a:hover{
  181.     text-decoration:none;
  182.     color:#000;
  183. }
  184.    
  185. .thumbnail{
  186.     position:relative;
  187.     padding:0;
  188.     background-color:#fff;
  189.     background: rgb(255, 255, 255);
  190.     background: rgba(255, 255, 255, .1);   
  191. }
  192.  
  193. .bg2{
  194.     background-color:#000;
  195.     background: rgb(25, 25, 25);
  196.     background: rgba(25, 25, 25, .5);  
  197.     padding-top: 15px;
  198. }
  199.  
  200. .thumbnail .btn {
  201. bottom: 0;
  202. left: 0;
  203. width: 100%;
  204. border-radius: 0;
  205. }
  206.  
  207. .item {
  208.   position: relative;  
  209.   overflow: hidden;
  210.   width: 100%;
  211. }
  212. .item img {
  213.   max-width: 100%;  
  214.   -moz-transition: all 0.3s;
  215.   -webkit-transition: all 0.3s;
  216.   transition: all 0.3s;
  217. }
  218. .item:hover img {
  219.   -moz-transform: scale(1.1);
  220.   -webkit-transform: scale(1.1);
  221.   transform: scale(1.1);
  222. }
  223.  
  224.  
  225.  
  226. .maior{
  227. color:#ff0000;
  228. }
  229.  
  230. .medio{
  231. color:#5CC8E8;
  232. }
  233.  
  234. .menor{
  235. color:#66ff33;
  236. }
  237.  
  238.  
  239.  
  240. .map{
  241.     width:100%;
  242.     height:200px;
  243.     position:relative;
  244.     margin-top:2em;
  245. }
  246. .map .btn{
  247.     position:absolute;
  248.     top:20px;
  249.     right:20px;
  250.     z-index:99;
  251. }
  252. #map{
  253.     width:100%;
  254.     height:100%;
  255. }
  256. .footer{
  257.     height:170px;   /*Height of the footer */
  258.     width: 100%;
  259.     margin-top: 1em;
  260.     position:absolute;
  261.     bottom:0;
  262. }
  263.     .footer .container{
  264.         border-top: 1px solid #ccc;
  265.         padding: 15px;
  266.     }
  267.     .footer a{
  268.         color:#fff;
  269.     }
  270.  
  271.     .footer small{ color:#000; }
  272.  
  273.     .footer p{
  274.         margin:0;
  275.         color:#fff;
  276.     }
  277.  
  278. /*
  279. .wrapper{
  280.     background:#f3f3f3;
  281. }*/
  282.  
  283.  
  284.  
  285. .btn-danger{
  286.     font-family: Bebas_Neue_Cyrillic;
  287.     font-size: 25px;
  288.     color:#000;
  289.     background-color:#D3D3D3;
  290.     border-color:#000;
  291. }
  292. .btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{
  293.     color:#000;
  294.     background-color:#fff;
  295.     border-color:#000;
  296. }
  297.  
  298.  
  299. .navbar-default{
  300.     margin-top:1.5em;
  301.     background-color: #AB0101;
  302.     border:none;
  303.     margin-bottom: 0;
  304. }
  305. .navbar-default .navbar-nav>li>a{
  306.     color:#fff;
  307.     font-family: Driver_Gothic_Pro_Regular;
  308.     font-size:20px;
  309.  
  310. }
  311.  
  312. .navbar-default .navbar-nav>li>a:hover{
  313. color: #fff;
  314. background-color: #8c0000;
  315. }
  316.  
  317. .navbar-collapse.in {
  318.     overflow: hidden;
  319.     max-height: none !important;
  320.     height: auto !important;   
  321. }
  322.  
  323. .navbar-brand{
  324.     padding:14px 15px;
  325. }
  326.  
  327. .navbar-default .navbar-nav .dropdown.open a:focus {
  328.     color:#fff;
  329.     background-color: #8c0000;
  330. }
  331.  
  332. .dropdown-menu{
  333.   background-color: #AB0101;
  334.   color:#fff;
  335.   text-align:left;
  336. }
  337.  
  338. .dropdown-menu >li>a{
  339.   color:#fff;
  340. }
  341.  
  342. .dropdown-menu >li>a:hover{
  343.   background-color: #8c0000;
  344.   color:#fff;
  345. }
  346.  
  347. .searchbar{
  348.     padding:2em 0;
  349. }
  350.  
  351. .category{
  352.     margin:1em 0;
  353. }
  354.  
  355. .border {
  356. border: 1px solid #e0dfdf;
  357. height: 1px;
  358. padding-bottom: 2px;
  359. border-width: 0 0 1px 0;
  360. }
  361.  
  362. .borderstrong {
  363. border-width: 0 0 4px 0 !important;
  364. }
  365.  
  366. .quantity{
  367.     margin-bottom:2em;
  368. }
  369.  
  370. .add{
  371.  
  372. }
  373.  
  374. .product_photo{
  375.     margin:5px 0;
  376. }
  377.  
  378. .tab-content{
  379.     border-left:1px solid #ddd;
  380.     border-right:1px solid #ddd;
  381.     border-bottom:1px solid #ddd;
  382.     padding:2em;
  383. }
  384.  
  385. .bg{
  386.     background-color:#000;
  387.     background: rgb(25, 25, 25);
  388.     background: rgba(25, 25, 25, .5);
  389.     color:#fff;
  390.     padding:10px;
  391.     border:1px solid #000;
  392.     border-radius:0px;
  393. }
  394.  
  395.  
  396.  
  397. .margingB{margin-bottom:10px;}
  398.  
  399.  
  400.  
  401. .label{
  402. display:inline-block;
  403. }
  404.  
  405. .label-lg{
  406. padding: 2em 2em;
  407. font-size:100%;
  408. }
  409.  
  410. .label-circle {
  411. border-radius: 50%;
  412. }
  413. .label-block{
  414. display: inline-block;
  415. }
  416.  
  417. .carousel{
  418.     margin-bottom:20px;
  419. }
  420.  
  421. .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .fa-chevron-left, .carousel-control .fa-chevron-right{
  422. position: absolute;
  423. top: 50%;
  424. z-index: 5;
  425. display: inline-block;
  426. }
  427.  
  428. .carousel-control .icon-prev, .carousel-control .fa-chevron-left {
  429. left: 50%;
  430. }
  431.  
  432. .table>tbody>tr>td, .table>tfoot>tr>td{
  433.     vertical-align: middle;
  434. }
  435.  
  436. @media screen and (max-width: 600px) {
  437.     table#cart tbody td .form-control{
  438.         width:20%;
  439.         display: inline !important;
  440.     }
  441.     .actions .btn{
  442.         width:40%;
  443.         margin:1.5em 0;
  444.     }
  445.    
  446.     .actions .btn-info{
  447.         float:left;
  448.     }
  449.     .actions .btn-danger{
  450.         float:right;
  451.     }
  452.    
  453.     table#cart thead { display: none; }
  454.     table#cart tbody td { display: block; padding: .6rem; min-width:320px;}
  455.     table#cart tbody tr td:first-child { background: #333; color: #fff; }
  456.     table#cart tbody td:before {
  457.         content: attr(data-th); font-weight: bold;
  458.         display: inline-block; width: 8rem;
  459.     }
  460.    
  461.    
  462.    
  463.     table#cart tfoot td{display:block; }
  464.     table#cart tfoot td .btn{display:block;}
  465.    
  466. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement