1$fade-white : #eee;
2$white : #ccc;
3
4a{
5 color: $fade-white;
6 text-decoration: none;
7
8 &:visited{
9 color: $white;
10 text-decoration: none;
11 opacity: 0.42;
12 }
13 &:hover{
14 opacity: 0.7;
15 text-decoration: underline;
16 }
17 &:active{
18 opacity: 1;
19 text-decoration: none;
20 }
21}