From 39c7c88327441df55d2155e53b47932da8e6d1e7 Mon Sep 17 00:00:00 2001 From: Christopher Serr Date: Sun, 26 Apr 2015 20:03:02 +0200 Subject: [PATCH] Uses a full Font Stack now Tahoma is not available on most systems that are not Windows, so a full Font Stack is needed to make sure similar fonts are used on other systems. --- Assets/Global.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Assets/Global.css b/Assets/Global.css index f0997bf..52b6446 100644 --- a/Assets/Global.css +++ b/Assets/Global.css @@ -4,7 +4,8 @@ html, body { } html, body, button, input, select, textarea { - font: 14px tahoma; + font-size: 14px; + font-family: Tahoma,Verdana,Segoe,sans-serif; } button, input, select, textarea { @@ -528,4 +529,4 @@ footer.wrapper { footer a { color: #E0E0E0; text-decoration: none; -} \ No newline at end of file +}