42 lines
752 B
CSS
42 lines
752 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 {
|
||
|
padding: 0 40px 16px;
|
||
|
}
|
||
|
.container .link,
|
||
|
.container .term {
|
||
|
font-size: 14px;
|
||
|
line-height: 19px;
|
||
|
color: #929292;
|
||
|
padding: 2px 12px;
|
||
|
}
|
||
|
.container .link:first-child,
|
||
|
.container .term:first-child {
|
||
|
padding: 0;
|
||
|
margin-right: 12px;
|
||
|
}
|
||
|
.container .arrow {
|
||
|
padding: 0;
|
||
|
}
|
||
|
.container .homeLink {
|
||
|
position: relative;
|
||
|
}
|
||
|
.container .homeLink .homeIcon {
|
||
|
visibility: hidden;
|
||
|
width: 37.35px;
|
||
|
height: 19px;
|
||
|
}
|
||
|
.container .homeLink::after {
|
||
|
content: "Home";
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 0;
|
||
|
transform: translateY(-50%);
|
||
|
}
|