66 lines
922 B
SCSS
66 lines
922 B
SCSS
|
|
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: white;
|
|
padding: 32px 0 16px 40px;
|
|
|
|
.term,.termArrow {
|
|
display: none;
|
|
}
|
|
|
|
.homeLink {
|
|
.homeIcon {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.homeLink::before {
|
|
content:"Home";
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: #929292;
|
|
|
|
}
|
|
|
|
.arrow--1 {
|
|
.Link {
|
|
font-size:0;
|
|
}
|
|
|
|
.Link::before {
|
|
content:"Sapatos";
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
color: #929292;
|
|
}
|
|
}
|
|
.link--1 {
|
|
font-size: 0;
|
|
|
|
margin-left: 16px;
|
|
|
|
&::after {
|
|
|
|
visibility: visible;
|
|
display: block;
|
|
content: "Sapatos";
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (min-width:1900px) {
|
|
.container {
|
|
padding-left: 70px;
|
|
}
|
|
}
|
|
|
|
|