summaryrefslogtreecommitdiff
path: root/xstatic/pkg/bootstrap_scss/data/scss/bootstrap/_breadcrumbs.scss
blob: 2effdeb6e5273854e03a1bbe529c959f65e12928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// BREADCRUMBS
// -----------

.breadcrumb {
  padding: 7px 14px;
  margin: 0 0 $baseLineHeight;
  @include gradient-vertical($white, #f5f5f5);
  border: 1px solid #ddd;
  @include border-radius(3px);
  @include box-shadow(inset 0 1px 0 $white);
  li {
    display: inline-block;
    text-shadow: 0 1px 0 $white;
  }
  .divider {
    padding: 0 5px;
    color: $grayLight;
  }
  .active a {
    color: $grayDark;
  }
}