From dedfd8a8098db999f81a55a845e0e4d041f9d7a8 Mon Sep 17 00:00:00 2001 From: Darin Dimitroff Date: Tue, 22 Nov 2016 13:07:51 +0200 Subject: Adds Tachyons --- src/css/imports/_links.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 src/css/imports/_links.css (limited to 'src/css/imports/_links.css') diff --git a/src/css/imports/_links.css b/src/css/imports/_links.css new file mode 100755 index 0000000..6c9a2c8 --- /dev/null +++ b/src/css/imports/_links.css @@ -0,0 +1,27 @@ +/* + + 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; +} + -- cgit v1.3