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

hugo-toc.scss « scss « assets - github.com/htr3n/hyde-hyde.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b2c657533657c0f85b4e2efabae7070b49cc4af (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
40
41
42
43
// Hugo {{ .TableOfContents }}
$toc-background-color: #eee;
$toc-font-size: .9rem;

.toc-wrapper {
  font-size: $toc-font-size;
  padding: 0.5em 0.5em 0.5em 0em;
  background: $toc-background-color;
  label {
    background: url(/img/menu-close-dark.svg) no-repeat right center;
    display: block;
    cursor: pointer;
    padding-left: 1em;
  }
}
#TableOfContents {
  overflow: hidden;
  margin-top: 0;
  max-height: 100%;
  > ul {
    list-style-type: none;
    padding-left: 0;
    > li ul {
      list-style-type: none;
      padding-left: 1em;
    }
  }
}

input#tocToggle {
  display: none;
  + label {
    font-weight: bold;
  }
  &:checked {
    + label {
      background-image: url(/img/menu-open-dark.svg);
    }
    ~ #TableOfContents {
      max-height: 0;
    }
  }
}