61 lines
1.2 KiB
CSS
61 lines
1.2 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 */
|
|
.container--see-also {
|
|
justify-content: center;
|
|
}
|
|
.container--see-also .headingLevel4 {
|
|
margin: 16px 0 32px;
|
|
font-size: 24px;
|
|
line-height: 38px;
|
|
color: #575757;
|
|
}
|
|
@media only screen and (max-width: 1024px) {
|
|
.container--see-also .headingLevel4 {
|
|
margin-bottom: 24px;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 767px) {
|
|
.container--see-also .headingLevel4 {
|
|
margin-bottom: 16px;
|
|
padding: 0 40px;
|
|
text-align: center;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
/* ----- NEWSLETTER ----- */
|
|
.container--newsletter-title {
|
|
justify-content: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
.container--newsletter-title .paragraph {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
line-height: 38px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.container--newsletter-subtitle {
|
|
justify-content: center;
|
|
margin-bottom: 16px;
|
|
}
|
|
.container--newsletter-subtitle .paragraph {
|
|
margin: 0;
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
text-align: center;
|
|
color: #929292;
|
|
}
|
|
@media only screen and (max-width: 1024px) {
|
|
.container--newsletter-subtitle .paragraph {
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
} |