challenge-vtex-io-saulo-klein/styles/css/vtex.product-price.css

89 lines
1.9 KiB
CSS
Raw Normal View History

/*
0 - 600PX: Phone
600 - 900px: Table portrait
900 - 1200px: Tablet landscape
[1200 - 1800] is where our nortal styles apply
1800px + : Big desktop
*/
/* Media Query M3 */
2023-02-03 00:37:40 +00:00
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700&display=swap");
/* Grid breakpoints */
.sellingPrice--hasListPrice {
2023-02-09 10:47:26 +00:00
margin: 24px 0 0;
2023-02-03 00:37:40 +00:00
font-weight: 700;
font-size: 25px;
line-height: 38px;
}
.installments--sellingInfo {
font-size: 0;
}
.installments--sellingInfo .installmentsNumber,
.installments--sellingInfo .installmentValue {
font-weight: 700;
font-size: 16px;
line-height: 22px;
color: #929292;
}
.installments--sellingInfo .installmentsNumber::after {
content: " x ";
font-weight: 700;
font-size: 16px;
line-height: 22px;
}
.installments--sellingInfo .installmentValue::before, .installments--sellingInfo .installmentValue::after {
content: "de ";
font-weight: 400;
font-size: 16px;
line-height: 22px;
}
.installments--sellingInfo .installmentValue::after {
content: " sem juros";
2023-02-10 15:23:49 +00:00
}
.listPrice--summary {
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: #bababa;
text-decoration: line-through;
}
@media only screen and (max-width: 1024px) {
.listPrice--summary {
font-size: 12px;
line-height: 16px;
}
}
.listPrice--summary::before, .listPrice--summary::after {
font-weight: 400;
font-size: 14px;
line-height: 19px;
}
@media only screen and (max-width: 1024px) {
.listPrice--summary::before, .listPrice--summary::after {
font-size: 12px;
line-height: 16px;
}
}
.listPrice--summary::before {
content: "de ";
}
.listPrice--summary::after {
content: " por";
}
.listPrice--summary .listPriceValue {
text-decoration: none;
}
.sellingPrice--summary--hasListPrice {
margin: 8px 0;
font-weight: 700;
font-size: 24px;
line-height: 33px;
}
@media only screen and (max-width: 1024px) {
.sellingPrice--summary--hasListPrice {
font-size: 18px;
line-height: 25px;
}
2023-02-03 00:37:40 +00:00
}