31 lines
665 B
CSS
31 lines
665 B
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: 639px) {
|
|
.container--see-also .headingLevel4 {
|
|
margin-bottom: 16px;
|
|
padding: 0 40px;
|
|
text-align: center;
|
|
font-size: 20px;
|
|
}
|
|
} |