24 lines
513 B
SCSS
24 lines
513 B
SCSS
|
.uk-breadcrumb.uk-light > * > *,
|
|||
|
.uk-breadcrumb.uk-light > :nth-child(n+2):not(.uk-first-column)::before {
|
|||
|
color: white !important;
|
|||
|
}
|
|||
|
|
|||
|
.uk-breadcrumb > * > * {
|
|||
|
color: rgba(0, 0, 0, 0.60) !important;
|
|||
|
vertical-align: top;
|
|||
|
line-height: 25px;
|
|||
|
}
|
|||
|
|
|||
|
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
|
|||
|
content: "›";
|
|||
|
color: rgba(0, 0, 0, 0.60);
|
|||
|
font-weight: 200;
|
|||
|
font-size: 25px;
|
|||
|
margin: -9px 10px;
|
|||
|
}
|
|||
|
|
|||
|
.uk-breadcrumb > :last-child > * {
|
|||
|
font-weight: 700;
|
|||
|
color: rgba(0, 0, 0, 0.60);
|
|||
|
}
|