Your IP : 216.73.216.111


Current Path : /home/icmq6107/clients/naddaf/wp-content/themes/crowdngo/sass/bootstrap/
Upload File :
Current File : /home/icmq6107/clients/naddaf/wp-content/themes/crowdngo/sass/bootstrap/_breadcrumbs.scss

//
// Breadcrumbs
// --------------------------------------------------


.breadcrumb {
  padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
  margin-bottom: $line-height-computed;
  list-style: none;
  background-color: $breadcrumb-bg;
  border-radius: $border-radius-base;

  a{
    color: $breadcrumb-link-color;
    &:hover{
      color: $breadcrumb-link-hover-color;
    }
  }
  a,
  > li {
    display: inline-block;
    + a:before,
    + li:before {
      content: " - "; // Unicode space added since inline-block means non-collapsing white-space
      padding: 0 5px;
      color: $breadcrumb-color;
    }
  }

  > .active {
    color: $breadcrumb-active-color;
  }
}