|
@@ -1,30 +1,30 @@
|
|
|
#wrapwrap .caret{border-top:4px solid #000;
|
|
|
&:hover{
|
|
|
- border-top:4px solid $light-color;
|
|
|
+ border-top:4px solid @light-color;
|
|
|
};
|
|
|
}
|
|
|
header {
|
|
|
- background: $header-bg;
|
|
|
+ background: @header-bg;
|
|
|
|
|
|
* {
|
|
|
- @include transition(all, 0.3s, ease);
|
|
|
+ .transition(all, 0.3s, ease);
|
|
|
}
|
|
|
.header-top {
|
|
|
width: 100%;
|
|
|
display: inline-block;
|
|
|
vertical-align: top;
|
|
|
- color: lighten($dark-color, 10%);
|
|
|
+ color: lighten(@dark-color, 10%);
|
|
|
font-weight: 300;
|
|
|
z-index: 1000;
|
|
|
position: relative;
|
|
|
- font-size: $font-size-base -2;
|
|
|
+ font-size: @font-size-base -2;
|
|
|
|
|
|
|
|
|
span {
|
|
|
margin-right: 3px;
|
|
|
}
|
|
|
.top-row {
|
|
|
- border-bottom: 1px solid darken($header-bg, 8%);
|
|
|
+ border-bottom: 1px solid darken(@header-bg, 8%);
|
|
|
}
|
|
|
a {
|
|
|
display: block;
|
|
@@ -39,18 +39,14 @@ header {
|
|
|
.fa{
|
|
|
margin-top:-3px;
|
|
|
}
|
|
|
- @media (min-width: 768px) and (max-width: 1023px){
|
|
|
- flex: 0 0 70%;
|
|
|
- max-width: 70%;
|
|
|
- }
|
|
|
|
|
|
@media (max-width:640px) {
|
|
|
text-align: left;
|
|
|
width: 100%;
|
|
|
- text-align: center !important;
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
a {
|
|
|
- color:$dark-color;
|
|
|
+ color:@dark-color;
|
|
|
text-decoration: none;
|
|
|
float: left;
|
|
|
|
|
@@ -66,9 +62,9 @@ header {
|
|
|
text-decoration: none;
|
|
|
}
|
|
|
p {
|
|
|
- color: lighten($dark-color, 10%);
|
|
|
+ color: lighten(@dark-color, 10%);
|
|
|
font-weight: 400;
|
|
|
- font-size: $font-size-base - 1;
|
|
|
+ font-size: @font-size-base - 1;
|
|
|
margin: 0;
|
|
|
padding: 0px 11px 0 0;
|
|
|
}
|
|
@@ -76,16 +72,16 @@ header {
|
|
|
.call-us {
|
|
|
float: left;
|
|
|
margin: 0;
|
|
|
- color: $dark-color;
|
|
|
+ color: @dark-color;
|
|
|
|
|
|
i {
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
vertical-align: middle;
|
|
|
- font-size: $font-size-base * 2 - 4;
|
|
|
+ font-size: @font-size-base * 2 - 4;
|
|
|
}
|
|
|
span {
|
|
|
- color: $dark-color;
|
|
|
- @include transition(all, 0.1s, ease);
|
|
|
+ color: @dark-color;
|
|
|
+ .transition(all, 0.1s, ease);
|
|
|
}
|
|
|
@media (max-width:991px) {
|
|
|
float: none;
|
|
@@ -94,31 +90,25 @@ header {
|
|
|
}
|
|
|
&:hover {
|
|
|
span {
|
|
|
- color: lighten($dark-color, 30%);
|
|
|
+ color: lighten(@dark-color, 30%);
|
|
|
}
|
|
|
}
|
|
|
;
|
|
|
}
|
|
|
}
|
|
|
- .top-right {
|
|
|
- @media (min-width: 768px) and (max-width: 1023px){
|
|
|
- flex: 0 0 30%;
|
|
|
- max-width: 30%;
|
|
|
- }
|
|
|
- }
|
|
|
.mail {
|
|
|
i {
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
vertical-align: middle;
|
|
|
- font-size: $font-size-base + 2;
|
|
|
+ font-size: @font-size-base + 2;
|
|
|
}
|
|
|
span {
|
|
|
- color: $dark-color;
|
|
|
- @include transition(all, 0.1s, ease);
|
|
|
+ color: @dark-color;
|
|
|
+ .transition(all, 0.1s, ease);
|
|
|
}
|
|
|
&:hover {
|
|
|
span {
|
|
|
- color: lighten($dark-color, 30%);
|
|
|
+ color: lighten(@dark-color, 30%);
|
|
|
}
|
|
|
}
|
|
|
;
|
|
@@ -126,7 +116,7 @@ header {
|
|
|
.top-right {
|
|
|
@media (max-width:640px) {
|
|
|
width: 100%;
|
|
|
- text-align: center !important;
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
}
|
|
|
.links {
|
|
@@ -159,14 +149,14 @@ header {
|
|
|
}
|
|
|
.top-link-checkout {
|
|
|
padding-right: 0;
|
|
|
- font-size: $font-size-base - 2;
|
|
|
+ font-size: @font-size-base - 2;
|
|
|
|
|
|
>a {
|
|
|
- font-size: $font-size-base - 2;
|
|
|
+ font-size: @font-size-base - 2;
|
|
|
}
|
|
|
> .fa {
|
|
|
margin-right: 8px;
|
|
|
- font-size: $font-size-base + 5;
|
|
|
+ font-size: @font-size-base + 5;
|
|
|
vertical-align: middle;
|
|
|
}
|
|
|
}
|
|
@@ -175,15 +165,15 @@ header {
|
|
|
height: 40px;
|
|
|
line-height: 40px;
|
|
|
padding: 0 5px;
|
|
|
- font-size: $font-size-base + 2;
|
|
|
+ font-size: @font-size-base + 2;
|
|
|
font-weight: 600;
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
vertical-align: middle;
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
|
|
&:hover {
|
|
|
text-decoration: none;
|
|
|
- color: $dark-color;
|
|
|
+ color: @dark-color;
|
|
|
}
|
|
|
> .fa {
|
|
|
display: inline-block;
|
|
@@ -195,13 +185,13 @@ header {
|
|
|
.configuration {
|
|
|
position: relative;
|
|
|
.fa-cog{
|
|
|
- font-size:$font-size-base + 4;
|
|
|
+ font-size:@font-size-base + 4;
|
|
|
margin-top:-1px;
|
|
|
}
|
|
|
|
|
|
.toggle-config {
|
|
|
z-index: 1;
|
|
|
- border: 1px solid $theme;
|
|
|
+ border: 1px solid @theme;
|
|
|
width: 174px;
|
|
|
text-align: left;
|
|
|
padding: 0;
|
|
@@ -211,7 +201,7 @@ header {
|
|
|
display: none;
|
|
|
opacity: 0;
|
|
|
top: 100%;
|
|
|
- @include transition(all, 0.5s, ease);
|
|
|
+ .transition(all, 0.5s, ease);
|
|
|
|
|
|
|
|
|
@media (max-width:768px){
|
|
@@ -220,7 +210,7 @@ header {
|
|
|
}
|
|
|
|
|
|
.options {
|
|
|
- border-bottom: 1px solid lighten($dark-color, 70%);
|
|
|
+ border-bottom: 1px solid lighten(@dark-color, 70%);
|
|
|
padding:12px 0px;
|
|
|
margin:0px 12px;
|
|
|
|
|
@@ -234,7 +224,7 @@ header {
|
|
|
}
|
|
|
&.active {
|
|
|
a {
|
|
|
- background-color: $theme;
|
|
|
+ background-color: @theme;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -244,8 +234,8 @@ header {
|
|
|
margin-bottom:12px;
|
|
|
|
|
|
label {
|
|
|
- font-size: $font-size-base - 2;
|
|
|
- color: $dark-color;
|
|
|
+ font-size: @font-size-base - 2;
|
|
|
+ color: @dark-color;
|
|
|
font-weight: bold;
|
|
|
|
|
|
margin: 0;
|
|
@@ -255,7 +245,7 @@ header {
|
|
|
.dropdown-toggle {
|
|
|
|
|
|
float: right;
|
|
|
- border: 1px solid lighten($dark-color, 70%);
|
|
|
+ border: 1px solid lighten(@dark-color, 70%);
|
|
|
outline: none;
|
|
|
background-color: transparent;
|
|
|
text-transform:uppercase;
|
|
@@ -270,8 +260,8 @@ header {
|
|
|
padding: 6px 0px 11px 0px;
|
|
|
|
|
|
li {
|
|
|
- color: $dark-color;
|
|
|
- font-size: $font-size-base - 2;
|
|
|
+ color: @dark-color;
|
|
|
+ font-size: @font-size-base - 2;
|
|
|
font-weight: 400;
|
|
|
line-height: 8px;
|
|
|
padding: 9px 12px;
|
|
@@ -280,20 +270,20 @@ header {
|
|
|
|
|
|
}
|
|
|
a {
|
|
|
- color: $dark-color;
|
|
|
+ color: @dark-color;
|
|
|
font-weight: 400;
|
|
|
|
|
|
- font-size: $font-size-base - 2;
|
|
|
+ font-size: @font-size-base - 2;
|
|
|
|
|
|
&:hover {
|
|
|
text-decoration: none;
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
}
|
|
|
}
|
|
|
&:hover {
|
|
|
a {
|
|
|
text-decoration: none;
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
}
|
|
|
}
|
|
|
&:first-child{
|
|
@@ -309,7 +299,7 @@ header {
|
|
|
}
|
|
|
&:hover, &:focus, &:active {
|
|
|
>a {
|
|
|
- border-bottom: 1px solid $theme;
|
|
|
+ border-bottom: 1px solid @theme;
|
|
|
}
|
|
|
.toggle-config {
|
|
|
opacity: 1;
|
|
@@ -328,13 +318,13 @@ header {
|
|
|
opacity: 0;
|
|
|
top: 100%;
|
|
|
display: none;
|
|
|
- @include transition(all, 0.5s, ease);
|
|
|
+ .transition(all, 0.5s, ease);
|
|
|
position: absolute;
|
|
|
width: 265px;
|
|
|
padding: 12px;
|
|
|
right: 0;
|
|
|
text-align: left;
|
|
|
- border: 1px solid $theme;
|
|
|
+ border: 1px solid @theme;
|
|
|
background-color: #fff;
|
|
|
|
|
|
.block-subtitle {
|
|
@@ -383,9 +373,9 @@ header {
|
|
|
.product-name {
|
|
|
a {
|
|
|
text-transform: uppercase;
|
|
|
- color: $dark-color;
|
|
|
+ color: @dark-color;
|
|
|
font-weight:600;
|
|
|
- font-size: $font-size-base - 1;
|
|
|
+ font-size: @font-size-base - 1;
|
|
|
}
|
|
|
&:hover {
|
|
|
a {
|
|
@@ -408,56 +398,41 @@ header {
|
|
|
h3 {
|
|
|
margin: 0;
|
|
|
padding: 0;
|
|
|
- font-size: $font-size-base;
|
|
|
+ font-size: @font-size-base;
|
|
|
}
|
|
|
p {
|
|
|
- font-size: $font-size-base + 3;
|
|
|
+ font-size: @font-size-base + 3;
|
|
|
font-weight: bold;
|
|
|
}
|
|
|
- #order_total {
|
|
|
- margin-left: 0;
|
|
|
- margin-right: 0;
|
|
|
-
|
|
|
- span{
|
|
|
- width: 50%;
|
|
|
- font-weight: 700;
|
|
|
- }
|
|
|
-
|
|
|
- span.h4 {
|
|
|
- font-weight: normal;
|
|
|
- font-size: 18px;
|
|
|
- padding-right: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
.button-box {
|
|
|
.view-all {
|
|
|
- background-color: lighten($dark-color, 70%);
|
|
|
+ background-color: lighten(@dark-color, 70%);
|
|
|
border: none;
|
|
|
padding: 7px 10px;
|
|
|
- color: $dark-color;
|
|
|
+ color: @dark-color;
|
|
|
outline: none;
|
|
|
display: inline-block;
|
|
|
border-radius: 0px;
|
|
|
|
|
|
&:hover {
|
|
|
- background-color: $theme;
|
|
|
+ background-color: @theme;
|
|
|
text-decoration: none;
|
|
|
- color: $light-color;
|
|
|
+ color: @light-color;
|
|
|
}
|
|
|
}
|
|
|
.proceed {
|
|
|
- background-color: $dark-color;
|
|
|
+ background-color: @dark-color;
|
|
|
float: right;
|
|
|
outline: none;
|
|
|
display: inline-block;
|
|
|
border-radius: 0px;
|
|
|
}
|
|
|
a {
|
|
|
- font-size: $font-size-base;
|
|
|
+ font-size: @font-size-base;
|
|
|
font-weight: 400;
|
|
|
|
|
|
- color: $light-color;
|
|
|
+ color: @light-color;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -472,7 +447,7 @@ header {
|
|
|
}
|
|
|
&:hover {
|
|
|
>a {
|
|
|
- border-bottom: 1px solid $theme;
|
|
|
+ border-bottom: 1px solid @theme;
|
|
|
}
|
|
|
.toggle-config {
|
|
|
visibility: visible;
|
|
@@ -524,12 +499,12 @@ header {
|
|
|
padding: 0;
|
|
|
|
|
|
> a {
|
|
|
- background: $theme;
|
|
|
+ background: @theme;
|
|
|
padding: 10px 25px;
|
|
|
border-radius: 25px;
|
|
|
display: block;
|
|
|
- color: $light-color;
|
|
|
- @include transition(all, 0.5s, ease);
|
|
|
+ color: @light-color;
|
|
|
+ .transition(all, 0.5s, ease);
|
|
|
|
|
|
&:hover {
|
|
|
text-decoration: none;
|
|
@@ -541,10 +516,10 @@ header {
|
|
|
opacity: 0;
|
|
|
top: 120%;
|
|
|
width: 250px;
|
|
|
- background: $light-color;
|
|
|
+ background: @light-color;
|
|
|
right: 0;
|
|
|
padding: 15px;
|
|
|
- @include transition(all, 0.5s, ease);
|
|
|
+ .transition(all, 0.5s, ease);
|
|
|
|
|
|
@media (max-width:767px) {
|
|
|
right: -50%;
|
|
@@ -556,7 +531,7 @@ header {
|
|
|
width: 100%;
|
|
|
display: inline-block;
|
|
|
vertical-align: top;
|
|
|
- border-bottom: 1px solid darken($light-color, 10%);
|
|
|
+ border-bottom: 1px solid darken(@light-color, 10%);
|
|
|
margin-bottom: 10px;
|
|
|
padding-bottom: 10px;
|
|
|
position: relative;
|
|
@@ -573,7 +548,7 @@ header {
|
|
|
}
|
|
|
.hc-cart-info {
|
|
|
a {
|
|
|
- color: $dark-color;
|
|
|
+ color: @dark-color;
|
|
|
line-height: normal;
|
|
|
}
|
|
|
label {
|
|
@@ -599,10 +574,10 @@ header {
|
|
|
|
|
|
a {
|
|
|
padding: 5px 10px;
|
|
|
- background: $theme;
|
|
|
+ background: @theme;
|
|
|
display: inline-block;
|
|
|
vertical-align: top;
|
|
|
- color: $light-color;
|
|
|
+ color: @light-color;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -626,9 +601,6 @@ header {
|
|
|
background: transparent;
|
|
|
position: relative;
|
|
|
z-index: 99;
|
|
|
- @media (max-width: 767px){
|
|
|
- padding: 8px 15px 10px !important;
|
|
|
- }
|
|
|
|
|
|
.container {
|
|
|
position: relative;
|
|
@@ -638,7 +610,7 @@ header {
|
|
|
float: left;
|
|
|
|
|
|
.icon-bar {
|
|
|
- background: $light-color;
|
|
|
+ background: @light-color;
|
|
|
}
|
|
|
span:first-child {
|
|
|
display: none;
|
|
@@ -662,47 +634,47 @@ header {
|
|
|
float: left;
|
|
|
text-align: center;
|
|
|
line-height: 60px;
|
|
|
- background: darken($theme, 15%);
|
|
|
+ background: darken(@theme, 15%);
|
|
|
cursor: pointer;
|
|
|
- color: $light-color;
|
|
|
+ color: @light-color;
|
|
|
|
|
|
.fa {
|
|
|
- font-size: $font-size-base + 6;
|
|
|
+ font-size: @font-size-base + 6;
|
|
|
}
|
|
|
}
|
|
|
.hsearch-block {
|
|
|
visibility: hidden;
|
|
|
opacity: 0;
|
|
|
position: absolute;
|
|
|
- @include transition(all, 0.5s, ease);
|
|
|
+ .transition(all, 0.5s, ease);
|
|
|
top: 120%;
|
|
|
width: 250px;
|
|
|
right: 0;
|
|
|
padding: 20px;
|
|
|
- background: $light-color;
|
|
|
- box-shadow: 0px 3px 5px 0px darken($light-color, 30%);
|
|
|
+ background: @light-color;
|
|
|
+ box-shadow: 0px 3px 5px 0px darken(@light-color, 30%);
|
|
|
|
|
|
.form-control {
|
|
|
border-radius: 0;
|
|
|
height: 45px;
|
|
|
line-height: 45px;
|
|
|
- font-size: $font-size-base + 2;
|
|
|
+ font-size: @font-size-base + 2;
|
|
|
}
|
|
|
.btn {
|
|
|
position: absolute;
|
|
|
top: 20px;
|
|
|
right: 20px;
|
|
|
- background: $theme;
|
|
|
+ background: @theme;
|
|
|
border-radius: 0;
|
|
|
border: none;
|
|
|
height: 45px;
|
|
|
line-height: 45px;
|
|
|
padding: 0;
|
|
|
width: 45px;
|
|
|
- color: $light-color;
|
|
|
+ color: @light-color;
|
|
|
|
|
|
.fa {
|
|
|
- font-size: $font-size-base + 2;
|
|
|
+ font-size: @font-size-base + 2;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -721,7 +693,7 @@ header {
|
|
|
@media (max-width:767px) {
|
|
|
display: none !important;
|
|
|
|
|
|
- &.show {
|
|
|
+ &.in {
|
|
|
display: block !important;
|
|
|
position: absolute;
|
|
|
top: 99%;
|
|
@@ -736,15 +708,15 @@ header {
|
|
|
.navbar-nav {
|
|
|
float: none;
|
|
|
margin: 0;
|
|
|
- background: $theme;
|
|
|
- border-bottom:1px solid $theme;
|
|
|
+ background: @theme;
|
|
|
+ border-bottom:1px solid @theme;
|
|
|
|
|
|
> li {
|
|
|
width: 100%;
|
|
|
display: inline-block;
|
|
|
|
|
|
+ li {
|
|
|
- border-top: 1px solid darken($theme, 7%);
|
|
|
+ border-top: 1px solid darken(@theme, 7%);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -758,24 +730,22 @@ header {
|
|
|
}
|
|
|
> li {
|
|
|
> a {
|
|
|
- font-size: $font-size-base;
|
|
|
+ font-size: @font-size-base;
|
|
|
padding: 10px 15px;
|
|
|
line-height: 55px;
|
|
|
|
|
|
font-weight: bold;
|
|
|
- @include transition(all, 0.3s, ease);
|
|
|
+ .transition(all, 0.3s, ease);
|
|
|
text-decoration: none;
|
|
|
- color: $dark-color;
|
|
|
- display: block;
|
|
|
+ color: @dark-color;
|
|
|
|
|
|
@media (max-width:767px) {
|
|
|
line-height: normal;
|
|
|
- color: $light-color;
|
|
|
- text-align: left;
|
|
|
+ color: @light-color;
|
|
|
}
|
|
|
&:hover, &:focus, &:active {
|
|
|
background: transparent;
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
|
|
|
&:before {
|
|
|
visibility: visible;
|
|
@@ -792,26 +762,23 @@ header {
|
|
|
height: 2px;
|
|
|
bottom: 0;
|
|
|
left: 0;
|
|
|
- background-color: $theme;
|
|
|
+ background-color: @theme;
|
|
|
visibility: hidden;
|
|
|
-moz-transform: scaleX(0);
|
|
|
-webkit-transform: scaleX(0);
|
|
|
-o-transform: scaleX(0);
|
|
|
transform: scaleX(0);
|
|
|
- @include transition(all, 0.3s, ease-in-out);
|
|
|
- }
|
|
|
- &:after {
|
|
|
- display: none;
|
|
|
+ .transition(all, 0.3s, ease-in-out);
|
|
|
}
|
|
|
}
|
|
|
- > a {
|
|
|
- &.active {
|
|
|
+ &.active {
|
|
|
+ > a {
|
|
|
background: transparent;
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
|
|
|
@media (max-width:767px) {
|
|
|
- color: $light-color;
|
|
|
- background: darken($theme, 5%);
|
|
|
+ color: @light-color;
|
|
|
+ background: darken(@theme, 5%);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -821,11 +788,11 @@ header {
|
|
|
|
|
|
&:hover, &:focus, &:active {
|
|
|
background: transparent;
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
|
|
|
@media (max-width:767px) {
|
|
|
- color: $light-color;
|
|
|
- background: darken($theme, 5%);
|
|
|
+ color: @light-color;
|
|
|
+ background: darken(@theme, 5%);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -838,7 +805,7 @@ header {
|
|
|
margin-top: 8px;
|
|
|
|
|
|
a {
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
padding: 5px 9px;
|
|
|
text-transform: uppercase;
|
|
|
}
|
|
@@ -855,12 +822,12 @@ header {
|
|
|
width: 100%;
|
|
|
left: 0;
|
|
|
top: 120%;
|
|
|
- background: $light-color;
|
|
|
+ background: @light-color;
|
|
|
margin: 0;
|
|
|
padding: 0;
|
|
|
letter-spacing: -0.31em;
|
|
|
- @include transition(all, 0.5s, ease);
|
|
|
- box-shadow: 0px 3px 5px 0px darken($light-color, 30%);
|
|
|
+ .transition(all, 0.5s, ease);
|
|
|
+ box-shadow: 0px 3px 5px 0px darken(@light-color, 30%);
|
|
|
|
|
|
@media (max-width:991px) {
|
|
|
visibility: visible;
|
|
@@ -877,8 +844,8 @@ header {
|
|
|
h4 {
|
|
|
margin: 0 0 10px;
|
|
|
padding: 0 0 10px;
|
|
|
- font-size: $font-size-base + 2;
|
|
|
- border-bottom: 1px dotted darken($light-color, 20%);
|
|
|
+ font-size: @font-size-base + 2;
|
|
|
+ border-bottom: 1px dotted darken(@light-color, 20%);
|
|
|
}
|
|
|
ul {
|
|
|
margin: 0;
|
|
@@ -888,7 +855,7 @@ header {
|
|
|
list-style-type: none;
|
|
|
padding: 3px 0 3px 15px;
|
|
|
position: relative;
|
|
|
- @include transition(all, 0.5s, ease);
|
|
|
+ .transition(all, 0.5s, ease);
|
|
|
|
|
|
&:before {
|
|
|
content: "\f105";
|
|
@@ -897,21 +864,21 @@ header {
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
|
top: 0;
|
|
|
- @include transition(all, 0.5s, ease);
|
|
|
+ .transition(all, 0.5s, ease);
|
|
|
}
|
|
|
a {
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
}
|
|
|
&:hover {
|
|
|
padding-left: 20px;
|
|
|
|
|
|
&:before {
|
|
|
left: 5px;
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
}
|
|
|
a {
|
|
|
text-decoration: none;
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
}
|
|
|
}
|
|
|
&.mm-img {
|
|
@@ -960,7 +927,7 @@ header {
|
|
|
}
|
|
|
}
|
|
|
header {
|
|
|
- background: $header-bg;
|
|
|
+ background: @header-bg;
|
|
|
position: fixed;
|
|
|
top: -42px;
|
|
|
left: 0;
|
|
@@ -1014,36 +981,36 @@ header {
|
|
|
}
|
|
|
}
|
|
|
.label-primary {
|
|
|
- background-color: $theme;
|
|
|
+ background-color: @theme;
|
|
|
}
|
|
|
footer {
|
|
|
.fa-angle-right {
|
|
|
- color: $light-color;
|
|
|
+ color: @light-color;
|
|
|
}
|
|
|
}
|
|
|
@media (max-width:767px) {
|
|
|
- header {
|
|
|
- .navbar {
|
|
|
+ .navbar-default {
|
|
|
+ .navbar-header {
|
|
|
position: relative;
|
|
|
}
|
|
|
- .navbar-toggler {
|
|
|
+ .navbar-toggle {
|
|
|
display: block;
|
|
|
position: absolute;
|
|
|
- right: 15px;
|
|
|
+ right: 0;
|
|
|
top: 0;
|
|
|
- padding: 7px;
|
|
|
+ padding: 10px;
|
|
|
border-radius: 0;
|
|
|
bottom: 0;
|
|
|
height: 40px;
|
|
|
margin: auto;
|
|
|
border: none;
|
|
|
- background-color: $theme;
|
|
|
+ background-color: @theme;
|
|
|
|
|
|
.icon-bar {
|
|
|
- background: $light-color;
|
|
|
+ background: @light-color;
|
|
|
}
|
|
|
&:hover, &:focus, &:active {
|
|
|
- background-color: $theme;
|
|
|
+ background-color: @theme;
|
|
|
}
|
|
|
&.collapsed {
|
|
|
}
|
|
@@ -1052,14 +1019,14 @@ footer {
|
|
|
}
|
|
|
|
|
|
#only_categories{
|
|
|
- border-top:1px solid $theme;
|
|
|
- background:$theme;
|
|
|
- color:$light-color;
|
|
|
+ border-top:1px solid @theme;
|
|
|
+ background:@theme;
|
|
|
+ color:@light-color;
|
|
|
.pwpi-title {
|
|
|
a{
|
|
|
- color: $light-color;
|
|
|
+ color: @light-color;
|
|
|
&:hover{
|
|
|
- color:$light-color;
|
|
|
+ color:@light-color;
|
|
|
};
|
|
|
}
|
|
|
}
|
|
@@ -1073,22 +1040,22 @@ footer {
|
|
|
label{
|
|
|
padding:7px;
|
|
|
margin:0px 3px 6px 0px;
|
|
|
- background-color: $theme;
|
|
|
- color:$light-color;
|
|
|
+ background-color: @theme;
|
|
|
+ color:@light-color;
|
|
|
display:inline-block;
|
|
|
font-weight: normal;
|
|
|
span{
|
|
|
margin-right:10px;
|
|
|
}
|
|
|
#clear{
|
|
|
- color:$light-color;
|
|
|
+ color:@light-color;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
.services{
|
|
|
.fa{
|
|
|
font-size: 40px;
|
|
|
- color:$theme;
|
|
|
+ color:@theme;
|
|
|
}
|
|
|
}
|
|
|
/*checkout page */
|
|
@@ -1112,19 +1079,6 @@ footer {
|
|
|
.dropdown-menu {
|
|
|
padding: 18px;
|
|
|
}
|
|
|
- a{
|
|
|
- font-size: 14px;
|
|
|
- }
|
|
|
- @media (min-width: 768px) and (max-width: 1023px){
|
|
|
- .col-md-3 {
|
|
|
- flex: 0 0 100%;
|
|
|
- max-width: 100%;
|
|
|
- }
|
|
|
- .col-md-9 {
|
|
|
- flex: 0 0 100%;
|
|
|
- max-width: 100%;
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
header {
|
|
|
.header-top{
|
|
@@ -1134,12 +1088,12 @@ header {
|
|
|
}
|
|
|
.price{
|
|
|
a{
|
|
|
- color:$theme;
|
|
|
+ color:@theme;
|
|
|
}
|
|
|
}
|
|
|
#order_total{
|
|
|
.text-left{
|
|
|
- color: $theme;
|
|
|
+ color: @theme;
|
|
|
font-weight: 700;
|
|
|
}
|
|
|
}
|
|
@@ -1148,7 +1102,3 @@ header {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-.navbar {
|
|
|
- padding: 0;
|
|
|
-}
|