forked from M3-Academy/m3-academy-template-checkout
Feat(Checkout): Cria Layout completo
This commit is contained in:
parent
0de462bae3
commit
724d3559e4
@ -6,14 +6,16 @@
|
|||||||
|
|
||||||
.link-cart {
|
.link-cart {
|
||||||
a {
|
a {
|
||||||
color: red;
|
color: $color-black2;
|
||||||
|
font-weight: 400;
|
||||||
|
font-family: $font-family-secundary;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
&:hover {
|
// &:hover {
|
||||||
color: lighen($color-black, 10);
|
// color: lighen($color-black, 10);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -28,22 +30,22 @@
|
|||||||
margin-top: 7px;
|
margin-top: 7px;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
color: #f30606;
|
color: $color-black2;
|
||||||
|
font-family: $font-family-secundary;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
line-height: 23px;
|
line-height: 23px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
letter-spacing: 0.09em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
small {
|
small {
|
||||||
color: red;
|
color: $color-black2;
|
||||||
|
font-family: $font-family-secundary;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
line-height: 23px;
|
line-height: 23px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
letter-spacing: 0.09em;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -59,13 +61,14 @@
|
|||||||
color: $color-black;
|
color: $color-black;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
border: 1px solid red;
|
border: 1px solid $color-black2;
|
||||||
|
border-right: none;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 5px 0px 0px 5px;
|
border-radius: 5px 0px 0px 5px;
|
||||||
width: 77%;
|
width: 77%;
|
||||||
height: 52px;
|
height: 52px;
|
||||||
&::placeholder{
|
&::placeholder{
|
||||||
color: red;
|
color: $color-black2;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
@ -97,9 +100,15 @@
|
|||||||
right: 14px;
|
right: 14px;
|
||||||
padding: 4px 26px;
|
padding: 4px 26px;
|
||||||
height: 52px;
|
height: 52px;
|
||||||
background-color: red;
|
background-color: $color-blue2;
|
||||||
border-radius: 0px 8px 8px 0px;
|
border-radius: 0px 8px 8px 0px;
|
||||||
position: static;
|
position: static;
|
||||||
|
font-family: $font-family;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.help.error {
|
span.help.error {
|
||||||
@ -116,11 +125,15 @@
|
|||||||
.emailInfo {
|
.emailInfo {
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
background-color: $color-white;
|
background-color: $color-white;
|
||||||
border: 1px solid $color-gray4;
|
border: 1px solid $color-black2;
|
||||||
border-radius: 0;
|
border-radius: 5px;
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
color: #303030;
|
color: $color-black2;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
margin: 0 0 8px 0;
|
margin: 0 0 8px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -129,11 +142,16 @@
|
|||||||
|
|
||||||
li {
|
li {
|
||||||
span {
|
span {
|
||||||
color: $color-black;
|
font-family: $font-family;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: $color-black2;
|
||||||
}
|
}
|
||||||
|
|
||||||
i::before {
|
i::before {
|
||||||
color: red;
|
color: $color-blue2;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
@ -153,6 +171,7 @@
|
|||||||
#go-to-shipping{
|
#go-to-shipping{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
p.input.ship-country.text{
|
p.input.ship-country.text{
|
||||||
display: none;
|
display: none;
|
||||||
@ -165,31 +184,28 @@
|
|||||||
.shipping-data,
|
.shipping-data,
|
||||||
.payment-data,
|
.payment-data,
|
||||||
.client-profile-data {
|
.client-profile-data {
|
||||||
|
|
||||||
.accordion-group {
|
.accordion-group {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
border: 1px solid red;
|
border: 1px solid $color-gray3;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
padding: 17px 17px 29px 17px;
|
padding: 17px 17px 29px 17px;
|
||||||
|
|
||||||
|
span{
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
.accordion-toggle{
|
.accordion-toggle{
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
}
|
}
|
||||||
|
div.row-fluid:before{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
// .accordion-toggle-active{
|
|
||||||
// font-size: 0;
|
|
||||||
// line-height: 0;
|
|
||||||
// margin-bottom: 36px !important;
|
|
||||||
// &::after{
|
|
||||||
// content: "Identificação";
|
|
||||||
// font-weight: 400;
|
|
||||||
// font-size: 16px;
|
|
||||||
// line-height: 19px;
|
|
||||||
// color: red;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
p.link.link-gift-card{
|
p.link.link-gift-card{
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
@ -204,7 +220,7 @@
|
|||||||
|
|
||||||
.accordion-heading {
|
.accordion-heading {
|
||||||
span {
|
span {
|
||||||
color: red;
|
color: $color-black;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
@ -255,16 +271,29 @@
|
|||||||
|
|
||||||
p {
|
p {
|
||||||
label {
|
label {
|
||||||
color: red;
|
color: $color-gray2;
|
||||||
font-weight: 500;
|
font-family: $font-family;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
|
||||||
|
span.newsletter-text{
|
||||||
|
color: $color-gray9;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
select,
|
select,
|
||||||
input {
|
input {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
border: 1px solid red;
|
border: 1px solid $color-gray10;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
padding: 10px 6px;
|
padding: 10px 6px;
|
||||||
|
|
||||||
|
&#opt-in-newsletter{
|
||||||
|
border-radius: 3px;
|
||||||
|
color: $color-gray11;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#ship-postalCode{
|
#ship-postalCode{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -288,18 +317,22 @@
|
|||||||
.state-inscription-box span {
|
.state-inscription-box span {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
.submit.btn-submit-wrapper{
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
button.submit {
|
button.submit {
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 8px;
|
||||||
background: red;
|
background: $color-blue2;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
outline: none;
|
outline: none;
|
||||||
transition: all 0.2s linear;
|
transition: all 0.2s linear;
|
||||||
|
font-family: $font-family;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
color: pink;
|
color: $color-white;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -316,21 +349,24 @@
|
|||||||
/* Shipping configurations */
|
/* Shipping configurations */
|
||||||
|
|
||||||
.ship-postalCode small a {
|
.ship-postalCode small a {
|
||||||
color: #303030;
|
color: $color-black;
|
||||||
font-weight: 500;
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vtex-omnishipping-1-x-deliveryGroup {
|
.vtex-omnishipping-1-x-deliveryGroup {
|
||||||
p {
|
p {
|
||||||
color: red;
|
color: $color-gray2;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shp-lean {
|
.shp-lean {
|
||||||
border: 1px solid red;
|
border: 1px solid $color-gray10;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
|
|
||||||
@ -348,12 +384,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.delivery-address-title {
|
.delivery-address-title {
|
||||||
color: red;
|
color: $color-gray2;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
margin-bottom: 11px;
|
margin-bottom: 11px;
|
||||||
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shp-summary-group-info {
|
.shp-summary-group-info {
|
||||||
@ -363,7 +400,7 @@
|
|||||||
|
|
||||||
.address-summary {
|
.address-summary {
|
||||||
background: none;
|
background: none;
|
||||||
border-color: red;
|
border-color: $color-gray10;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
color: #303030;
|
color: #303030;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
@ -382,11 +419,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: red;
|
color: $color-blue2;
|
||||||
float: right;
|
float: right;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
|
text-transform: lowercase;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -411,16 +449,20 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.vtex-omnishipping-1-x-deliveryChannelsToggle {
|
.vtex-omnishipping-1-x-deliveryChannelsToggle {
|
||||||
background-color: red;
|
background-color: $color-white;
|
||||||
border: 1px solid pink;
|
border: 1px solid $color-black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vtex-omnishipping-1-x-deliveryOptionActive {
|
.vtex-omnishipping-1-x-deliveryOptionActive {
|
||||||
text-shadow: 1.3px 1px lighten($color-black, 50);
|
font-style: normal;
|
||||||
color: blue;
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: $color-purple;
|
||||||
}
|
}
|
||||||
.vtex-omnishipping-1-x-deliveryOptionInactive{
|
.vtex-omnishipping-1-x-deliveryOptionInactive{
|
||||||
color: blue;
|
color: $color-gray8;
|
||||||
}
|
}
|
||||||
p.input.ship-number.required.text{
|
p.input.ship-number.required.text{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -430,9 +472,6 @@
|
|||||||
input#ship-receiverName.input-xlarge {
|
input#ship-receiverName.input-xlarge {
|
||||||
width: 95%;
|
width: 95%;
|
||||||
}
|
}
|
||||||
// input#ship-receiverName.input-xlarge{
|
|
||||||
// value = ""
|
|
||||||
// }
|
|
||||||
.steps-view{
|
.steps-view{
|
||||||
width: 57%;
|
width: 57%;
|
||||||
margin-top: 35px;
|
margin-top: 35px;
|
||||||
@ -442,17 +481,35 @@
|
|||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
}
|
}
|
||||||
.payment-group-item{
|
.payment-group-item{
|
||||||
border-right: 1px solid red ;
|
border-right: 1px solid $color-black2 ;
|
||||||
border: 1px solid red;
|
border: 1px solid $color-black2;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
display: none;
|
display: none;
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
padding: 3px 18px 3px 8px;
|
mix-blend-mode: normal;
|
||||||
|
padding: 13px 24.5px;
|
||||||
|
background: $color-gray3;
|
||||||
|
color: $color-gray6;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 24px;
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: -0.01em;
|
||||||
|
|
||||||
|
&-text{
|
||||||
|
padding: 5px 0 5px 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.payment-group-item.active{
|
.payment-group-item.active{
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
border-right: 1px solid $color-orange ;
|
||||||
|
border: 1px solid $color-orange;
|
||||||
|
color: $color-orange;
|
||||||
|
text-decoration: none;
|
||||||
|
opacity: 1;
|
||||||
|
background: rgba(220, 221, 227, 0.3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.cart {
|
.cart {
|
||||||
border: 3px solid $color-gray3;
|
border: 1px solid $color-gray3;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
padding: 16px 16px 5px 16px;
|
padding: 16px 16px 5px 16px;
|
||||||
@ -39,15 +39,17 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
.cart-fixed {
|
.cart-fixed {
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
width: 99.5%;
|
width: 99.5%;
|
||||||
border: 1px solid red;
|
border: 1px solid $color-gray5;
|
||||||
height: 397px !important;
|
height: 397px !important;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
h2 {
|
h2 {
|
||||||
background: $color-white;
|
background: $color-white;
|
||||||
border: none;
|
border: none;
|
||||||
color: #303030;
|
color: $color-black;
|
||||||
font-size: 14px;
|
font-family: $font-family-secundary;
|
||||||
font-weight: 500;
|
font-size: 16px;
|
||||||
|
line-height: 19px;
|
||||||
|
font-weight: 400;
|
||||||
text-align: start;
|
text-align: start;
|
||||||
padding: 24px 0 0 17px;
|
padding: 24px 0 0 17px;
|
||||||
}
|
}
|
||||||
@ -103,20 +105,26 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
|
|
||||||
#payment-data-submit {
|
#payment-data-submit {
|
||||||
background: red;
|
background: $color-green2;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
outline: none;
|
outline: none;
|
||||||
transition: all 0.2s linear;
|
transition: all 0.2s linear;
|
||||||
border-top: 15px;
|
border-top: 15px;
|
||||||
&:hover {
|
font-weight: 700;
|
||||||
background: lighten($color-black, 5);
|
font-size: 14px;
|
||||||
}
|
line-height: 19px;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
&:active {
|
// &:hover {
|
||||||
background: darken($color-black, 5);
|
// background: lighten($color-black, 5);
|
||||||
}
|
// }
|
||||||
|
|
||||||
|
// &:active {
|
||||||
|
// background: darken($color-black, 5);
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -127,11 +135,16 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
.cart-items {
|
.cart-items {
|
||||||
.product-item {
|
.product-item {
|
||||||
padding: 16px 0;
|
padding: 16px 0;
|
||||||
|
|
||||||
|
.product-name{
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
padding: 0 0 13px;
|
padding: 0 0 13px;
|
||||||
|
font-family: $font-family-secundary;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
@ -151,7 +164,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: red;
|
color: $color-black;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.product-price{
|
&.product-price{
|
||||||
@ -162,8 +175,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: red
|
color: $color-black;
|
||||||
;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -200,11 +212,13 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
.product-name {
|
.product-name {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
width: 39%;
|
width: 39%;
|
||||||
|
font-family: $font-family-secundary;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
padding-top: 30px;
|
padding-top: 30px;
|
||||||
|
color: $color-black2;
|
||||||
|
|
||||||
@include mq(lg, max) {
|
@include mq(lg, max) {
|
||||||
width: 250px;
|
width: 250px;
|
||||||
@ -344,7 +358,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
&:before {
|
&:before {
|
||||||
content: "+";
|
content: "+";
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
background-color: #00C8FF;
|
background-color: $color-blue2;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -373,11 +387,17 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
span {
|
span {
|
||||||
|
font-family: $font-family-secundary;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
|
|
||||||
|
&.total-selling-price{
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 19px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -428,12 +448,12 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.srp-main-title {
|
.srp-main-title {
|
||||||
margin: 32px 0 12px;
|
margin: 33px 0 12px;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
line-height: 28px;
|
line-height: 33px;
|
||||||
color: $color-gray2;
|
color: $color-black2;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -442,16 +462,16 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
|
|
||||||
.srp-description {
|
.srp-description {
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
font-size: 12px;
|
font-size: 14px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
margin: 0 0 10px;
|
margin: 0 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.shp-open-options {
|
button.shp-open-options {
|
||||||
background-color: $color-gray5;
|
background-color: $color-gray7;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 8px;
|
||||||
color: $color-gray2;
|
color: $color-black2;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
@ -460,6 +480,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
padding: 12px 40px;
|
padding: 12px 40px;
|
||||||
transition: all 0.2s linear;
|
transition: all 0.2s linear;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($color-gray5, 5);
|
background-color: lighten($color-gray5, 5);
|
||||||
@ -488,26 +509,27 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.srp-pickup-my-location__button {
|
.srp-pickup-my-location__button {
|
||||||
background-color: $color-blue;
|
background-color: $color-blue2;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 8px;
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
outline: none;
|
outline: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 500;
|
font-weight: 700;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 19px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
|
|
||||||
&:hover {
|
// &:hover {
|
||||||
background-color: lighten($color-black, 5);
|
// background-color: lighten($color-black, 5);
|
||||||
}
|
// }
|
||||||
|
|
||||||
&:active {
|
// &:active {
|
||||||
background-color: darken($color-black, 5);
|
// background-color: darken($color-black, 5);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -528,12 +550,16 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__current {
|
&__current {
|
||||||
border: 1px solid $color-black;
|
border: 1px solid $color-black2;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
|
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.blue {
|
.blue {
|
||||||
color: $color-black;
|
color: $color-black2 !important;
|
||||||
|
}
|
||||||
|
.gray{
|
||||||
|
color: $color-gray8;
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
@ -552,8 +578,8 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 16px;
|
||||||
color: $color-black;
|
color: $color-black2;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -569,43 +595,47 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
|
|
||||||
& ~ button {
|
& ~ button {
|
||||||
background-color: $color-blue;
|
background-color: $color-blue2;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 8px;
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
|
font-family: $font-family;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
line-height: 19px;
|
||||||
|
font-weight: 700;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 0.05px;
|
||||||
outline: none;
|
outline: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: -150px;
|
right: -150px;
|
||||||
top: 26px;
|
top: 26px;
|
||||||
transition: all 0.2s linear;
|
transition: all 0.2s linear;
|
||||||
width: 96px;
|
width: 100px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
&:hover {
|
// &:hover {
|
||||||
background-color: lighten($color-black, 5);
|
// background-color: lighten($color-black, 5);
|
||||||
}
|
// }
|
||||||
|
|
||||||
&:active {
|
// &:active {
|
||||||
background-color: darken($color-black, 5);
|
// background-color: darken($color-black, 5);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
small a {
|
small a {
|
||||||
font-family: $font-family;
|
font-family: $font-family-secundary;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 0px;
|
font-size: 0px;
|
||||||
line-height: 0px;
|
line-height: 0px;
|
||||||
color: $color-black;
|
color: $color-black2;
|
||||||
margin-top: 7px;
|
margin-top: 7px;
|
||||||
|
|
||||||
&::after{
|
&::after{
|
||||||
content: "Não sei meu código postal";
|
content: "Não sei meu código postal";
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
line-height: 12px;
|
line-height: 12px;
|
||||||
|
font-weight: 400;
|
||||||
|
|
||||||
:hover{
|
:hover{
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
@ -696,12 +726,12 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
span {
|
span {
|
||||||
font-family: $font-family;
|
font-family: $font-family-secundary;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
color: $color-black;
|
color: $color-black2;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -714,6 +744,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
.coupon-column {
|
.coupon-column {
|
||||||
.coupon {
|
.coupon {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.link-coupon-add {
|
.link-coupon-add {
|
||||||
@ -721,7 +752,9 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
.coupon-label{
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
.coupon-label label {
|
.coupon-label label {
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
@ -731,6 +764,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
cursor: none;
|
cursor: none;
|
||||||
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coupon-fields {
|
.coupon-fields {
|
||||||
@ -750,7 +784,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
border: 2px solid $color-gray3;
|
border: 1px solid $color-gray5;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
color: $color-gray4;
|
color: $color-gray4;
|
||||||
@ -768,13 +802,16 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
background: blue;
|
background: $color-blue2;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
color: $color-white;
|
color: $color-black2;
|
||||||
font-size: 12px;
|
font-family: $font-family;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 19px;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 0.05px;
|
||||||
margin-left: 6px;
|
margin-left: 6px;
|
||||||
outline: none;
|
outline: none;
|
||||||
transition: all 0.2s linear;
|
transition: all 0.2s linear;
|
||||||
@ -785,13 +822,13 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
width: 138px;
|
width: 138px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
// &:hover {
|
||||||
background-color: lighten($color-black, 5);
|
// background-color: lighten($color-black, 5);
|
||||||
}
|
// }
|
||||||
|
|
||||||
&:active {
|
// &:active {
|
||||||
background-color: darken($color-black, 5);
|
// background-color: darken($color-black, 5);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -817,6 +854,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
|
|
||||||
&.info {
|
&.info {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
font-family: $font-family-secundary;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.monetary {
|
&.monetary {
|
||||||
@ -833,49 +871,51 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
padding-top: 30px;
|
// padding-top: 30px;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
td.info{
|
td.info{
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 25px;
|
line-height: 25px;
|
||||||
padding-left: 17px;
|
// padding-left: 17px;
|
||||||
|
font-family: $font-family;
|
||||||
}
|
}
|
||||||
td.monetary{
|
td.monetary{
|
||||||
padding-right: 17px;
|
padding-right: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.Items{
|
.Items{
|
||||||
border-top: 1px solid;
|
// border-top: 1px solid;
|
||||||
border-bottom: 1px solid;
|
border-bottom: 1px solid;
|
||||||
.info{
|
.info{
|
||||||
padding: 26px 0 !important;
|
padding: 20px 0 10px 0 ;
|
||||||
padding-left: 17px !important;
|
padding-left: 0;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
.monetary{
|
.monetary{
|
||||||
padding-right: 17px !important;
|
padding-right: 0px ;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.Discounts{
|
.Discounts{
|
||||||
border-bottom: 1px solid;
|
border-bottom: 1px solid;
|
||||||
.info{
|
.info{
|
||||||
padding: 26px 0 !important;
|
padding: 20px 0 10px 0 ;
|
||||||
padding-left: 17px !important;
|
padding-left: 0;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
.monetary{
|
.monetary{
|
||||||
padding-right: 17px !important;
|
padding-right: 0px ;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.coupon-data{
|
.coupon-data{
|
||||||
display: block !important;
|
display: block !important;
|
||||||
|
margin-top: 33px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-links-bottom {
|
.cart-links-bottom {
|
||||||
@ -905,36 +945,37 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-family: $font-family;
|
font-family: $font-family-secundary;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
color: $color-black;
|
color: $color-black2;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-place-order-wrapper {
|
.btn-place-order-wrapper {
|
||||||
a {
|
a {
|
||||||
background: $color-blue;
|
background: $color-blue2;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 8px;
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 0;
|
font-size: 0;
|
||||||
transition: ease-in 0.22s all;
|
transition: ease-in 0.22s all;
|
||||||
padding: 12px 19px;
|
padding: 12px 19px;
|
||||||
|
|
||||||
&:hover {
|
// &:hover {
|
||||||
background-color: darken($color-green, 5);
|
// background-color: darken($color-green, 5);
|
||||||
}
|
// }
|
||||||
|
|
||||||
&:after {
|
&:after {
|
||||||
content: "finalizar compra";
|
content: "finalizar compra";
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 13px;
|
font-size: 14px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
color: red;
|
color: $color-black2;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
|
@ -20,8 +20,11 @@
|
|||||||
|
|
||||||
&::after{
|
&::after{
|
||||||
content: "SEU CARRINHO ESTÁ VAZIO";
|
content: "SEU CARRINHO ESTÁ VAZIO";
|
||||||
|
font-family: $font-family;
|
||||||
|
font-weight: 700;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
line-height: 33px;
|
line-height: 33px;
|
||||||
|
color: $color-black2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -29,16 +32,16 @@
|
|||||||
.link-choose-products {
|
.link-choose-products {
|
||||||
border: 1px solid $color-black;
|
border: 1px solid $color-black;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
// transition: ease-in 0.22s all;
|
transition: ease-in 0.22s all;
|
||||||
outline: none;
|
outline: none;
|
||||||
font-family: $font-family;
|
font-family: $font-family-secundary;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 500;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 0px;
|
||||||
line-height: 16px;
|
line-height: 0px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
color: $color-black;
|
color: $color-black2;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin: 0 0 0 0;
|
margin: 0 0 0 0;
|
||||||
width: 31.74%;
|
width: 31.74%;
|
||||||
@ -47,6 +50,17 @@
|
|||||||
&:hover {
|
&:hover {
|
||||||
background: lighten($color-white, 5);
|
background: lighten($color-white, 5);
|
||||||
}
|
}
|
||||||
|
&::before{
|
||||||
|
content: "Continuar comprando";
|
||||||
|
font-family: $font-family-secundary;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
text-align: center;
|
||||||
|
color: $color-black2;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ html {
|
|||||||
footer .footerCheckout__wrapper {
|
footer .footerCheckout__wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: auto auto 0 auto;
|
margin: auto auto 0 auto;
|
||||||
border-top: 1px solid black;
|
border-top: 1px solid $color-black2;
|
||||||
.container{
|
.container{
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -24,7 +24,7 @@ header {
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
header{
|
header{
|
||||||
border-bottom: 1px solid black;
|
border-bottom: 1px solid $color-black2;
|
||||||
padding: 29px 0;
|
padding: 29px 0;
|
||||||
}
|
}
|
||||||
.headerCheckout__safeBuy{
|
.headerCheckout__safeBuy{
|
||||||
@ -57,6 +57,128 @@ body {
|
|||||||
width: 16%;
|
width: 16%;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
}
|
}
|
||||||
|
#ship-postalCode{
|
||||||
|
border: 1px solid $color-gray8;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
#find-pickups-manualy-button-denied{
|
||||||
|
color: $color-black2;
|
||||||
|
outline: none;
|
||||||
|
&:hover{
|
||||||
|
background: $color-white;
|
||||||
|
color: $color-black2;
|
||||||
|
}
|
||||||
|
&:active{
|
||||||
|
background: $color-white;
|
||||||
|
color: $color-black2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#payment-data-submit{
|
||||||
|
i.icon-lock{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tbody.totalizers-list{
|
||||||
|
tr.srp-summary-result.hide{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
div.cart-fixed.cart-fixed-transition.affix-top{
|
||||||
|
.Items{
|
||||||
|
border-top: 1px solid $color-gray10;
|
||||||
|
border-bottom: 1px solid $color-gray10;
|
||||||
|
.info{
|
||||||
|
padding: 26px 0 !important;
|
||||||
|
padding-left: 17px !important;
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
.monetary{
|
||||||
|
padding-right: 17px !important;
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.Discounts{
|
||||||
|
border-bottom: 1px solid $color-gray10;
|
||||||
|
.info{
|
||||||
|
padding: 26px 0 !important;
|
||||||
|
padding-left: 17px !important;
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
.monetary{
|
||||||
|
padding-right: 17px !important;
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tfoot {
|
||||||
|
td.info,
|
||||||
|
td.monetary {
|
||||||
|
padding-top: 30px;
|
||||||
|
padding-bottom: 0px;
|
||||||
|
}
|
||||||
|
td.info{
|
||||||
|
padding-left: 17px;
|
||||||
|
}
|
||||||
|
td.monetary{
|
||||||
|
padding-right: 17px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
div.span5.totalizers.summary-totalizers.cart-totalizers.pull-right{
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
button#payment-data-submit.submit.btn.btn-success.btn-large.btn-block{
|
||||||
|
margin-top: 47px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
div#client-profile-data.span6.client-profile-data{
|
||||||
|
.client-profile-email{
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
.client-profile-summary{
|
||||||
|
span{
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
span{
|
||||||
|
font-size: 0;
|
||||||
|
line-height: 0;
|
||||||
|
&::after{
|
||||||
|
content: "Identificação";
|
||||||
|
font-family: $font-family-secundary;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: $color-black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
span.accordion-toggle.collapsed,
|
||||||
|
span.email,
|
||||||
|
span.name,
|
||||||
|
span.tel,
|
||||||
|
span.newsletter-text{
|
||||||
|
&::after{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
span.email,
|
||||||
|
span.name,
|
||||||
|
span.tel{
|
||||||
|
font-family: $font-family;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: $color-gray2;
|
||||||
|
}
|
||||||
|
span.newsletter-text{
|
||||||
|
font-family: $font-family;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: $color-gray9;
|
||||||
|
}
|
||||||
|
}
|
||||||
// a#payment-group-SPEIPaymentGroup.payment-group-item,
|
// a#payment-group-SPEIPaymentGroup.payment-group-item,
|
||||||
// a#payment-group-MercadoPagoPaymentGroup.payment-group-item,
|
// a#payment-group-MercadoPagoPaymentGroup.payment-group-item,
|
||||||
// a#payment-group-PSEPaymentGroup.payment-group-item,
|
// a#payment-group-PSEPaymentGroup.payment-group-item,
|
||||||
@ -116,13 +238,9 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.emailInfo h3 {
|
|
||||||
color: $color-black !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#cart-title,
|
#cart-title,
|
||||||
#orderform-title {
|
#orderform-title {
|
||||||
color: red;
|
color: $color-black2;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
@ -140,7 +258,7 @@ body {
|
|||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
line-height: 33px;
|
line-height: 33px;
|
||||||
width: max-content;
|
width: max-content;
|
||||||
color: #292929;
|
color: $color-black;
|
||||||
margin: 16px 0;
|
margin: 16px 0;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
|
|
||||||
|
@ -25,7 +25,6 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
/* border: 1px solid violet; */
|
|
||||||
}
|
}
|
||||||
.p-text{
|
.p-text{
|
||||||
width: max-content;
|
width: max-content;
|
||||||
@ -33,13 +32,15 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
margin-bottom: 9px;
|
margin-bottom: 9px;
|
||||||
|
font-family: $font-family-secundary;
|
||||||
|
color: $color-black2;
|
||||||
}
|
}
|
||||||
.p-bola{
|
.p-bola{
|
||||||
border: 1px solid black;
|
border: 1px solid $color-black2;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 10px;
|
width: 10px;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
background-color: white;
|
background-color: $color-white;
|
||||||
}
|
}
|
||||||
.div-itens{
|
.div-itens{
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -100,10 +101,10 @@
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
color: $color-gray;
|
color: $color-black;
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
i {
|
||||||
|
@ -6,22 +6,34 @@ $font-family-secundary:"Tenor Sans", sans-serif;
|
|||||||
|
|
||||||
/* Colors */
|
/* Colors */
|
||||||
$color-black: #292929;
|
$color-black: #292929;
|
||||||
$color-black: #000000;
|
$color-black2: #000000;
|
||||||
;
|
|
||||||
|
|
||||||
$color-white: #fff;
|
$color-white: #fff;
|
||||||
|
|
||||||
|
|
||||||
|
$color-purple: #41115D;
|
||||||
|
|
||||||
|
|
||||||
$color-gray: #6c6c6c;
|
$color-gray: #6c6c6c;
|
||||||
$color-gray2: #7d7d7d;
|
$color-gray2: #7d7d7d;
|
||||||
$color-gray3: #f0f0f0;
|
$color-gray3: #f0f0f0;
|
||||||
$color-gray4: #8d8d8d;
|
$color-gray4: #8d8d8d;
|
||||||
$color-gray5: #e5e5e5;
|
$color-gray5: #e5e5e5;
|
||||||
$color-gray6: #58595B;
|
$color-gray6: #58595B;
|
||||||
|
$color-gray7: #EDEDED;
|
||||||
|
$color-gray8: #C4C4C4;
|
||||||
|
$color-gray9: #808080;
|
||||||
|
$color-gray10: #E0E0E0;
|
||||||
|
$color-gray11: #828282;
|
||||||
|
|
||||||
$color-blue: #4267b2;
|
$color-blue: #4267b2;
|
||||||
|
$color-blue2: #00C8FF;
|
||||||
|
|
||||||
$color-green: #4caf50;
|
$color-green: #4caf50;
|
||||||
|
$color-green2: #298541;
|
||||||
|
|
||||||
|
$color-orange: #F15A31;
|
||||||
|
|
||||||
/* Grid breakpoints */
|
/* Grid breakpoints */
|
||||||
$grid-breakpoints: (
|
$grid-breakpoints: (
|
||||||
|
Loading…
Reference in New Issue
Block a user