79 lines
1.7 KiB
CSS
79 lines
1.7 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 */
|
|
/*
|
|
PRATELEIRA DE PRODUTO
|
|
*/
|
|
.paragraph--title-prateleira {
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 38px;
|
|
margin: 0 0 32px;
|
|
color: #575757;
|
|
}
|
|
@media only screen and (max-width: 1024px) {
|
|
.paragraph--title-prateleira {
|
|
margin: 0 0 24px;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 768px) {
|
|
.paragraph--title-prateleira {
|
|
margin: 0 0 16px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
NEWSLETTER
|
|
*/
|
|
.container--subscriber-newsletter {
|
|
justify-content: center;
|
|
width: 100%;
|
|
margin: 32px 0 16px 0;
|
|
padding: 0 40px;
|
|
}
|
|
@media only screen and (max-width: 1024px) {
|
|
.container--subscriber-newsletter {
|
|
margin: 64px 0 16px 0;
|
|
}
|
|
}
|
|
.container--subscriber-newsletter .wrapper--subscriber-newsletter {
|
|
align-items: center;
|
|
}
|
|
.container--subscriber-newsletter .wrapper--subscriber-newsletter .paragraph--subscriber-newsletter {
|
|
margin: 0;
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 38px;
|
|
color: #fff;
|
|
}
|
|
|
|
.container--offer-newsletter {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
padding: 0 40px;
|
|
}
|
|
.container--offer-newsletter .wrapper--offer-newsletter {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.container--offer-newsletter .wrapper--offer-newsletter .paragraph--offer-newsletter {
|
|
margin: 0;
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
color: #929292;
|
|
}
|
|
@media only screen and (max-width: 1024px) {
|
|
.container--offer-newsletter .wrapper--offer-newsletter .paragraph--offer-newsletter {
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
} |