2023-01-20 17:48:56 +00:00
|
|
|
/*
|
|
|
|
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 */
|
2023-01-24 01:19:28 +00:00
|
|
|
/* Grid breakpoints */
|
2023-01-24 02:10:03 +00:00
|
|
|
.container {
|
2023-01-24 19:55:58 +00:00
|
|
|
margin: 6px 36px;
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 112.5em) {
|
|
|
|
.container {
|
|
|
|
margin: 6px 356px;
|
|
|
|
}
|
2023-01-24 02:10:03 +00:00
|
|
|
}
|
|
|
|
.container .link,
|
|
|
|
.container .term {
|
2023-01-24 01:19:28 +00:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 19px;
|
2023-01-24 02:10:03 +00:00
|
|
|
color: #929292;
|
|
|
|
}
|
|
|
|
.container .homeIcon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.container .link::after {
|
|
|
|
content: "Home";
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 19px;
|
|
|
|
color: #929292;
|
|
|
|
}
|
|
|
|
.container .link--1::after,
|
|
|
|
.container .link--2::after {
|
|
|
|
display: none;
|
2023-01-24 01:19:28 +00:00
|
|
|
}
|