53 lines
821 B
Plaintext
53 lines
821 B
Plaintext
.breadcrumbs__container {
|
|
position: relative;
|
|
color: var(--color-font);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.breadcrumbs__link {
|
|
|
|
&:hover {
|
|
color: var(--color-fontsec);
|
|
}
|
|
}
|
|
|
|
.breadcrumbs__item {
|
|
padding-right: 14px;
|
|
position: relative;
|
|
line-height: 28px;
|
|
opacity: 0.8;
|
|
z-index: 1;
|
|
margin-right: 10px;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
font-weight: 800;
|
|
color: var(--color-dark);
|
|
top: 1px;
|
|
|
|
&::after {
|
|
content: none;
|
|
}
|
|
}
|
|
|
|
--color-separator: var(--color-primary);
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 11px;
|
|
right: 0;
|
|
width: 7px;
|
|
height: 7px;
|
|
border-bottom: 1px solid var(--color-separator);
|
|
border-right: 1px solid var(--color-separator);
|
|
transform: rotate(-45deg);
|
|
z-index: 10;
|
|
}
|
|
}
|