From d0c4b919656e9d937ca0ffd3d18c4791434167ac Mon Sep 17 00:00:00 2001 From: Robert Miles Date: Fri, 10 Jan 2020 08:37:37 -0500 Subject: [PATCH] Make link colors apply globally Visited links in the footer fail accessibility guidelines. This should fix that. --- includes/newthunix.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/newthunix.css b/includes/newthunix.css index d6a7ce6..1dd2852 100644 --- a/includes/newthunix.css +++ b/includes/newthunix.css @@ -4,8 +4,8 @@ body{font-family:"dot",Courier,monospace;background:#000;color:#F79862} #body h1{color:orange} #body h2{color:orange} #body h3{color:orange} -#body a{background:#000;color:#F79862} -#body a:visited{color:orange} +a{background:#000;color:#F79862} +a:visited{color:orange} #header{width:90%;text-align:center;font-size:xx-large} #content{width:78%;float:left;font-size:medium} #content img{max-height:400px;max-width:98%}