From d8f9af3fc64d587b2477d1175f87bfe61a73c7e1 Mon Sep 17 00:00:00 2001 From: bfred-it Date: Sat, 17 Nov 2012 20:01:19 +0100 Subject: [PATCH] Removed font "fix" that worsen readability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `-webkit-font-smoothing: antialiased;` on the entire document is an abuse of the property as it worsen the readability of body text considerably. Example: http://imgur.com/I12Ff (Chrome/OSX) Argument: http://www.usabilitypost.com/2012/11/05/stop-fixing-font-smoothing/ --- stylesheets/base.css | 1 - 1 file changed, 1 deletion(-) diff --git a/stylesheets/base.css b/stylesheets/base.css index 9ae0270..51fa689 100644 --- a/stylesheets/base.css +++ b/stylesheets/base.css @@ -54,7 +54,6 @@ background: #fff; font: 14px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; color: #444; - -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */ -webkit-text-size-adjust: 100%; }