Change colors for visited links.
authorSarah Conway <sarah.conway@crunchydata.com>
Sat, 21 Apr 2018 16:22:08 +0000 (12:22 -0400)
committerJonathan S. Katz <jonathan.katz@excoventures.com>
Sat, 21 Apr 2018 16:22:08 +0000 (12:22 -0400)
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

index 4e2fa042e4c09ff051823a0f3848ec66a4e92874..c6e1c1cca3be22adbd29f2826d8501a37100acbb 100644 (file)
@@ -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;
 }