mirror of https://github.com/luizdepra/hugo-coder.git

Luiz F. A. de Prá
02.06.2019 e10448c4b387cc75d2b5ac133f07ee99c882f3d7
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
body.inverted {
 
  .content {
  
    .list {
      ul {
        li {
          a {
            color: $fg-color-inverted;
            &:hover,
            &:focus {
              color: $link-color-inverted
            }
          }
        }
      }
    }
 
    .centered {
      .about {
        ul {
          li {
            a {
              color: $fg-color-inverted;
              &:hover,
              &:focus {
                color: $link-color-inverted;
              }
            }
          }
        }
      }
    }
  }
 
}