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

breadcrumbs.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 817e1821c329aab45fbbab580f64937efc08d5c7 (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
// Breadcrumbs
.breadcrumb {
  padding: 1.2rem;

  .breadcrumb-item {
    display: inline-block;
    margin: 0;

    a {
      border: none;
      text-decoration: none;
    }
    &:last-child {
      &,
      a {
        color: @core-meta-color;
      }
    }
    &:not(:last-child) {
      &::after {
        color: @control-color;
        content: "/";
        padding: 0 .4rem;
      }
    }
  }
}