2023-01-26 10:16:46 +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 */
|
|
|
|
/* Grid breakpoints */
|
|
|
|
.container {
|
2023-02-02 23:03:37 +00:00
|
|
|
width: 94.4444%;
|
2023-02-02 23:13:30 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0 0 16px 0;
|
2023-01-26 10:16:46 +00:00
|
|
|
}
|
2023-02-07 18:41:49 +00:00
|
|
|
@media screen and (min-width: 1920px) {
|
|
|
|
.container {
|
2023-02-08 04:00:20 +00:00
|
|
|
width: 71.875%;
|
2023-02-07 18:41:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and ((min-width: 769) and (max-width: 1024px)) {
|
|
|
|
.container {
|
|
|
|
width: 92.1875%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.container {
|
|
|
|
width: 79%;
|
|
|
|
}
|
|
|
|
}
|
2023-01-26 10:16:46 +00:00
|
|
|
.container .homeIcon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.container .homeLink::after {
|
|
|
|
content: "Home";
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 19px;
|
|
|
|
color: #929292;
|
|
|
|
}
|
|
|
|
.container .link,
|
|
|
|
.container .term {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 19px;
|
|
|
|
}
|
2023-01-31 11:16:49 +00:00
|
|
|
.container .link,
|
2023-01-26 10:16:46 +00:00
|
|
|
.container .term {
|
2023-01-31 11:16:49 +00:00
|
|
|
color: #929292;
|
2023-02-08 21:28:49 +00:00
|
|
|
}
|
|
|
|
.container .link:hover,
|
|
|
|
.container .term:hover {
|
|
|
|
color: #808080;
|
|
|
|
}
|
|
|
|
.container .link:active,
|
|
|
|
.container .term:active {
|
|
|
|
color: #929292;
|
2023-01-26 10:16:46 +00:00
|
|
|
}
|