From 30d1f4190a47069ce97edfa3ef4c02d728ff447c Mon Sep 17 00:00:00 2001 From: Sarah Conway Date: Sat, 21 Apr 2018 12:22:08 -0400 Subject: [PATCH] Change colors for visited links. This changes the color for visited links to be a darker blue shade in order to make it easier to distinguish between visited/unvisited URLs. --- django/media/css/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/media/css/main.css b/django/media/css/main.css index 4e2fa04..c6e1c1c 100644 --- a/django/media/css/main.css +++ b/django/media/css/main.css @@ -107,8 +107,8 @@ a, .news a { transition: color .2s ease-in-out; } -a:hover, a:active { - color: #515151; +a:hover, a:active, #pgContentWrap a:visited, .feature a:visited { + color: #193145; text-decoration: none; } -- 2.39.5