tachyons-skylark/sass/_links.scss
2014-09-17 02:31:18 -07:00

18 lines
312 B
SCSS

/*
LINKS
*/
.link {
text-decoration: none;
transition: all .4s;
}
.link:link { color: #30BBDB; }
.link:visited { color: #2D243B; }
.link:hover { color: #004EAB; }
.link:active { color: #C4E3E0; }
.underline { text-decoration: underline; }
.underline-hover:hover { text-decoration: underline; }