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

media/css/main.css

index 9149e5cdbb47f9c4132f10eeafc0da97798dff9d..4cfb64a4d542d098b1b613a57f14f7e6a9d46161 100644 (file)
@@ -111,8 +111,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;
 }