aboutsummaryrefslogtreecommitdiff
path: root/themes/hugo-whisper-theme/assets/scss/components/_docs-menu.scss
blob: 09b0e8a993b8c33687ec90b4a36fcaa75a33eb89 (plain) (blame)
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
.docs-menu {
  h4 {
    font-size: 1rem;
    font-weight: bold;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    li {
      font-size: 0.9rem;
      line-height: 1.4;
      font-weight: 400;
      margin: 0;
      padding: 4px 0 4px 0;
      &.active {
        a {
          color: lighten($primary, 10%);
          font-weight: 400;
        }
      }
      a {
        color: $black;
        &:hover {
          color: $primary;
        }
      }
    }
  }
}