21 lines
412 B
SCSS
21 lines
412 B
SCSS
.breadcrumbs {
|
|
margin: 1rem 0;
|
|
padding: .25rem 1rem;
|
|
background: $theme-breadcrumbs-background;
|
|
color: $theme-breadcrumbs-color;
|
|
}
|
|
|
|
.breadcrumbs > .crumb {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.breadcrumbs > .crumb > a,
|
|
.breadcrumbs > .crumb > a:visited {
|
|
color: $theme-breadcrumbs-link-color;
|
|
}
|
|
|
|
.breadcrumbs > .crumb > a:focus,
|
|
.breadcrumbs > .crumb > a:active {
|
|
color: $theme-breadcrumbs-link-color-active;
|
|
}
|