add public design files
37
design/carheart/css/acord/css/style.css
Normal file
@@ -0,0 +1,37 @@
|
||||
/*Âåðòèêàëüíîå ìåíþ*/
|
||||
ul.vertmenu {
|
||||
padding:0;
|
||||
margin:10px 15px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
ul.vertmenu li {
|
||||
padding:2px 0;
|
||||
margin:0;
|
||||
list-style: none;
|
||||
BACKGROUND-IMAGE: url(../img/leftmenublock.jpg);
|
||||
BACKGROUND-REPEAT: repeat-x;
|
||||
BACKGROUND-POSITION: left top;
|
||||
}
|
||||
ul.vertmenu li ul {
|
||||
padding:0;
|
||||
margin:0;
|
||||
text-indent: 5px;
|
||||
display:none;
|
||||
text-transform: none;
|
||||
}
|
||||
ul.vertmenu li ul li {
|
||||
BACKGROUND-IMAGE: url(../img/leftmenublockinside.jpg);
|
||||
BACKGROUND-REPEAT: repeat-x;
|
||||
BACKGROUND-POSITION: left top;
|
||||
}
|
||||
ul#myvertmenu a { /*Êîíå÷íîå âåðòèêàëüíîå ìåíþ*/
|
||||
padding-left: 8px;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul#myvertmenu a.collapsed {
|
||||
background:url('../img/collapsed.gif') left 6px no-repeat;
|
||||
}
|
||||
ul#myvertmenu a.expanded {
|
||||
background:url('../img/expanded.gif') left 6px no-repeat;
|
||||
}
|
||||
.none{display: none;}
|
||||
BIN
design/carheart/css/acord/images/collapsed.gif
Normal file
|
After Width: | Height: | Size: 49 B |
BIN
design/carheart/css/acord/images/expanded.gif
Normal file
|
After Width: | Height: | Size: 47 B |
BIN
design/carheart/css/acord/images/leftmenublock.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
design/carheart/css/acord/images/leftmenublockinside.jpg
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
96
design/carheart/css/acord/js/jquery.cookie.js
Normal file
@@ -0,0 +1,96 @@
|
||||
/**
|
||||
* Cookie plugin
|
||||
*
|
||||
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
|
||||
* Dual licensed under the MIT and GPL licenses:
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
* http://www.gnu.org/licenses/gpl.html
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Create a cookie with the given name and value and other optional parameters.
|
||||
*
|
||||
* @example $.cookie('the_cookie', 'the_value');
|
||||
* @desc Set the value of a cookie.
|
||||
* @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
|
||||
* @desc Create a cookie with all available options.
|
||||
* @example $.cookie('the_cookie', 'the_value');
|
||||
* @desc Create a session cookie.
|
||||
* @example $.cookie('the_cookie', null);
|
||||
* @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
|
||||
* used when the cookie was set.
|
||||
*
|
||||
* @param String name The name of the cookie.
|
||||
* @param String value The value of the cookie.
|
||||
* @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
|
||||
* @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
|
||||
* If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
|
||||
* If set to null or omitted, the cookie will be a session cookie and will not be retained
|
||||
* when the the browser exits.
|
||||
* @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
|
||||
* @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
|
||||
* @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
|
||||
* require a secure protocol (like HTTPS).
|
||||
* @type undefined
|
||||
*
|
||||
* @name $.cookie
|
||||
* @cat Plugins/Cookie
|
||||
* @author Klaus Hartl/klaus.hartl@stilbuero.de
|
||||
*/
|
||||
|
||||
/**
|
||||
* Get the value of a cookie with the given name.
|
||||
*
|
||||
* @example $.cookie('the_cookie');
|
||||
* @desc Get the value of a cookie.
|
||||
*
|
||||
* @param String name The name of the cookie.
|
||||
* @return The value of the cookie.
|
||||
* @type String
|
||||
*
|
||||
* @name $.cookie
|
||||
* @cat Plugins/Cookie
|
||||
* @author Klaus Hartl/klaus.hartl@stilbuero.de
|
||||
*/
|
||||
jQuery.cookie = function(name, value, options) {
|
||||
if (typeof value != 'undefined') { // name and value given, set cookie
|
||||
options = options || {};
|
||||
if (value === null) {
|
||||
value = '';
|
||||
options.expires = -1;
|
||||
}
|
||||
var expires = '';
|
||||
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
|
||||
var date;
|
||||
if (typeof options.expires == 'number') {
|
||||
date = new Date();
|
||||
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
|
||||
} else {
|
||||
date = options.expires;
|
||||
}
|
||||
expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
|
||||
}
|
||||
// CAUTION: Needed to parenthesize options.path and options.domain
|
||||
// in the following expressions, otherwise they evaluate to undefined
|
||||
// in the packed version for some reason...
|
||||
var path = options.path ? '; path=' + (options.path) : '';
|
||||
var domain = options.domain ? '; domain=' + (options.domain) : '';
|
||||
var secure = options.secure ? '; secure' : '';
|
||||
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
|
||||
} else { // only name given, get cookie
|
||||
var cookieValue = null;
|
||||
if (document.cookie && document.cookie != '') {
|
||||
var cookies = document.cookie.split(';');
|
||||
for (var i = 0; i < cookies.length; i++) {
|
||||
var cookie = jQuery.trim(cookies[i]);
|
||||
// Does this cookie string begin with the name we want?
|
||||
if (cookie.substring(0, name.length + 1) == (name + '=')) {
|
||||
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return cookieValue;
|
||||
}
|
||||
};
|
||||
11
design/carheart/css/acord/js/jquery.js
vendored
Normal file
49
design/carheart/css/acord/js/jquery.simplemenu.js
Normal file
@@ -0,0 +1,49 @@
|
||||
$(document).ready(function() {
|
||||
$('ul#myvertmenu ul').each(function(i) { //Ïðîâåðèòü âñå ïîäìåíþ
|
||||
if ($.cookie('submenuMark-' + i)) { //Åñëè èíôîðìàöèÿ î ïîäìåíþ ñîõðàíåíà â êóêàõ
|
||||
$(this).show().prev().removeClass('collapsed').addClass('expanded'); //Ïîêàçàòü èõ
|
||||
}
|
||||
else {
|
||||
$(this).hide().prev().removeClass('expanded').addClass('collapsed'); //Èíà÷å ñêðûòü
|
||||
}
|
||||
$(this).prev().addClass('collapsible').click(function() { //Ïðèñîåäèíèòü îáðàáîò÷èê ñîáûòèÿ
|
||||
var this_i = $('ul#myvertmenu ul').index($(this).next()); //Ïîëó÷èòü èíäåêñ ù¸ëêíóòîãî ïîäìåíþ
|
||||
if ($(this).next().css('display') == 'none') {
|
||||
|
||||
//Êîãäà îòêðûòî ïîäìåíþ, ñâåðíóòü îñòàëüíûå ïîäìåíþ
|
||||
$(this).parent('li').parent('ul').find('ul').each(function(j) {
|
||||
if (j != this_i) {
|
||||
$(this).slideUp(200, function () {
|
||||
$(this).prev().removeClass('expanded').addClass('collapsed');
|
||||
cookieDel($('ul#myvertmenu ul').index($(this)));
|
||||
});
|
||||
}
|
||||
});
|
||||
//Êîíåö áëîêà ñâîðà÷èâàíèÿ îñòàëüíûõ ïîäìåíþ
|
||||
|
||||
$(this).next().slideDown(200, function () { //Ïîêàçàòü ïîäìåíþ
|
||||
$(this).prev().removeClass('collapsed').addClass('expanded');
|
||||
cookieSet(this_i);
|
||||
});
|
||||
}
|
||||
else {
|
||||
$(this).next().slideUp(200, function () { //Ñïðÿòàòü ïîäìåíþ
|
||||
$(this).prev().removeClass('expanded').addClass('collapsed');
|
||||
cookieDel(this_i);
|
||||
$(this).find('ul').each(function() {
|
||||
$(this).hide(0, cookieDel($('ul#myvertmenu ul').index($(this)))).prev().removeClass('expanded').addClass('collapsed');
|
||||
});
|
||||
});
|
||||
}
|
||||
return false; //Íå ñëåäîâàòü ïî ññûëêå; true - ñëåäîâàòü
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
function cookieSet(index) {
|
||||
$.cookie('submenuMark-' + index, 'opened', {expires: null, path: '/'}); //Ïîñòàâèòü êóêó "ïîäìåíþ ðàñêðûòî"
|
||||
}
|
||||
|
||||
function cookieDel(index) {
|
||||
$.cookie('submenuMark-' + index, null, {expires: null, path: '/'}); //Óäàëèòü êóêó "ïîäìåíþ ðàñêðûòî"
|
||||
}
|
||||
28
design/carheart/css/ckeditor.css
Normal file
@@ -0,0 +1,28 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,cyrillic);
|
||||
@import url(https://fonts.googleapis.com/css?family=Russo+One&subset=latin,cyrillic);
|
||||
|
||||
body {background: #141618 !important;}
|
||||
|
||||
a {
|
||||
text-decoration: underline !important;
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
img {
|
||||
width: auto;
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
/* max-width: 480px !important;
|
||||
max-height: 480px !important;*/
|
||||
}
|
||||
|
||||
.mb {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.zooming2-title {
|
||||
text-align: center;
|
||||
margin-bottom: 5px;
|
||||
font-size: 18px;
|
||||
}
|
||||
60
design/carheart/css/desktop.css
Normal file
@@ -0,0 +1,60 @@
|
||||
.container { min-width: 970px; }
|
||||
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; }
|
||||
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; }
|
||||
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; }
|
||||
.col-sm-12, .col-md-12, .col-lg-12 { width: 100%; }
|
||||
.col-sm-11, .col-md-11, .col-lg-11 { width: 91.66666667%; }
|
||||
.col-sm-10, .col-md-10, .col-lg-10 { width: 83.33333333%; }
|
||||
.col-sm-9, .col-md-9, .col-lg-9 { width: 75%; }
|
||||
.col-sm-8, .col-md-8, .col-lg-8 { width: 66.66666667%; }
|
||||
.col-sm-7, .col-md-7, .col-lg-7 { width: 58.33333333%; }
|
||||
.col-sm-6, .col-md-6, .col-lg-6 { width: 50%; }
|
||||
.col-sm-5, .col-md-5, .col-lg-5 { width: 41.66666667%; }
|
||||
.col-sm-4, .col-md-4, .col-lg-4 { width: 33.33333333%; }
|
||||
.col-sm-3, .col-md-3, .col-lg-3 { width: 25%; }
|
||||
.col-sm-2, .col-md-2, .col-lg-2 { width: 16.66666667%; }
|
||||
.col-sm-1, .col-md-1, .col-lg-1 { width: 8.33333333%; }
|
||||
|
||||
.hidden-xs {display: block !important;}
|
||||
.collapse { display: block !important; visibility: visible !important; }
|
||||
.nav > li { float: left !important; }
|
||||
.nav > li > a { padding: 15px 10px; }
|
||||
.navbar-nav { float: left; }
|
||||
.navbar-header { float: left; }
|
||||
.navbar-right { float: right; }
|
||||
.navbar-toggle { display: none !important; }
|
||||
|
||||
.modal2.well {margin-bottom: 0;}
|
||||
|
||||
|
||||
@media (min-width:1200px) {
|
||||
.product-price { font-size: 145% !important; }
|
||||
.navbar-nav > li > a { padding-left: 26px !important; padding-right: 25px !important; }
|
||||
header .phone { font-size: 125% !important; }
|
||||
header .top-text1 { font-size: 160% !important; }
|
||||
header .top-text2 { line-height: 1.5em; }
|
||||
header .top-text3 { font-size: 150%; }
|
||||
}
|
||||
|
||||
@media (max-width:1199px) {
|
||||
.product-price { font-size: 115% !important; }
|
||||
.navbar-nav > li > a { padding-left: 12px !important; padding-right: 12px !important; }
|
||||
header .phone { font-size: 105% !important; }
|
||||
header .top-text1 { font-size: 130% !important; }
|
||||
header .top-text2 { line-height: 1.15em; }
|
||||
header .top-text3 { font-size: 120%; }
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.container-fluid>.navbar-header,
|
||||
.container>.navbar-collapse {
|
||||
margin-right: 0px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
.navbar { border-radius: 4px; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
design/carheart/css/fancy_img/blank.gif
Normal file
|
After Width: | Height: | Size: 43 B |
BIN
design/carheart/css/fancy_img/fancy_closebox.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
design/carheart/css/fancy_img/fancy_loading.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
design/carheart/css/fancy_img/fancy_nav_left.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
design/carheart/css/fancy_img/fancy_nav_right.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
design/carheart/css/fancy_img/fancy_shadow_e.png
Normal file
|
After Width: | Height: | Size: 107 B |
BIN
design/carheart/css/fancy_img/fancy_shadow_n.png
Normal file
|
After Width: | Height: | Size: 106 B |
BIN
design/carheart/css/fancy_img/fancy_shadow_ne.png
Normal file
|
After Width: | Height: | Size: 347 B |
BIN
design/carheart/css/fancy_img/fancy_shadow_nw.png
Normal file
|
After Width: | Height: | Size: 324 B |
BIN
design/carheart/css/fancy_img/fancy_shadow_s.png
Normal file
|
After Width: | Height: | Size: 111 B |
BIN
design/carheart/css/fancy_img/fancy_shadow_se.png
Normal file
|
After Width: | Height: | Size: 352 B |
BIN
design/carheart/css/fancy_img/fancy_shadow_sw.png
Normal file
|
After Width: | Height: | Size: 340 B |
BIN
design/carheart/css/fancy_img/fancy_shadow_w.png
Normal file
|
After Width: | Height: | Size: 103 B |
BIN
design/carheart/css/fancy_img/fancy_title_left.png
Normal file
|
After Width: | Height: | Size: 503 B |
BIN
design/carheart/css/fancy_img/fancy_title_main.png
Normal file
|
After Width: | Height: | Size: 96 B |
BIN
design/carheart/css/fancy_img/fancy_title_over.png
Normal file
|
After Width: | Height: | Size: 70 B |
BIN
design/carheart/css/fancy_img/fancy_title_right.png
Normal file
|
After Width: | Height: | Size: 506 B |
BIN
design/carheart/css/fancy_img/fancybox-x.png
Normal file
|
After Width: | Height: | Size: 203 B |
BIN
design/carheart/css/fancy_img/fancybox-y.png
Normal file
|
After Width: | Height: | Size: 176 B |
BIN
design/carheart/css/fancy_img/fancybox.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
58
design/carheart/css/mobile.css
Normal file
@@ -0,0 +1,58 @@
|
||||
body {margin-top: 50px;}
|
||||
#top-shopcart {display: none;}
|
||||
.container { min-width: 320px; }
|
||||
.collapse-panel .panel-body {display: none;}
|
||||
|
||||
.container-fluid {
|
||||
padding-right: 15px !important;
|
||||
}
|
||||
|
||||
@media (min-width:1200px) {
|
||||
.product-price { font-size: 145% !important; }
|
||||
.navbar-nav > li > a { padding-left: 20px !important; padding-right: 20px !important; }
|
||||
header .phone { font-size: 125% !important; }
|
||||
header .top-text1 { font-size: 160% !important; }
|
||||
header .top-text2 { line-height: 1.5em; }
|
||||
header .top-text3 { font-size: 150%; }
|
||||
}
|
||||
|
||||
@media (max-width:1199px) {
|
||||
.product-price { font-size: 115% !important; }
|
||||
.navbar-nav > li > a { padding-left: 10px !important; padding-right: 10px !important; }
|
||||
header .phone { font-size: 105% !important; }
|
||||
header .top-text1 { font-size: 130% !important; }
|
||||
header .top-text2 { line-height: 1.15em; }
|
||||
header .top-text3 { font-size: 120%; }
|
||||
}
|
||||
|
||||
@media (max-width:991px) {
|
||||
.flexslider { display: none; }
|
||||
.navbar { white-space: nowrap; }
|
||||
.navbar-right { display: none; }
|
||||
header { height: 135px; font-size: 10px; }
|
||||
header .cart .cart-info table td { white-space: nowrap; }
|
||||
header .cart .cart-info { padding-left: 55px; padding-top: 25px; }
|
||||
footer { font-size: 10px; }
|
||||
footer, .push { height: 230px; }
|
||||
.wrapper { margin-bottom: -230px; }
|
||||
.product-name, .product-price {font-size: 12px !important;}
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
#hidden-cart {display: block !important;}
|
||||
.flexslider { display: none; }
|
||||
.navbar { margin-top: 15px;}
|
||||
header, footer { height: auto; font-size: 10px;}
|
||||
header .phone { font-size: 12px !important; }
|
||||
header .logo img { max-width: 120%; max-height: 65px; }
|
||||
.panel-heading, .breadcrumb, .badge, .label { -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; }
|
||||
.cart-links a {color: #ffffff;}
|
||||
footer, .push { height: auto; }
|
||||
.wrapper { margin-bottom: auto; }
|
||||
footer .container { padding-top: 25px; padding-bottom: 25px; }
|
||||
#tabs {margin-top: 15px;}
|
||||
#tabs li {float: left;margin: 0 0.2em 0 0;}
|
||||
#tabs a {font-size: 10px; padding: 0.7em 0.5em;}
|
||||
label {font-size: 10px;}
|
||||
#callme {display: none;}
|
||||
}
|
||||
349
design/carheart/css/old/idealforms.css
Normal file
@@ -0,0 +1,349 @@
|
||||
|
||||
.element {
|
||||
line-height: 1;
|
||||
border: 0;
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
/* ---------------------------------------
|
||||
Load Dingbat font for checkmark icon
|
||||
----------------------------------------*/
|
||||
@font-face {
|
||||
font-family: 'DistroIIBats';
|
||||
src: url('distro2_bats-webfont.eot');
|
||||
src: url('distro2_bats-webfont.eot?#iefix') format('embedded-opentype'), url('distro2_bats-webfont.woff') format('woff'), url('distro2_bats-webfont.svg#DistroIIBats') format('svg'), url('distro2_bats-webfont.ttf') format('truetype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
/* ---------------------------------------
|
||||
Remove default input focus outline
|
||||
----------------------------------------*/
|
||||
:focus {
|
||||
outline: none;
|
||||
outline-style: none;
|
||||
}
|
||||
::-moz-focus-inner {
|
||||
border: 0;
|
||||
}
|
||||
/* ----------------------------------------
|
||||
|
||||
Ideal Forms Styles
|
||||
|
||||
* Be careful editing these values
|
||||
* since everything is measured in ems
|
||||
* you should only change values using
|
||||
* the global variables and colors above.
|
||||
|
||||
-----------------------------------------*/
|
||||
.idealform {
|
||||
font-size: 14px;
|
||||
font-family: Arial, sans-serif;
|
||||
|
||||
|
||||
}
|
||||
.idealform :focus, .idealform :active {
|
||||
outline: 0;
|
||||
}
|
||||
.idealform fieldset {
|
||||
padding: 6px 10px 0 10px;
|
||||
background: #fcfcfc;
|
||||
-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), transparent 0 0 0;
|
||||
-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), transparent 0 0 0;
|
||||
box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), transparent 0 0 0;
|
||||
-webkit-border-radius: 4px 4px 4px 4px;
|
||||
-moz-border-radius: 4px 4px 4px 4px;
|
||||
border-radius: 4px 4px 4px 4px;
|
||||
}
|
||||
.idealform select, .idealform input[type="radio"], .idealform input[type="checkbox"] {
|
||||
position: absolute;
|
||||
left: -9999px;
|
||||
}
|
||||
.idealform label,
|
||||
.idealform .idealselect,
|
||||
.idealform .idealradio,
|
||||
.idealform .idealcheck {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#content .idealform ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
.idealform label {
|
||||
vertical-align: top;
|
||||
padding-right: 1em;
|
||||
}
|
||||
.idealform .main-label {
|
||||
position: relative;
|
||||
font-weight: bold;
|
||||
}
|
||||
.idealform .main-label span {
|
||||
position: absolute;
|
||||
left: -0.5em;
|
||||
top: -0.3em;
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 1.5em;
|
||||
color: #d1301b;
|
||||
}
|
||||
|
||||
.idealform input[type="text"]:focus, .idealform input[type="password"]:focus, .idealform textarea:focus {
|
||||
border: 1px solid #1ba5c7;
|
||||
-moz-box-shadow: 0 0 2px #1ba5c7, transparent 0 0 0;
|
||||
-webkit-box-shadow: 0 0 2px #1ba5c7, transparent 0 0 0;
|
||||
box-shadow: 0 0 2px #1ba5c7, transparent 0 0 0;
|
||||
}
|
||||
.idealform input[type="submit"], .idealform input[type="reset"], .idealform button {
|
||||
line-height: 1;
|
||||
border: 0;
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
font-family: Arial, sans-serif;
|
||||
display: inline-block;
|
||||
padding: .5em 1.5em;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.7);
|
||||
border: 1px solid #126d84;
|
||||
font-weight: bold;
|
||||
color: #093540;
|
||||
text-shadow: 1px 1px rgba(255, 255, 255, 0.4);
|
||||
-moz-box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
-webkit-border-radius: 4px 4px 4px 4px;
|
||||
-moz-border-radius: 4px 4px 4px 4px;
|
||||
border-radius: 4px 4px 4px 4px;
|
||||
background: #5fcee9;
|
||||
background: -moz-linear-gradient(top, #5fcee9 0%, #1ba5c7 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5fcee9), color-stop(100%, #1ba5c7));
|
||||
background: -webkit-linear-gradient(top, #5fcee9 0%, #1ba5c7 100%);
|
||||
background: -o-linear-gradient(top, #5fcee9 0%, #1ba5c7 100%);
|
||||
background: -ms-linear-gradient(top, #5fcee9 0%, #1ba5c7 100%);
|
||||
background: linear-gradient(top, #5fcee9 0%, #1ba5c7 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5fcee9', endColorstr='#1ba5c7',GradientType=0 );
|
||||
}
|
||||
.idealform input[type="submit"]:hover, .idealform input[type="reset"]:hover, .idealform button:hover {
|
||||
background: #8cdcef;
|
||||
background: -moz-linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8cdcef), color-stop(100%, #1ba5c7));
|
||||
background: -webkit-linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
background: -o-linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
background: -ms-linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
background: linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8cdcef', endColorstr='#1ba5c7',GradientType=0 );
|
||||
}
|
||||
.idealform input[type="submit"]:active, .idealform input[type="reset"]:active, .idealform button:active {
|
||||
background: #1ba5c7;
|
||||
}
|
||||
.idealform .idealselect {
|
||||
/* Title */
|
||||
|
||||
/* Menu */
|
||||
|
||||
}
|
||||
|
||||
.idealselect ul li{
|
||||
border-bottom: 1px solid #E7E7E7;
|
||||
border-top: 1px solid white;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#content .idealselect ul li{
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.idealform .idealselect a {
|
||||
line-height: 1;
|
||||
border: 0;
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
font-family: Arial, sans-serif;
|
||||
display: block;
|
||||
padding: .5em .8em;
|
||||
padding-right: 3em;
|
||||
}
|
||||
|
||||
|
||||
.idealform .idealselect .idealselect-title {
|
||||
position: relative;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
text-shadow: 1px 1px rgba(9, 53, 64, 0.5);
|
||||
border: 1px solid #3ba7dc;
|
||||
-moz-box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
background: #5fcee9;
|
||||
background: -moz-linear-gradient(top, #5fcee9 0%, #2D93D3 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5fcee9), color-stop(100%, #2D93D3));
|
||||
background: -webkit-linear-gradient(top, #5fcee9 0%, #2D93D3 100%);
|
||||
background: -o-linear-gradient(top, #5fcee9 0%, #2D93D3 100%);
|
||||
background: -ms-linear-gradient(top, #5fcee9 0%, #2D93D3 100%);
|
||||
background: linear-gradient(top, #5fcee9 0%, #2D93D3 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5fcee9', endColorstr='#2D93D3',GradientType=0 );
|
||||
-webkit-border-radius: 4px 4px 4px 4px;
|
||||
-moz-border-radius: 4px 4px 4px 4px;
|
||||
border-radius: 4px 4px 4px 4px;
|
||||
/* Arrow */
|
||||
|
||||
}
|
||||
.idealform .idealselect .idealselect-title span {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
width: 2em;
|
||||
border-left: 1px solid #1ba5c7;
|
||||
-moz-box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), transparent 0 0 0;
|
||||
-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), transparent 0 0 0;
|
||||
box-shadow: inset 0 1px rgba(255, 255, 255, 0.7), transparent 0 0 0;
|
||||
background: #b9e9f5;
|
||||
background: -moz-linear-gradient(top, #b9e9f5 0%, #5fcee9 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b9e9f5), color-stop(100%, #5fcee9));
|
||||
background: -webkit-linear-gradient(top, #b9e9f5 0%, #5fcee9 100%);
|
||||
background: -o-linear-gradient(top, #b9e9f5 0%, #5fcee9 100%);
|
||||
background: -ms-linear-gradient(top, #b9e9f5 0%, #5fcee9 100%);
|
||||
background: linear-gradient(top, #b9e9f5 0%, #5fcee9 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b9e9f5', endColorstr='#5fcee9',GradientType=0 );
|
||||
-webkit-border-radius: 0 4px 4px 0;
|
||||
-moz-border-radius: 0 4px 4px 0;
|
||||
border-radius: 0 4px 4px 0;
|
||||
}
|
||||
.idealform .idealselect .idealselect-title small {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin: -0.25em 0 0 -0.5em;
|
||||
border-width: .5em;
|
||||
border-style: solid;
|
||||
border-color: #277aa9 transparent transparent transparent;
|
||||
}
|
||||
.idealform .idealselect ul {
|
||||
position: absolute;
|
||||
overflow-y: scroll;
|
||||
z-index: 999;
|
||||
border: 1px solid #CCC;
|
||||
border-top: 0;
|
||||
background: #E6E6E6;
|
||||
background: -moz-linear-gradient(134deg, #E6E6E6 0%, white 100%)
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E6E6E6), color-stop(100%, #ffffff));
|
||||
background: -webkit-linear-gradient(134deg, #E6E6E6 0%, white 100%);
|
||||
background: -o-linear-gradient(134deg, #E6E6E6 0%, white 100%);
|
||||
background: -ms-linear-gradient(134deg, #E6E6E6 0%, white 100%);
|
||||
background: linear-gradient(134deg, #E6E6E6 0%, white 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E6E6E6', endColorstr='#ffffff',GradientType=0 );
|
||||
-webkit-border-radius: 0 0 4px 4px;
|
||||
-moz-border-radius: 0 0 4px 4px;
|
||||
border-radius: 0 0 4px 4px;
|
||||
text-shadow: 1px 1px 0px white;
|
||||
}
|
||||
.idealform .idealselect ul li:last-child a {
|
||||
-webkit-border-radius: 0 0 4px 4px;
|
||||
-moz-border-radius: 0 0 4px 4px;
|
||||
border-radius: 0 0 4px 4px;
|
||||
}
|
||||
.idealform .idealselect ul a {
|
||||
color: #3d3d3d;
|
||||
}
|
||||
.idealform .idealselect ul a:hover {
|
||||
background: #c9c9c9;
|
||||
color: #3d3d3d;
|
||||
text-shadow: 1px 0px 2px white;
|
||||
}
|
||||
.idealform .idealselect:hover .idealselect-title {
|
||||
background: #8cdcef;
|
||||
background: -moz-linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8cdcef), color-stop(100%, #1ba5c7));
|
||||
background: -webkit-linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
background: -o-linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
background: -ms-linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
background: linear-gradient(top, #8cdcef 0%, #1ba5c7 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8cdcef', endColorstr='#1ba5c7',GradientType=0 );
|
||||
}
|
||||
.idealform .idealselect:hover .idealselect-title span {
|
||||
background: #e5f7fc;
|
||||
background: -moz-linear-gradient(top, #e5f7fc 0%, #5fcee9 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e5f7fc), color-stop(100%, #5fcee9));
|
||||
background: -webkit-linear-gradient(top, #e5f7fc 0%, #5fcee9 100%);
|
||||
background: -o-linear-gradient(top, #e5f7fc 0%, #5fcee9 100%);
|
||||
background: -ms-linear-gradient(top, #e5f7fc 0%, #5fcee9 100%);
|
||||
background: linear-gradient(top, #e5f7fc 0%, #5fcee9 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5f7fc', endColorstr='#5fcee9',GradientType=0 );
|
||||
}
|
||||
.idealform .idealselect.open .idealselect-title {
|
||||
-webkit-border-radius: 4px 4px 0 0;
|
||||
-moz-border-radius: 4px 4px 0 0;
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
.idealform .idealselect.open .idealselect-title span {
|
||||
-webkit-border-radius: 0 4px 0 0;
|
||||
-moz-border-radius: 0 4px 0 0;
|
||||
border-radius: 0 4px 0 0;
|
||||
}
|
||||
.idealform .idealradio, .idealform .idealcheck {
|
||||
margin-top: .3em;
|
||||
/* Check */
|
||||
|
||||
/* Radio */
|
||||
|
||||
}
|
||||
.idealform .idealradio label, .idealform .idealcheck label {
|
||||
cursor: pointer;
|
||||
}
|
||||
.idealform .idealradio li, .idealform .idealcheck li {
|
||||
margin-bottom: .6em;
|
||||
}
|
||||
.idealform .idealradio span, .idealform .idealcheck span {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
width: 1.2em;
|
||||
height: 1.2em;
|
||||
margin-right: .5em;
|
||||
border: 1px solid #999999;
|
||||
background: #ffffff;
|
||||
background: -moz-linear-gradient(top, #ffffff 0%, #cccccc 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #cccccc));
|
||||
background: -webkit-linear-gradient(top, #ffffff 0%, #cccccc 100%);
|
||||
background: -o-linear-gradient(top, #ffffff 0%, #cccccc 100%);
|
||||
background: -ms-linear-gradient(top, #ffffff 0%, #cccccc 100%);
|
||||
background: linear-gradient(top, #ffffff 0%, #cccccc 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cccccc',GradientType=0 );
|
||||
}
|
||||
.idealform .idealradio .check, .idealform .idealcheck .check {
|
||||
-webkit-border-radius: 2px 2px 2px 2px;
|
||||
-moz-border-radius: 2px 2px 2px 2px;
|
||||
border-radius: 2px 2px 2px 2px;
|
||||
}
|
||||
.idealform .idealradio .check.checked, .idealform .idealcheck .check.checked {
|
||||
background: #ffffff;
|
||||
/* Checkmark */
|
||||
|
||||
}
|
||||
.idealform .idealradio .check.checked:after, .idealform .idealcheck .check.checked:after {
|
||||
content: "|";
|
||||
font-family: 'DistroIIBats';
|
||||
font-size: 1.6em;
|
||||
position: relative;
|
||||
top: -0.3em;
|
||||
left: .1em;
|
||||
color: #d1301b;
|
||||
}
|
||||
.idealform .idealradio .radio, .idealform .idealcheck .radio {
|
||||
-webkit-border-radius: 1.2em 1.2em 1.2em 1.2em;
|
||||
-moz-border-radius: 1.2em 1.2em 1.2em 1.2em;
|
||||
border-radius: 1.2em 1.2em 1.2em 1.2em;
|
||||
}
|
||||
.idealform .idealradio .radio.checked, .idealform .idealcheck .radio.checked {
|
||||
-moz-box-shadow: inset 0 0 0 0.3em #ffffff, transparent 0 0 0;
|
||||
-webkit-box-shadow: inset 0 0 0 0.3em #ffffff, transparent 0 0 0;
|
||||
box-shadow: inset 0 0 0 0.3em #ffffff, transparent 0 0 0;
|
||||
filter: 0;
|
||||
/* IE */
|
||||
|
||||
background: #d1301b;
|
||||
}
|
||||
2561
design/carheart/css/old/re_style3_4.css
Normal file
29
design/carheart/css/old/reset.css
Normal file
@@ -0,0 +1,29 @@
|
||||
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-size: 100%;
|
||||
background: transparent;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after, q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
ins {
|
||||
text-decoration: none;
|
||||
}
|
||||
del {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
.clear{clear: both;}
|
||||
1133
design/carheart/css/old/style.css
Normal file
558
design/carheart/css/styles.css
Normal file
@@ -0,0 +1,558 @@
|
||||
/*@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,cyrillic);
|
||||
@import url(http://fonts.googleapis.com/css?family=Russo+One&subset=latin,cyrillic);*/
|
||||
|
||||
.navbar-nav > li:last-child > a {
|
||||
padding-left: 27px !important;
|
||||
padding-right: 28px !important;
|
||||
}
|
||||
|
||||
.container-fluid {
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
|
||||
html, body { height: 100%; font-family: 'Open Sans'; font-weight: 400; }
|
||||
/*body { background: #141618 url(../images/bg-page.png) no-repeat center top; }*/
|
||||
a { color: #c9ffff; text-decoration: underline; }
|
||||
a:hover { color: #c9ffff; }
|
||||
.navbar-nav { text-transform: uppercase; margin: 0px; }
|
||||
.navbar-nav > li > a { padding-left: 10px; padding-right: 10px; text-decoration: none; color: #fff !important; }
|
||||
.navbar-collapse {padding-left: 0px; padding-right: 0px;}
|
||||
.navbar-right input { opacity: 0.65; border: 1px solid #333333; }
|
||||
.navbar-right button, .navbar-right button:hover { border-top: 1px solid #b5000a; border-bottom: 1px solid #b5000a; border-right: 1px solid #b5000a; }
|
||||
.wrapper { min-height: 100%; height: auto !important; height: 100%; margin-bottom: -290px; }
|
||||
header { height: 160px; padding-top: 20px; box-sizing: border-box; }
|
||||
header .cart { height: 100%; margin: auto; padding: 5px 0px 15px 0px; width: 100%; background: rgba(46, 51, 56, 0.65) url(../images/cart.png) no-repeat 10% 70%; position: relative; }
|
||||
header .cart.notempty { background: rgba(46, 51, 56, 0.65) url(../images/cart_not_empty.png) no-repeat 10% 70%; }
|
||||
header .cart.notempty .cart-info table td { color: #fff; }
|
||||
header .cart .cart-enter { position: absolute; width: 100%; box-sizing: border-box; bottom: 0px; left: 0px; height: 75px; text-indent: -9999px; }
|
||||
header .cart .cart-links { text-align: right; margin-right: 10px; }
|
||||
header .cart .cart-info { padding-left: 75px; padding-top: 25px; }
|
||||
header .cart .cart-info .icon {display: none;}
|
||||
header .cart .cart-info table { background: none !important; background-color: rgba(0,0,0,0) !important; }
|
||||
header .cart .cart-info table td { box-sizing: border-box; color: rgb(136, 136, 136); font-size: 100%; height: 20px; line-height: 20px; }
|
||||
header .top-text1 { font-size: 125%; font-family: 'Russo One'; font-weight: 400; }
|
||||
header .top-text2 { color: #d0cfcf; font-size: 90%; margin-top: 7px; line-height: 1.5em; }
|
||||
header .top-text3 { color: #fff; font-size: 150%; margin-top: 7px; text-align: center; }
|
||||
header .city { font-size: 80%; color: #fff; line-height: 1em; padding: 0px 0px 2px 0px; }
|
||||
header .phone { font-size: 110%; color: #fff; line-height: 1em; padding: 2px 0px; white-space: nowrap; }
|
||||
header .link { font-size: 90%; }
|
||||
header .email { font-size: 90%; }
|
||||
header .logo img {max-width: 100%; height: auto;}
|
||||
footer, .push { height: 290px; clear: both; }
|
||||
footer { background-color: #2e3338; font-size: 100%; }
|
||||
footer .container { padding-top: 25px; }
|
||||
footer .title { font-size: 125%; color: #c9ffff; text-shadow: -1px -1px 0 rgba(0,0,0,0.3); margin-bottom: 2px; }
|
||||
footer .copyright { font-size: 90%; }
|
||||
footer .copyright span { color: #c9ffff; }
|
||||
footer .eto-design { font-size: 80%; }
|
||||
footer a { color: #fff !important; }
|
||||
footer a:hover { color: #aaa !important; }
|
||||
footer img {max-width: 100%!important; height: auto!important;}
|
||||
.chs {text-transform: uppercase; display: block; text-align: center; color: #2716cb !important; text-shadow: 0px 0px 2px #fff, 0px 0px 2px #fff, 0px 0px 2px #fff, 0px 0px 2px #fff, 0px 0px 2px #fff, 0px 0px 2px #fff, 0px 0px 2px #fff, 0px 0px 2px #fff, 0px 0px 2px #fff, 0px 0px 2px #fff !important; font-style: italic; }
|
||||
.v-menu ul { list-style: none; margin: 0px; margin-top: 7px; padding: 0px; padding-left: 15px; border-top: 1px solid rgba(0,0,0,0.3); }
|
||||
.v-menu > ul { margin-top: 0px; padding-left: 0px; border-top: none; }
|
||||
.v-menu li { padding: 7px 0px; border-bottom: 1px solid rgba(0,0,0,0.3); }
|
||||
.v-menu li:last-child { border-bottom: none; }
|
||||
.v-menu li a { color: #fff; text-decoration: none; display: block; line-height: 1.15em; }
|
||||
.v-menu li a:hover, .v-menu li.active > a { color: #c9ffff; }
|
||||
a.btn { text-decoration: none; }
|
||||
.button-set a.btn-block { text-transform: uppercase; font-size: 100%; }
|
||||
.button-set { width: 100%; margin: auto; margin-bottom: 25px; }
|
||||
.button-set .btn-block { position: relative; }
|
||||
.button-set .btn-sidebar { padding-right: 48px; padding-left: 12px; box-sizing: border-box; }
|
||||
.button-set .b1, .button-set .b2, .button-set .b3 { display: inline-block; width: 72px; height: 72px; position: absolute; top: -12px; right: -12px; }
|
||||
.button-set .b1 { background: url(../images/b1.png) no-repeat; }
|
||||
.button-set .b2 { background: url(../images/b2.png) no-repeat; }
|
||||
.button-set .b3 { background: url(../images/b3.png) no-repeat; }
|
||||
.flexslider { box-sizing: border-box; width: 100%; height: 237px; position: relative; overflow: hidden; }
|
||||
.flexslider .slides { position: relative; margin: 0; padding: 0; }
|
||||
.flexslider .slides > li { display: block; float: left; padding: 20px 300px 20px 30px; box-sizing: border-box; width: 100%; height: 237px; }
|
||||
.flexslider .flex-control-nav { display: block; position: absolute; z-index: 99; bottom: 2px; right: 28px; }
|
||||
.flexslider .flex-direction-nav { display: none; }
|
||||
.flexslider .flex-control-nav > li > a,
|
||||
.flexslider .flex-control-nav > li > span {cursor: pointer;}
|
||||
.flexslider .flex-control-nav > li > a.flex-active,
|
||||
.flexslider .flex-control-nav > li > span.flex-active { background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d); background-image: -o-linear-gradient(#020202, #101112 40%, #191b1d); background-image: -webkit-gradient(linear, left top, left bottom, from(#020202), color-stop(40%, #101112), to(#191b1d)); background-image: linear-gradient(#020202, #101112 40%, #191b1d); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0);-webkit-filter: none; filter: none; }
|
||||
.b { display: block; }
|
||||
.tdn { text-decoration: none; }
|
||||
.drive2 { background: #ff0033; width: 100%; border: 0px; padding: 0px; margin: 0px; border-collapse: collapse; table-layout: auto; border-spacing: 0px; }
|
||||
.drive2 a { display: block; width: 100%; box-sizing: border-box; text-align: center; }
|
||||
.content { margin-bottom: 25px; }
|
||||
.content .title { display: block; font-weight: 500; line-height: 1.1; color: #fff; font-size: 20px; margin-top: 22px; margin-bottom: 12px; }
|
||||
.content a { color: #fff !important; }
|
||||
.content a:hover { color: #aaa !important; }
|
||||
.well { display: block; overflow: hidden; color: #c8c8c8; }
|
||||
.products { overflow: hidden; }
|
||||
.products .product { overflow: hidden; padding: 15px; margin: 0px; margin-bottom: 15px; }
|
||||
.products .product { background-color: #49515a; }
|
||||
.products .product:nth-child(odd) { background-color: #353a41; }
|
||||
.products .product .product-name { display: block; line-height: 1.15em; font-size: 100%; color: #fff; padding: 7px 0px; text-decoration: none !important; }
|
||||
.products .product .product-price { font-size: 145%; color: #fff; line-height: 38px; white-space: nowrap; }
|
||||
.products .product .product-price small { font-size: 60%;}
|
||||
.products .product .product-compare-price { display: block; text-decoration: line-through; color: #d0000a; font-size: 100%; }
|
||||
.products .product .product-compare-price small { font-size: 100%; }
|
||||
.products .product .product-image img { max-width: 100%; }
|
||||
.products .product .product-info { line-height: 1.15em; }
|
||||
.products .product .product-annotation { font-size: 90%; }
|
||||
.product-details { overflow: hidden; }
|
||||
.product-details .product { position: relative; }
|
||||
.product-details .product .product-name { display: block; line-height: 1.15em; font-size: 100%; color: #fff; padding: 7px 0px; text-decoration: none !important; }
|
||||
.product-details .product .product-price { font-size: 145%; color: #fff; white-space: nowrap; }
|
||||
.product-details .product .product-compare-price { display: block; text-decoration: line-through; color: #d0000a; font-size: 100%; }
|
||||
.product-details .product .product-compare-price small { font-size: 100%; }
|
||||
.product-details .product .product-image { margin-bottom: 15px; }
|
||||
.product-details .product .product-images { margin-bottom: 15px; }
|
||||
.product-details .product .product-images img { margin-bottom: 3px; box-sizing: border-box; width: 32%; }
|
||||
.product-details .product .product-buttons { clear: both; width: 100%; text-align: center; }
|
||||
.product-details .product .minus-plus { overflow: hidden; width: 120px; box-sizing: border-box; margin: auto; margin-bottom: 15px; display: none; }
|
||||
.home-output .product {margin-bottom: 15px;}
|
||||
.home-output .product-name { display: block; line-height: 1.15em; font-size: 100%; color: #fff; padding: 0px; margin: 8px 0px; text-decoration: none !important; }
|
||||
.home-output .product-price { font-size: 145%; color: #fff; line-height: 38px; white-space: nowrap; }
|
||||
.home-output .product-image { text-align: left; }
|
||||
.home-output .product-image img { max-height: 160px; }
|
||||
.categories .category { overflow: hidden; height: auto; margin-bottom: 15px; }
|
||||
.categories .category .category-image { text-align: center; }
|
||||
.categories .category .category-image img { max-height: 160px; }
|
||||
.categories .category .category-name { display: block; text-align: center; line-height: 1.15em; font-size: 100%; color: #fff; padding: 7px 0px; text-decoration: none !important; }
|
||||
.category_anons { font-size: 12px; margin-top: 4px; text-transform: lowercase; }
|
||||
.category_anons span { color: red; font-weight: bold; font-size: 18px; }
|
||||
.articles .article { overflow: hidden; height: auto; margin-bottom: 15px; }
|
||||
.articles .article .article-image { text-align: center; }
|
||||
.articles .article .article-image img { max-height: 160px; }
|
||||
.articles .article .article-name { display: block; text-align: center; line-height: 1.15em; font-size: 100%; color: #fff; padding: 7px 0px; text-decoration: none !important; }
|
||||
.brands .brand { overflow: hidden; height: auto; margin-bottom: 15px; }
|
||||
.brands .brand .brand-image { text-align: center; }
|
||||
.brands .brand .brand-image img { max-height: 160px; }
|
||||
.brands .brand .brand-name { display: block; text-align: center; line-height: 1.15em; font-size: 100%; color: #fff; padding: 7px 0px; text-decoration: none !important; }
|
||||
.blog { overflow: hidden; }
|
||||
.blog .blog-article { overflow: hidden; margin-bottom: 7px; }
|
||||
.blog .blog-image { float: left; margin: 0px 15px 5px 0px; }
|
||||
.blog .blog-title { display: block; line-height: 1.15em; font-size: 100%; color: #fff; padding: 7px 0px; }
|
||||
.blog .blog-annotation { font-size: 90%; }
|
||||
a.w, div.w, span.w, a.w img, img.w { color: #fff !important; border-color: #666 !important; }
|
||||
a.w:hover, a.w:hover img { color: #aaa !important; border-color: #333 !important; }
|
||||
h1 { font-size: 24px; color: #fff; }
|
||||
h2 { font-size: 22px; color: #fff; }
|
||||
h3 { font-size: 20px; color: #fff; }
|
||||
h4 { font-size: 18px; color: #fff; }
|
||||
h5 { font-size: 17px; color: #fff; }
|
||||
h6 { font-size: 16px; color: #fff; }
|
||||
.btn-danger, .panel-danger .panel-heading {
|
||||
background: #007fc4;
|
||||
/* background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U1MDAwYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iI2NjMDAwYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiNTAwMGEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
||||
background: -moz-linear-gradient(top, #e5000b 0%, #cc000a 60%, #b5000a 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e5000b), color-stop(60%, #cc000a), color-stop(100%, #b5000a));
|
||||
background: -webkit-linear-gradient(top, #e5000b 0%, #cc000a 60%, #b5000a 100%);
|
||||
background: -o-linear-gradient(top, #e5000b 0%, #cc000a 60%, #b5000a 100%);
|
||||
background: -ms-linear-gradient(top, #e5000b 0%, #cc000a 60%, #b5000a 100%); */
|
||||
background: linear-gradient(to bottom, #007fc4 0%, #007fc4 60%, #007fc4 100%);
|
||||
/*
|
||||
background-image: -webkit-linear-gradient(#e5000b, #cc000a 60%, #b5000a);
|
||||
background-image: -o-linear-gradient(#e5000b, #cc000a 60%, #b5000a);
|
||||
background-image: linear-gradient(#e5000b, #cc000a 60%, #b5000a); background-repeat: no-repeat; */
|
||||
}
|
||||
.btn-danger:hover {
|
||||
background: #0068c4;
|
||||
/* background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QwMDAwYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iI2I4MDAwOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhNDAwMDgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
||||
background: -moz-linear-gradient(top, #d0000a 0%, #b80009 60%, #a40008 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d0000a), color-stop(60%, #b80009), color-stop(100%, #a40008)); background: -webkit-linear-gradient(top, #d0000a 0%, #b80009 60%, #a40008 100%); background: -o-linear-gradient(top, #d0000a 0%, #b80009 60%, #a40008 100%); background: -ms-linear-gradient(top, #d0000a 0%, #b80009 60%, #a40008 100%);
|
||||
*/
|
||||
background: linear-gradient(to bottom, #0068c4 0%, #0068c4 60%, #0068c4 100%);
|
||||
/*background-image: -webkit-linear-gradient(#d0000a, #b80009 40%, #a40008);
|
||||
background-image: -o-linear-gradient(#d0000a, #b80009 40%, #a40008); background-image: linear-gradient(#d0000a, #b80009 40%, #a40008); background-repeat: no-repeat;
|
||||
*/
|
||||
}
|
||||
.navbar .btn-danger {font-size: 11px;}
|
||||
table.table { border: 0px; }
|
||||
td.td { text-align: center; border: 0px; }
|
||||
td.td p, td.td span { margin: 0px; padding: 0px; }
|
||||
td.td a { display: block; line-height: 1.15em; font-size: 100%; padding: 7px 0px; }
|
||||
.category-list ul { margin: 0px; padding: 0px; list-style: none; }
|
||||
strong, b { color: #fff; font-weight: normal !important; }
|
||||
label { margin: 0px; padding: 0px; font-weight: normal; }
|
||||
.h22 { color: #fff; font-weight: normal !important; }
|
||||
.testRater { clear: both; }
|
||||
.mdh { display: none; }
|
||||
input.required { border: 1px solid rgb(255,0,0) !important; box-shadow: 0px 0px 10px rgb(255,0,0) !important; }
|
||||
form.variants { margin: 0px; padding: 0px; }
|
||||
form.variants tr.variant { height: 24px; }
|
||||
form.variants table { background: none !important; background-color: transparent !important; background-image: none !important; }
|
||||
form.variants table td { padding: 4px 8px 4px 0px; margin: 0px; border-top: 1px solid rgba(0,0,0,0.3); border-bottom: 1px solid rgba(0,0,0,0.3); }
|
||||
#tabs { list-style: none outside none; margin: 0; overflow: hidden; padding: 0; width: 100%; }
|
||||
#tabs li { float: left; margin: 0 0.5em 0 0; }
|
||||
#tabs a { background: #353a41; border-radius: 5px 0 0; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4); float: left; padding: 0.7em 1.2em; position: relative; text-decoration: none; }
|
||||
#tabs a:hover, #tabs a:hover:after, #tabs a:focus, #tabs a:focus:after { background: #49515a; }
|
||||
#tabs a:focus { outline: 0 none; }
|
||||
#tabs a:after { background: #353a41; border-radius: 0 5px 0 0; bottom: 0; box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4); content: ""; position: absolute; right: -0.5em; top: 0; transform: skew(10deg); width: 1em; z-index: 1; }
|
||||
#tabs #current a, #tabs #current a:after { background: #49515a; z-index: 3; }
|
||||
#tabcontent { background: #49515a; border-radius: 0; box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); display: block; height: auto; padding: 15px; position: relative; z-index: 2; }
|
||||
.autocomplete-w1 { position: absolute; top: 0px; right: -180px; margin: 6px 0 0 6px; }
|
||||
.autocomplete { border: 1px solid #7a8288; background: #2e3338; color: #fff; cursor: default; text-align: left; overflow-x: auto; overflow-y: auto; margin: -6px 6px 6px -6px; overflow-x: hidden; }
|
||||
.autocomplete .selected { background: #7a8288; color: #fff; }
|
||||
.autocomplete div { padding: 2px 5px; white-space: nowrap; }
|
||||
.autocomplete strong { font-weight: normal; color: #3399FF; }
|
||||
.news-widget .news-date { font-size: 80%; }
|
||||
.news-widget .news-title { font-size: 100%; }
|
||||
.blog-menu { overflow: hidden; margin-bottom: 28px; }
|
||||
.panel .collapse-button { line-height: 1em; padding: 2px 12px; border: 1px solid #cccccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;}
|
||||
.panel .collapse-button .glyphicon {font-size: 16px; color: #dddddd;}
|
||||
.panel .panel-footer { text-align: center; }
|
||||
.panel .panel-footer a { color:#ffffff; }
|
||||
.panel-body.vk { margin: 0px; padding: 0px; }
|
||||
/* cart always on top */
|
||||
.always-on-top {display: block !important; position: fixed !important; z-index: 9999; left: 0; top: 0; padding: 0 !important; box-sizing: border-box; width: 100% !important; height: auto !important; padding: 2px 0px; background: rgba(46,51,56,0.9) !important; text-align: center; }
|
||||
.always-on-top .cart-info .icon {display: table-cell !important; text-align: center; vertical-align: middle; width: 48px;}
|
||||
.always-on-top .cart-info .icon .glyphicon {font-size: 24px; color: #e5000b;}
|
||||
.always-on-top .cart-info { display: inline-block !important; padding: 0 !important; margin: 0 !important; }
|
||||
.always-on-top .cart-links { display: inline-block !important; padding: 0 !important; margin: 0 !important; position: relative; top: -15px; }
|
||||
|
||||
#h_email {display: none;}
|
||||
.content img {max-width: 100%; height: auto;}
|
||||
|
||||
footer .lh {font-size: 90%; line-height: 1.1em; margin-bottom: 8px;}
|
||||
|
||||
.comment_list li{
|
||||
margin-bottom: 15px;
|
||||
list-style: none;
|
||||
padding: 10px;
|
||||
|
||||
}
|
||||
|
||||
.comment_list .comment_header {
|
||||
border-bottom: 1px solid rgba(255, 255,255, 0.1);
|
||||
margin-bottom: 4px;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
.comment_list li:nth-child(even){
|
||||
background-color: #1c1e22;
|
||||
}
|
||||
|
||||
.comment_list li:nth-child(odd){
|
||||
background-color: #2B2E33;
|
||||
}
|
||||
|
||||
.social-icons {margin: 0 0 10px 0; display: table; width: 100%; border-radius: 4px;}
|
||||
.social-icons li {display: table-cell; border: 1px solid #141618; padding: 0; width: 33.33%; text-align: center;}
|
||||
.social-icons a {display: block; padding: 6px 8px;}
|
||||
.social-icons a .fa {font-size: 36px; color: rgb(220,220,220); text-shadow: 1px 1px 1px rgba(0,0,0,0.5);}
|
||||
.social-icons li:hover a .fa {color: rgb(255,255,255);}
|
||||
.social-icons li:first-child {
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
-moz-border-radius-topleft: 4px;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;}
|
||||
.social-icons li:last-child {
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
-moz-border-radius-topright: 4px;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;}
|
||||
|
||||
|
||||
.social-lg {background: url(/images/socsprite_lg.png); width: 48px; height: 48px; overflow: hidden; display: inline-block;}
|
||||
.social-lg.social-instagram {background-position: 0 0;}
|
||||
.social-lg.social-youtube {background-position: -48px 0;}
|
||||
.social-lg.social-vk {background-position: -96px 0;}
|
||||
|
||||
.social-md {background: url(/images/socsprite_md.png); width: 36px; height: 36px; overflow: hidden; display: inline-block;}
|
||||
.social-md.social-instagram {background-position: 0 0;}
|
||||
.social-md.social-youtube {background-position: -36px 0;}
|
||||
.social-md.social-vk {background-position: -72px 0;}
|
||||
|
||||
.social-sm {background: url(/images/socsprite_sm.png); width: 32px; height: 32px; overflow: hidden; display: inline-block;}
|
||||
.social-sm.social-instagram {background-position: 0 0;}
|
||||
.social-sm.social-youtube {background-position: -32px 0;}
|
||||
.social-sm.social-vk {background-position: -64px 0;}
|
||||
|
||||
.social-xs {background: url(/images/socsprite_xs.png); width: 24px; height: 24px; overflow: hidden; display: inline-block;}
|
||||
.social-xs.social-instagram {background-position: 0 0;}
|
||||
.social-xs.social-youtube {background-position: -24px 0;}
|
||||
.social-xs.social-vk {background-position: -48px 0;}
|
||||
|
||||
|
||||
|
||||
.fileinput-btn {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.fileinput-btn input {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
margin: 0;
|
||||
opacity: 0;
|
||||
-ms-filter: 'alpha(opacity=0)';
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Fixes for IE < 8 */
|
||||
@media screen\9 {
|
||||
.fileinput-btn input {
|
||||
filter: alpha(opacity=0);
|
||||
font-size: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.f-preview {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.f-preview>div {
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
right: 2px;
|
||||
}
|
||||
|
||||
.feedback_not {border: 1px solid red;}
|
||||
|
||||
.breadcrumb a {color: #fff; text-decoration: none;}
|
||||
|
||||
.content .h1, .content .h2, .content .h3, .content .h4, .content .h5, .content .h6 {color: #fff !important;}
|
||||
.services-view p, .service-view p, .services-view li, .service-view li {font-size: 16px;}
|
||||
.services .service .service-title {line-height: 1.3em; height: 2.6em; overflow: hidden;}
|
||||
.services .service .service-title a {display: block;}
|
||||
.services .service .service-adt {line-height: 1em; height: 3em; overflow: hidden;}
|
||||
.services .service .service-button {margin-top: 10px; padding: 0 50px;}
|
||||
.services .service .service-image {text-align: center; line-height: 174px; height: 174px; overflow: hidden;}
|
||||
.service-icons > div {text-align: center;}
|
||||
/* sprite */
|
||||
.sprite {display: inline-block; background: url(/design/carheart/images/service-sprite.png); width: 100px; height: 80px; overflow: hidden;}
|
||||
.sprite.i1 {background-position: -7px 0px;}
|
||||
.sprite.i2 {background-position: -170px 0px;}
|
||||
.sprite.i3 {background-position: -338px 0px;}
|
||||
.sprite.i4 {background-position: -501px 0px;}
|
||||
.sprite.i5 {background-position: -668px 0px;}
|
||||
.sprite.i6 {background-position: -833px 0px;}
|
||||
.sprite.i7 {background-position: -993px 0px;}
|
||||
/* / sprite */
|
||||
.graphics {display: block; height: 144px; background: url(/design/carheart/images/graphics.jpg) no-repeat top right; padding: 20px 33% 10px 40px; overflow: hidden;}
|
||||
.graphics .h3 {margin-top: 0;}
|
||||
.contact-form {clear: both;}
|
||||
.contact-form.replaced-form {margin-top: 20px;}
|
||||
.contact-form .h3 {margin-top: 0; margin-bottom: 20px;}
|
||||
.img-pull-left {margin:0 15px 10px 0;}
|
||||
.img-pull-right {margin:0 0 10px 15px;}
|
||||
.infoblock {margin-bottom: 30px;}
|
||||
.infoblock img {max-width: 100% !important; height: auto !important;}
|
||||
.hits .hit-title {height: 4.2em;line-height: 1.4em;}
|
||||
.hits .hit-image {text-align: center;}
|
||||
.hits .hit-image img {display: inline-block;}
|
||||
.hits .hit-price {line-height: 38px; color: #fff; font-weight: 700; letter-spacing: 1px;}
|
||||
.hits .hit-price small {font-weight: 400;}
|
||||
.hits .hit-button {}
|
||||
.other-services .oth-title {font-size: 14px; max-width: 208px; margin-bottom: 20px; text-align: center; height: 80px; }
|
||||
.other-services .oth-image img {max-width: 208px !important; height: auto !important;}
|
||||
.related_products.hits {overflow: hidden; margin-top:30px; margin-bottom: 30px;}
|
||||
img {max-width: 100%;}
|
||||
.mb {margin-bottom: 30px;}
|
||||
.tbl {display: table;}
|
||||
.tbl > div {display: table-cell; vertical-align: middle;}
|
||||
|
||||
.service-view p {text-align: justify;}
|
||||
|
||||
.top-serch input {border: 1px solid #666666;}
|
||||
.top-serch button {border: 1px solid #666;}
|
||||
|
||||
@media screen and (max-device-width: 768px) {
|
||||
.graphics p {display: none;}
|
||||
}
|
||||
@media screen and (min-device-width: 768px) {
|
||||
.service-icons > div {width: 14.28%;}
|
||||
}
|
||||
|
||||
.service-header h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#back-top {
|
||||
position: fixed;
|
||||
left: 100%;
|
||||
margin-left: -100px;
|
||||
bottom: 30px;
|
||||
z-index: 100;
|
||||
-webkit-transition: 1s;
|
||||
-moz-transition: 1s;
|
||||
transition: 1s;
|
||||
}
|
||||
#back-top a:hover span {
|
||||
background-color: #777;
|
||||
}
|
||||
#back-top span {
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
display: block;
|
||||
margin-bottom: 3px;
|
||||
background: #aaa url(/design/carheart/images/up-arrow.png) no-repeat center center;
|
||||
-webkit-border-radius: 7px;
|
||||
-moz-border-radius: 7px;
|
||||
border-radius: 7px;
|
||||
-webkit-transition: 1s;
|
||||
-moz-transition: 1s;
|
||||
transition: 1s;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#back_forward .prev-next-title {
|
||||
box-sizing: border-box;
|
||||
font-size: 110%;
|
||||
height: 36px;
|
||||
line-height: 1em;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#back_forward .cell {
|
||||
float: left;
|
||||
height: auto !important;
|
||||
margin: 5px;
|
||||
overflow: hidden;
|
||||
position: inherit !important;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
#back_forward .prev_next .cell a {
|
||||
height: auto !important;
|
||||
padding-bottom: 5px;
|
||||
position: inherit !important;
|
||||
display: block;
|
||||
padding-top: 5px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ai-more {
|
||||
|
||||
background-image: linear-gradient(#484e55, #3a3f44 60%, #313539);
|
||||
background-repeat: no-repeat;
|
||||
border: 1px solid rgba(0, 0, 0, 0.6);
|
||||
filter: none;
|
||||
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
|
||||
display: block;
|
||||
margin-top:20px;
|
||||
padding:5px 10px;
|
||||
color:#fff;
|
||||
width:150px; text-align:center;
|
||||
text-decoration:none; font-size:12px; text-transform:uppercase;
|
||||
|
||||
}
|
||||
.ai-more:hover {background: #000; text-decoration:none; color:#fff !important;}
|
||||
|
||||
.flex-active-slide p {color:#fff;}
|
||||
|
||||
.m_link:hover {
|
||||
color:#fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.m_link {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#right-cat-btn{
|
||||
height: 184px;
|
||||
right: -9.46px;
|
||||
overflow: visible;
|
||||
position: fixed;
|
||||
top: 28%;
|
||||
width: 43px;
|
||||
z-index: 99990;
|
||||
background: #007fc4;
|
||||
display: block;
|
||||
color:#fff;
|
||||
text-decoration: none;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
#right-cat-btn:hover {
|
||||
right: -5.46px
|
||||
}
|
||||
|
||||
#right-cat-btn span {
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
border-radius: 6px;
|
||||
color:#fff;
|
||||
margin-top: 0px;
|
||||
display: block;
|
||||
transform-origin: left top 0;
|
||||
margin-left: 30px;
|
||||
width: 184px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.pdf-download { position: relative; display: table; min-height: 49px; margin-bottom: 30px; margin-top: 15px; background: #ffffff; background: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%); background: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%); background: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%); border: 1px solid #dddddd; border-radius: 4px; padding-left: 95px; padding-right: 15px; padding-top: 4px; padding-bottom: 4px; }
|
||||
.pdf-download:before { position: absolute; content: ''; display: block; background: url(/design/carheart/images/72.png); width: 72px; height: 72px; left: 8px; top: 50%; margin-top: -36px; }
|
||||
.pdf-download > span {display: table-cell; height: 41px; vertical-align: middle; text-decoration: none;}
|
||||
.pdf-download p {margin: 0; padding-top: 4px; color: #727272;}
|
||||
.pdf-download a {text-decoration: none; color: #666 !important;}
|
||||
.pdf-download:hover a {text-decoration: underline; color: #666 !important;}
|
||||
|
||||
.pdf-views {margin-top: 20px; margin-bottom: 30px}
|
||||
.pdf-views .pdf-view {margin-bottom: 15px}
|
||||
.pdf-views .pdf-view img {max-width: 100%; height: auto !important}
|
||||
|
||||
.news-widget .news-block {margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid #1c1e22;}
|
||||
.news-widget .news-block:last-child {margin-bottom: 0px; padding-bottom: 0px; border-bottom: none;}
|
||||
|
||||
.bx-wrapper .bx-controls-direction a {
|
||||
z-index: 999 !important;
|
||||
}
|
||||
|
||||
.bx-wrapper {
|
||||
background: #1c1e22 !important;
|
||||
border: 5px solid #1c1e22 !important;
|
||||
}
|
||||
|
||||
.sort-order {
|
||||
float: right;
|
||||
display: inline-block;
|
||||
margin-top: 20px;
|
||||
margin-left: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.sort-order select {
|
||||
background: #353a41;
|
||||
border: 2px solid #353a41;
|
||||
border-radius: 2px;
|
||||
height: 29px;
|
||||
}
|
||||
|
||||
.product-comment-date {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.btn, .panel, .panel-heading, .navbar, input, textarea, .breadcrumb, select, .well, .img-thumbnail, .thumbnail, .social-icons, .social-icons li{
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
|
||||
.btn-danger:hover {
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.b3, .b1 {
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
.social-icons.list-inline, .top-text1, .service-icons.row {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.flexslider .slides li {
|
||||
background: rgb(0,127,196) no-repeat scroll right center !important;
|
||||
}
|
||||
|
||||
.zooming2-title {
|
||||
text-align: center;
|
||||
margin-bottom: 5px;
|
||||
font-size: 18px;
|
||||
}
|
||||