48 lines
723 B
SCSS
48 lines
723 B
SCSS
.container {
|
|
padding-left: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
@media (max-width: 1024px){
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.homeLink {
|
|
.homeIcon {
|
|
display: none;
|
|
}
|
|
}
|
|
.homeLink::before {
|
|
content: 'Home';
|
|
font-size: 16px;
|
|
color: #929292;
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
}
|
|
|
|
.homeLink:hover::before {
|
|
color: #0f3e99;
|
|
}
|
|
.arrow--1 {
|
|
.link {
|
|
font-size: 0;
|
|
}
|
|
.link::before {
|
|
content: 'Sapatos';
|
|
font-size: 16px;
|
|
color: #929292;
|
|
}
|
|
.link:hover::before {
|
|
color: #0f3e99;
|
|
}
|
|
}
|
|
}
|
|
.termArrow{
|
|
display: none;
|
|
}
|
|
.term{
|
|
display: none;
|
|
}
|