37 lines
622 B
SCSS
37 lines
622 B
SCSS
// Título da prateleira
|
|
|
|
.paragraph--carousel-title {
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 38px;
|
|
color: $gray-600;
|
|
margin: 0;
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
padding-top: 16px;
|
|
}
|
|
|
|
@media screen and (min-width: 280px) and (max-width: 768px) {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
// Título CEP
|
|
|
|
.wrapper--labelCep {
|
|
font-family: "Open Sans";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: $gray-500;
|
|
|
|
.paragraph--labelCep {
|
|
margin: 0;
|
|
|
|
@media screen and (min-width: 280px) and (max-width: 768px) {
|
|
margin: 16px 0 0;
|
|
}
|
|
}
|
|
}
|