ciser
Version:
Functional CSS, help quickly build and design new UI without writing css.
13 lines (9 loc) • 373 B
CSS
/*
LINKS
Docs: http://tachyons.io/docs/elements/links/
*/
.link { text-decoration: none; transition: color .25s ease-in; }
.link:link, .link:visited { transition: color .25s ease-in; }
.link:hover { transition: color .25s ease-in; }
.link:active { transition: color .25s ease-in; }
.link:focus { transition: color .25s ease-in; outline: 1px dotted currentColor; }