forked from M3-Academy/m3-academy-template-checkout
feat: adiciona css checkout com produto 1280px
This commit is contained in:
parent
0218b0c62b
commit
7476d452b2
@ -17,10 +17,10 @@
|
|||||||
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;
|
padding: 16px 16px;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin: 0px 0 25px 0;
|
margin: 0px 0 25px 0;
|
||||||
@ -28,6 +28,10 @@
|
|||||||
border-right: none;
|
border-right: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.product {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.cart-fixed.affix {
|
.cart-fixed.affix {
|
||||||
position: relative !important;
|
position: relative !important;
|
||||||
@ -109,16 +113,44 @@
|
|||||||
background-color: $color-white;
|
background-color: $color-white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table {
|
||||||
|
th,
|
||||||
|
td {
|
||||||
|
padding: 0;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.cart-items {
|
.cart-items {
|
||||||
|
.shipping-date {
|
||||||
|
font-size: 0;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: "Frete";
|
||||||
|
font-size: 14px;
|
||||||
|
position: absolute;
|
||||||
|
left: 2.5%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.product-item {
|
.product-item {
|
||||||
padding: 16px 0;
|
padding: 16px 0;
|
||||||
|
|
||||||
|
.shipping-estimate-date {
|
||||||
|
color: $color-gray6;
|
||||||
|
|
||||||
|
@media (min-width: 1025px) and (max-width: 1105px) {
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
color: $color-black;
|
position: relative;
|
||||||
padding: 0 0 16px;
|
color: $color-gray2;
|
||||||
|
font-family: "Tenor Sans";
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: bold;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
|
|
||||||
@ -138,11 +170,15 @@
|
|||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
width: 72px;
|
width: 72px;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
td.product-image {
|
||||||
|
width: 6.062%;
|
||||||
|
height: 60px;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
height: 60px;
|
min-width: 100%;
|
||||||
max-width: 100%;
|
min-height: 100%;
|
||||||
width: auto;
|
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
height: 72px;
|
height: 72px;
|
||||||
@ -159,12 +195,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: $color-blue;
|
color: $color-black !important;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
transition: ease-in 0.22s all;
|
transition: ease-in 0.22s all;
|
||||||
|
margin-left: 11px;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: darken($color-blue, 10);
|
color: darken($color-blue, 10);
|
||||||
@ -182,17 +219,51 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.product-name {
|
||||||
|
@media (min-width: 1025px) and (max-width: 1120px) {
|
||||||
|
width: 35%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
td.shipping-date {
|
td.shipping-date {
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
|
text-align: left;
|
||||||
|
|
||||||
|
@media (min-width: 1025px) and (max-width: 1105px) {
|
||||||
|
width: 7%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th.product-price {
|
||||||
|
margin-bottom: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.product-price {
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.product-price {
|
.product-price {
|
||||||
|
font-size: 0;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: "Unidade";
|
||||||
|
font-size: 14px;
|
||||||
|
position: absolute;
|
||||||
|
left: 2.5%;
|
||||||
|
margin-left: 35px;
|
||||||
|
}
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
min-width: 78px;
|
min-width: 78px;
|
||||||
@ -204,10 +275,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
span.list-price {
|
span.list-price {
|
||||||
color: $color-gray2;
|
color: $color-gray7;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
text-decoration-line: line-through;
|
text-decoration-line: line-through;
|
||||||
|
position: absolute;
|
||||||
|
margin-left: 35px;
|
||||||
|
left: 2.5%;
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
@ -219,18 +293,23 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th.quantity {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
td.quantity {
|
td.quantity {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border: 1px solid $color-gray3;
|
border: 1px solid $color-gray3;
|
||||||
border-radius: 0;
|
border-radius: 8px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin: 6px auto 0;
|
margin-top: 10px;
|
||||||
max-height: 38px;
|
height: 34px;
|
||||||
max-width: 118px;
|
max-width: 118px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: max-content !important;
|
width: 64.91% !important;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
margin-left: 84px !important;
|
margin-left: 84px !important;
|
||||||
@ -238,11 +317,9 @@
|
|||||||
|
|
||||||
input {
|
input {
|
||||||
background-color: $color-white;
|
background-color: $color-white;
|
||||||
border: 1px solid $color-gray3;
|
border: none;
|
||||||
border-radius: 0;
|
|
||||||
border-width: 0 1px;
|
|
||||||
display: block;
|
display: block;
|
||||||
max-height: 38px;
|
height: 16px;
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
padding: 8px 0;
|
padding: 8px 0;
|
||||||
width: 38px;
|
width: 38px;
|
||||||
@ -254,27 +331,29 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-plus-sign,
|
.icon-plus-sign {
|
||||||
|
&::before {
|
||||||
|
color: $color-blue;
|
||||||
|
font-weight: 500;
|
||||||
|
background: $color-white;
|
||||||
|
border-radius: 100px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-size: 20px;
|
||||||
|
position: absolute;
|
||||||
|
top: 20%;
|
||||||
|
right: 10%;
|
||||||
|
}
|
||||||
|
}
|
||||||
.icon-minus-sign {
|
.icon-minus-sign {
|
||||||
&::before {
|
&::before {
|
||||||
color: $color-black;
|
color: $color-blue;
|
||||||
display: block;
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
padding: 1px 12px;
|
background: $color-white;
|
||||||
}
|
border-radius: 100px;
|
||||||
}
|
font-size: 20px;
|
||||||
|
position: absolute;
|
||||||
.icon-minus-sign {
|
top: 20%;
|
||||||
&:before {
|
left: 10%;
|
||||||
content: "-";
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon-plus-sign {
|
|
||||||
&:before {
|
|
||||||
content: "+";
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -294,8 +373,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.quantity-price,
|
.quantity-price {
|
||||||
.best-price {
|
text-align: left;
|
||||||
|
|
||||||
.icon-question-sign {
|
.icon-question-sign {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -306,6 +386,42 @@
|
|||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.total-selling-price {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: $color-gray2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.best-price {
|
||||||
|
.icon-question-sign {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.new-product-price-label {
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: $color-black;
|
||||||
|
position: absolute;
|
||||||
|
left: 2.5%;
|
||||||
|
margin-left: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.new-product-price {
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: $color-black;
|
||||||
|
position: absolute;
|
||||||
|
left: 2.5%;
|
||||||
|
margin-left: 65px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.quantity-price {
|
.quantity-price {
|
||||||
@ -319,7 +435,7 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
.icon::before {
|
.icon::before {
|
||||||
color: $color-gray4;
|
color: $color-gray8;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
@ -368,32 +484,33 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.srp-description {
|
.srp-description {
|
||||||
color: $color-gray2;
|
color: $color-gray9;
|
||||||
font-size: 12px;
|
font-size: 14px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
margin: 0 0 12px;
|
margin: 0 0 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.shp-open-options {
|
button.shp-open-options {
|
||||||
background-color: $color-gray5;
|
background-color: $color-gray10;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 8px;
|
||||||
color: $color-gray2;
|
color: $color-black;
|
||||||
font-size: 16px;
|
font-size: 14px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
outline: none;
|
outline: none;
|
||||||
padding: 12px 40px;
|
height: 44px;
|
||||||
|
width: 56.077%;
|
||||||
transition: all 0.2s linear;
|
transition: all 0.2s linear;
|
||||||
|
|
||||||
&:hover {
|
// &:hover {
|
||||||
background-color: lighten($color-gray5, 5);
|
// background-color: lighten($color-gray5, 5);
|
||||||
}
|
// }
|
||||||
|
|
||||||
&:active {
|
// &:active {
|
||||||
background-color: darken($color-gray5, 5);
|
// background-color: darken($color-gray5, 5);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -602,17 +719,16 @@
|
|||||||
#cart-link-coupon-add {
|
#cart-link-coupon-add {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
span {
|
span {
|
||||||
font-family: $font-family;
|
font-family: "Tenor Sans";
|
||||||
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-blue;
|
color: $color-black;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -738,10 +854,10 @@
|
|||||||
td.info,
|
td.info,
|
||||||
td.monetary {
|
td.monetary {
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 700;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 21px;
|
line-height: 25px;
|
||||||
color: $color-black;
|
color: $color-gray2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -751,7 +867,7 @@
|
|||||||
.cart-links-bottom {
|
.cart-links-bottom {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 343px;
|
width: 354px;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
@ -762,7 +878,6 @@
|
|||||||
|
|
||||||
@include mq(md, min) {
|
@include mq(md, min) {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding-bottom: 50px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.link-choose-more-products-wrapper {
|
.link-choose-more-products-wrapper {
|
||||||
@ -775,36 +890,37 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-family: $font-family;
|
font-family: "Tenor Sans";
|
||||||
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-blue;
|
color: $color-black;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-place-order-wrapper {
|
.btn-place-order-wrapper {
|
||||||
a {
|
a {
|
||||||
background: $color-green;
|
background: $color-blue;
|
||||||
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: 11px 0;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
&: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: "Open Sans";
|
||||||
font-weight: 500;
|
font-weight: 700;
|
||||||
font-size: 13px;
|
font-size: 14px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
color: $color-white;
|
color: $color-black;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
|
@ -70,12 +70,13 @@ body {
|
|||||||
#cart-title,
|
#cart-title,
|
||||||
#orderform-title {
|
#orderform-title {
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
font-family: $font-family;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 36px;
|
|
||||||
line-height: 42px;
|
|
||||||
margin: 40px 0 30px;
|
margin: 40px 0 30px;
|
||||||
letter-spacing: 0.1em;
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
|
@ -15,6 +15,10 @@ $color-gray3: #f0f0f0;
|
|||||||
$color-gray4: #8d8d8d;
|
$color-gray4: #8d8d8d;
|
||||||
$color-gray5: #e5e5e5;
|
$color-gray5: #e5e5e5;
|
||||||
$color-gray6: #858585;
|
$color-gray6: #858585;
|
||||||
|
$color-gray7: #989898;
|
||||||
|
$color-gray8: #c4c4c4;
|
||||||
|
$color-gray9: #7d7d7d;
|
||||||
|
$color-gray10: #ededed;
|
||||||
|
|
||||||
$color-blue: #00c8ff;
|
$color-blue: #00c8ff;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user