tachyons-skylark/sass/_links.scss

17 lines
206 B
SCSS
Raw Normal View History

2014-03-13 08:17:54 +00:00
/*
2014-03-13 08:17:54 +00:00
LINKS
2014-03-13 08:17:54 +00:00
*/
2014-03-13 08:17:54 +00:00
.link {
text-decoration: none;
transition: .4s all;
2014-03-13 08:17:54 +00:00
&:link { color: #30BBDB; }
&:visited { color: #2D243B; }
&:hover { color: #004EAB; }
&:active { color: #C4E3E0; }
}