forked from M3-Academy/challenge-vtex-io
77 lines
1.5 KiB
CSS
77 lines
1.5 KiB
CSS
/*
|
|
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 */
|
|
/* Grid breakpoints */
|
|
.sellingPrice {
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-size: 25px;
|
|
line-height: 38px;
|
|
color: #000000;
|
|
}
|
|
|
|
.flexRowContent {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.listPriceValue {
|
|
text-decoration-line: line-through;
|
|
text-decoration-color: #bababa;
|
|
}
|
|
.listPriceValue::before {
|
|
font-family: "Open Sans";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: #bababa;
|
|
line-height: 19px;
|
|
content: "de";
|
|
margin-right: 6px;
|
|
}
|
|
.listPriceValue::after {
|
|
font-family: "Open Sans";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: #bababa;
|
|
line-height: 19px;
|
|
content: "por";
|
|
margin-left: 5px;
|
|
}
|
|
.listPriceValue .currencyCode,
|
|
.listPriceValue .currencyLiteral,
|
|
.listPriceValue .currencyInteger,
|
|
.listPriceValue .currencyDecimal,
|
|
.listPriceValue .currencyFraction {
|
|
font-family: "Open Sans";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: #bababa;
|
|
}
|
|
.listPriceValue .currencyGroup {
|
|
color: #BABABA;
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
.listPrice {
|
|
height: 19px;
|
|
}
|
|
.listPriceValue .currencyCode,
|
|
.listPriceValue .currencyLiteral,
|
|
.listPriceValue .currencyInteger,
|
|
.listPriceValue .currencyFraction {
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
}
|
|
.sellingPrice {
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
}
|
|
} |