about summary refs log tree commit diff stats
path: root/css/common.css
diff options
context:
space:
mode:
authorCase Duckworth2015-03-03 01:51:36 -0700
committerCase Duckworth2015-03-03 01:51:36 -0700
commit15fe609e749de5db4209482b1ada28f170c5543f (patch)
tree994f0d0a4584eed2bd72bb896cc0c125a95e5fcd /css/common.css
parentRevert 2 previous commits (diff)
downloadautocento-15fe609e749de5db4209482b1ada28f170c5543f.tar.gz
autocento-15fe609e749de5db4209482b1ada28f170c5543f.zip
Remove link underline for external links
Diffstat (limited to 'css/common.css')
-rw-r--r--css/common.css10
1 files changed, 5 insertions, 5 deletions
diff --git a/css/common.css b/css/common.css index b9e32de..b30bb35 100644 --- a/css/common.css +++ b/css/common.css
@@ -57,15 +57,15 @@ a:active {
57 text-decoration: underline; 57 text-decoration: underline;
58} 58}
59/* External Links */ 59/* External Links */
60a.external:link { 60a[href^="http"]:link {
61 text-decoration: underline; 61 text-decoration: none;
62} 62}
63a.external:visited { 63a[href^="http"]:visited {
64} 64}
65a.external:hover { 65a[href^="http"]:hover {
66 text-decoration: underline; 66 text-decoration: underline;
67} 67}
68a.external:active { 68a[href^="http"]:active {
69 text-decoration: underline; 69 text-decoration: underline;
70} 70}
71/* }}} */ 71/* }}} */