summaryrefslogtreecommitdiffstats
path: root/src/css/breadcrumbs.css
blob: 6ec18242cf00884d6f64de57527599dd96dff18d (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
30
31
32
33
34
35
36
37
38
39
.crumbs {
  display: none;
  flex: 1 1;
  padding: 0 0.5rem 0 0.75rem;
  line-height: 1.35;
  hyphens: none;
}

@media screen and (min-width: 1024px) {
  .crumbs {
    display: block;
  }
}

a + .crumbs {
  padding-left: 0.05rem;
}

.crumbs ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crumbs li {
  display: inline;
  margin: 0;
}

.crumbs li::after {
  content: "/";
  padding: 0 0.5rem;
}

.crumbs li:last-of-type::after {
  content: none;
}