From a352cb2c2e1110c22582c3e61fc901e96ac56fa7 Mon Sep 17 00:00:00 2001 From: Simon Eisenmann Date: Mon, 22 May 2017 14:31:59 +0200 Subject: [PATCH] Use standard fonts and center layout --- client/static/css/base.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/client/static/css/base.css b/client/static/css/base.css index f8348c8..75badf8 100644 --- a/client/static/css/base.css +++ b/client/static/css/base.css @@ -3,16 +3,22 @@ html, body, ul, ol, li, form, fieldset, legend { padding: 0; } body { - font-family: Ubuntu, Verdana, Tahoma, sans-serif; + font-family: Arial, Helvetica, sans-serif; background: white; } + +#main { + margin: 0 auto; + width: 700px; +} + input { padding: 4px; border: solid 1px #E5E5E5; outline: 0; background: #FFFFFF; margin-right: 9px; -} +} input:hover, input:focus { border-color: #C9C9C9; }