From patchwork Sun Sep 11 02:42:28 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerald Pfeifer X-Patchwork-Id: 114207 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 47736B7260 for ; Sun, 11 Sep 2011 12:42:50 +1000 (EST) Received: (qmail 8957 invoked by alias); 11 Sep 2011 02:42:48 -0000 Received: (qmail 8890 invoked by uid 22791); 11 Sep 2011 02:42:47 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from ainaz.pair.com (HELO ainaz.pair.com) (209.68.2.66) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 11 Sep 2011 02:42:31 +0000 Received: from g159.suse.de (charybdis-ext.suse.de [195.135.221.2]) by ainaz.pair.com (Postfix) with ESMTPSA id 86A8D3F416 for ; Sat, 10 Sep 2011 22:42:30 -0400 (EDT) Date: Sun, 11 Sep 2011 04:42:28 +0200 (CEST) From: Gerald Pfeifer To: gcc-patches@gcc.gnu.org Subject: [wwwdocs] Most slightly adjust link colors Message-ID: MIME-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org This is quite minor a change per se, in preparation of another one. It (a) makes visited links a bit less aggressive in their blue-ness and a tad brighter, (b) makes unvisited links a bit less bright, and (c) brings the two colors closer together to make the overall page impression less chequered (many sites these days use exactly the same color for both). Applied. Gerald Index: gcc.css =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc.css,v retrieving revision 1.20 diff -u -r1.20 gcc.css --- gcc.css 1 May 2011 21:24:37 -0000 1.20 +++ gcc.css 11 Sep 2011 02:03:30 -0000 @@ -5,8 +5,8 @@ body { background-color: white; color: black; } -a:link { color: #0066dd; text-decoration: none; } -a:visited { color: #000099; text-decoration: none; } +a:link { color: #0066bb; text-decoration: none; } +a:visited { color: #003399; text-decoration: none; } a:hover { color: darkorange; text-decoration: none; } h1 { color: gray; text-align:center; }