2023-02-27 16:50:32 +03:00
|
|
|
.profileBreadcrumbs {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
|
|
@media (max-width: 570px) {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2023-05-24 15:34:43 +03:00
|
|
|
color: #5b6871;
|
2023-02-27 16:50:32 +03:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 16px;
|
|
|
|
transition: 0.3s all ease;
|
|
|
|
position: relative;
|
|
|
|
margin-right: 20px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
@media (max-width: 525px) {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 455px) {
|
|
|
|
font-size: 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
2023-05-24 15:34:43 +03:00
|
|
|
content: "";
|
2023-02-27 16:50:32 +03:00
|
|
|
background-image: url("../../images/BreadcrumbsArrow.png");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 7px;
|
2023-05-24 15:34:43 +03:00
|
|
|
height: 10px;
|
2023-02-27 16:50:32 +03:00
|
|
|
position: absolute;
|
|
|
|
right: -14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
&:after {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|