diff options
Diffstat (limited to 'src/css/imports/_links.css')
| -rwxr-xr-x | src/css/imports/_links.css | 27 |
1 files changed, 27 insertions, 0 deletions
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; +} + |
