From 17a3f9c93f87011796d1c2cfa167a688c3fc978d Mon Sep 17 00:00:00 2001 From: Jacob Gube Date: Sun, 11 Jan 2015 11:46:05 +0800 Subject: [PATCH] Convert hex color value to uppercase letters Prefer #FFF over #fff for hex color declaration consistency. --- css/skeleton.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/skeleton.css b/css/skeleton.css index 762b374..7eb6b88 100644 --- a/css/skeleton.css +++ b/css/skeleton.css @@ -236,7 +236,7 @@ textarea, select { height: 38px; padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ - background-color: #fff; + background-color: #FFF; border: 1px solid #D1D1D1; border-radius: 4px; box-shadow: none;