From eb3cebc432e5c2b537849ae3d6784b63f2c27c8a Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Mon, 18 Oct 2010 12:40:54 +0200 Subject: [PATCH] Change link colors to match logo. --- src/main/resources/static/css/sone.css | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/main/resources/static/css/sone.css b/src/main/resources/static/css/sone.css index 67f3dc9..26286b0 100644 --- a/src/main/resources/static/css/sone.css +++ b/src/main/resources/static/css/sone.css @@ -21,13 +21,14 @@ display: none; } -#sone a { - color: inherit; +#sone a, #sone a:link, #sone a:visited { + color: rgb(28, 131, 191); + font-size: inherit; text-decoration: none; } -#sone a:visited { - color: inherit; +#sone a:active { + color: rgb(255, 172, 0); } #sone #sidebar { @@ -37,7 +38,7 @@ #sone .profile-link { font-weight: bold; - color: #23e; + color: rgb(28, 131, 191); } #sone #profile .picture { @@ -113,6 +114,8 @@ #sone .post .show-reply-form { display: inline; + color: rgb(28, 131, 191); + cursor: pointer; } #sone .post .show-reply-form:before { -- 2.7.4