Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_breadcrumbs.scss « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a5af3167bc70bf9a4d11969c37d205d5e12f22a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Breadcrumbs
.breadcrumb {
  list-style: none;
  margin: $unit-1 0;
  padding: $unit-1 0;

  .breadcrumb-item {
    color: $gray-color-dark;
    display: inline-block;
    margin: 0;
    padding: $unit-1 0;

    &:not(:last-child) {
      margin-right: $unit-1;

      a {
        color: $gray-color-dark;
      }
    }

    &:not(:first-child) {
      &::before {
        color: $gray-color-dark;
        content: "/";
        padding-right: $unit-2;
      }
    }
  }
}