From patchwork Thu Mar 10 02:12:24 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cole Robinson X-Patchwork-Id: 63725 Delivered-To: patch@linaro.org Received: by 10.112.199.169 with SMTP id jl9csp177249lbc; Wed, 9 Mar 2016 18:15:15 -0800 (PST) X-Received: by 10.194.90.100 with SMTP id bv4mr805710wjb.4.1457576112708; Wed, 09 Mar 2016 18:15:12 -0800 (PST) Return-Path: Received: from mx4-phx2.redhat.com (mx4-phx2.redhat.com. [209.132.183.25]) by mx.google.com with ESMTPS id fe11si1905007wjc.47.2016.03.09.18.15.12 (version=TLS1 cipher=AES128-SHA bits=128/128); Wed, 09 Mar 2016 18:15:12 -0800 (PST) Received-SPF: pass (google.com: domain of libvir-list-bounces@redhat.com designates 209.132.183.25 as permitted sender) client-ip=209.132.183.25; Authentication-Results: mx.google.com; spf=pass (google.com: domain of libvir-list-bounces@redhat.com designates 209.132.183.25 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by mx4-phx2.redhat.com (8.13.8/8.13.8) with ESMTP id u2A2CWIh002028; Wed, 9 Mar 2016 21:12:32 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id u2A2CUUV011120 for ; Wed, 9 Mar 2016 21:12:30 -0500 Received: from colepc.redhat.com (ovpn-113-126.phx2.redhat.com [10.3.113.126]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u2A2CSWa009100; Wed, 9 Mar 2016 21:12:30 -0500 From: Cole Robinson To: libvirt-list@redhat.com Date: Wed, 9 Mar 2016 21:12:24 -0500 Message-Id: <340f44510cedfa0be219bcfd523f57e0c5786360.1457575748.git.crobinso@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH 3/4] docs: generic.css: font size tweaks X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com - change font-family to just 'sans-serif' rather than hardcode a few font families. this means we abide the user's browser font setting, and makes us consistent with other sites like en.wikipedia.org - raise font-size to 90%. this is what en.wikipedia.org uses. With these two tweaks, libvirt.org text renders the same as en.wikipedia.org with fedora firefox out of the box config. Previously the font on libvirt.org was very small and difficult to read. --- docs/generic.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 2.5.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list diff --git a/docs/generic.css b/docs/generic.css index 52cd392..285e390 100644 --- a/docs/generic.css +++ b/docs/generic.css @@ -2,8 +2,8 @@ body { margin: 0em; padding: 0px; color: rgb(0,0,0); - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: smaller; + font-family: sans-serif; + font-size: 90%; background: #ffffff; }