51 lines
767 B
SCSS
51 lines
767 B
SCSS
.container {
|
|
padding:16px 360px;
|
|
font-family: $font-family;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: $color-gray6;
|
|
|
|
|
|
@media #{$mq-desktop}, #{$mq-tablet}, #{$mq-mobile} {
|
|
padding: 16px 40px;
|
|
}
|
|
|
|
.link:hover {
|
|
color: $color-gray6;
|
|
}
|
|
.homeLink {
|
|
vertical-align: baseline;
|
|
text-decoration: none;
|
|
|
|
|
|
&::after {
|
|
content: 'Home';
|
|
display: block;
|
|
}
|
|
|
|
.homeIcon {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.link--1 {
|
|
font-size: 0;
|
|
|
|
&::after {
|
|
content: 'Sapatos';
|
|
display: block;
|
|
font-family: $font-family;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
}
|
|
}
|
|
|
|
.term {
|
|
color: $color-gray6;
|
|
}
|
|
}
|