forked from cryptohagen.dk/website
Jesper Hess
f68ff9a945
Moved bootstrap folder into _sass/bootstrap Moved cryptohagen.scss to /assets/css Added frontmatter to cryptohagen.scss
24 lines
484 B
SCSS
24 lines
484 B
SCSS
.breadcrumb {
|
|
padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
|
|
margin-bottom: $spacer-y;
|
|
list-style: none;
|
|
background-color: $breadcrumb-bg;
|
|
@include border-radius($border-radius);
|
|
@include clearfix;
|
|
|
|
> li {
|
|
float: left;
|
|
|
|
+ li::before {
|
|
padding-right: .5rem;
|
|
padding-left: .5rem;
|
|
color: $breadcrumb-divider-color;
|
|
content: "#{$breadcrumb-divider}";
|
|
}
|
|
}
|
|
|
|
> .active {
|
|
color: $breadcrumb-active-color;
|
|
}
|
|
}
|