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

_table_of_contents.scss « partials « style « src - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66eea5bb931fcaba0fe08ac8d3189d53e24087ac (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
#TableOfContents ul {
  padding-left: 1em;
  list-style: none;

  li {
    font-size: 1rem;
    margin: var(--space-1) 0;
    padding: var(--space-1) 0;

    a {
      color: var(--primary);
      text-decoration: none;

      &:focus, &:hover {
        text-decoration: underline;

      }
    }
  }

}

#TableOfContents > ul > li > ul > li > a {
  font-weight: bold ;
}