42 lines
620 B
SCSS
42 lines
620 B
SCSS
.container {
|
|
width: 94.4444%;
|
|
margin: 0 auto;
|
|
padding: 0 0 16px 0;
|
|
|
|
@media screen and (min-width: 1920px) {
|
|
width: 71.2%;
|
|
}
|
|
@media screen and ((min-width: 769) and (max-width: 1024px)) {
|
|
width: 92.1875%;
|
|
}
|
|
@media screen and (max-width: 768px) {
|
|
width: 79%;
|
|
}
|
|
|
|
.homeIcon {
|
|
display: none;
|
|
}
|
|
|
|
.homeLink {
|
|
&::after {
|
|
content: "Home";
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: #929292;
|
|
}
|
|
}
|
|
|
|
.link,
|
|
.term {
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
}
|
|
|
|
.link,
|
|
.term {
|
|
color: #929292;
|
|
}
|
|
}
|