From 4763a990437bf875375c8b43709c575791e5ae8e Mon Sep 17 00:00:00 2001 From: William Fagan Date: Thu, 23 Jun 2011 13:48:40 -0500 Subject: [PATCH] Soften up our red colors and add support for form non field errors. --- css/base.css | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/css/base.css b/css/base.css index 49f7da4..31753ec 100644 --- a/css/base.css +++ b/css/base.css @@ -81,7 +81,7 @@ nav li a { } nav li a:hover { - color: #b90000; + color: #ff5b5b; } #cover { @@ -105,7 +105,7 @@ nav li a:hover { } #cover p a { - color: #990000; + color: #ff5b5b; text-decoration: underline; } @@ -140,7 +140,7 @@ input[type="text"], textarea { } input[type="text"].error, textarea.error { - background-color: #b90000; + background-color: #ff5b5b; color: #fff; } @@ -169,6 +169,16 @@ input[type="submit"], input[type="text"], textarea { font-size: 16px; } +ul.errorlist li { + font-size: 24px; + margin-bottom: 20px; + position: relative; + left: 170px; + font-weight: bold; + border-bottom: 4px solid #ff5b5b; + float: left; +} + footer { border-top: 1px; margin-top: -101px;