31 lines
506 B
SCSS
31 lines
506 B
SCSS
|
@charset "utf-8";
|
||
|
|
||
|
@import "../initial";
|
||
|
.breadcrumb {
|
||
|
background:none;
|
||
|
a:link, a:visited { color: $theme-color-main; }
|
||
|
}
|
||
|
.breadcrumb>li+li:before {
|
||
|
color: $theme-color-main;
|
||
|
}
|
||
|
.widget-breadcrumb {
|
||
|
&.widget1 {
|
||
|
li {
|
||
|
a {
|
||
|
font-size: 0.8125rem;
|
||
|
&:hover{
|
||
|
text-decoration: underline;
|
||
|
color: #288E8E;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&:last-child {
|
||
|
a {
|
||
|
color: $theme-color-main;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|