mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Bud Parr
11.27.2017 98bc281a57874b862e03036beaf17a4ddc6be057
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
/*
 
   LINKS
   Docs: http://tachyons.io/docs/elements/links/
 
*/
 
.link {
  text-decoration: none;
  transition: color .15s ease-in;
}
 
.link:link,
.link:visited {
  transition: color .15s ease-in;
}
.link:hover   {
  transition: color .15s ease-in;
}
.link:active  {
  transition: color .15s ease-in;
}
.link:focus   {
  transition: color .15s ease-in;
  outline: 1px dotted currentColor;
}