From 39822581eeb75cdf3fd14cc9b90a871509567e89 Mon Sep 17 00:00:00 2001 From: Murray Stokely <murray@FreeBSD.org> Date: Sat, 11 Jun 2005 18:36:01 +0000 Subject: [PATCH] Make <h1>, <h2>, <h3> tags red by default. This was the intention of the original design as it matches with the header and footer, and most older pages achieve this with longer <font> tags, which can now be removed. Many newer pages have black subheadings, but this seems to be through omission rather than intention. Discussed on: freebsd-www@ --- en/freebsd.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/en/freebsd.css b/en/freebsd.css index d1d7483d13..bcd796fab6 100644 --- a/en/freebsd.css +++ b/en/freebsd.css @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD: www/en/freebsd.css,v 1.3 2005/02/04 17:33:30 ceri Exp $ + * $FreeBSD: www/en/freebsd.css,v 1.4 2005/05/08 16:07:44 murray Exp $ */ DIV.EXAMPLE P B { @@ -34,7 +34,15 @@ DIV.EXAMPLE P B { color: #007a00; } -h3.red { +h1 { + color: #660000; +} + +h2 { + color: #660000; +} + +h3 { color: #660000; }