From patchwork Thu Mar 10 02:12:23 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cole Robinson X-Patchwork-Id: 63724 Delivered-To: patch@linaro.org Received: by 10.112.199.169 with SMTP id jl9csp177233lbc; Wed, 9 Mar 2016 18:15:12 -0800 (PST) X-Received: by 10.28.179.7 with SMTP id c7mr888170wmf.46.1457576112457; Wed, 09 Mar 2016 18:15:12 -0800 (PST) Return-Path: Received: from mx3-phx2.redhat.com (mx3-phx2.redhat.com. [209.132.183.24]) by mx.google.com with ESMTPS id o15si1871846wmg.67.2016.03.09.18.15.11 (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.24 as permitted sender) client-ip=209.132.183.24; Authentication-Results: mx.google.com; spf=pass (google.com: domain of libvir-list-bounces@redhat.com designates 209.132.183.24 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 mx3-phx2.redhat.com (8.13.8/8.13.8) with ESMTP id u2A2CVA7019683; 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 u2A2CTQj011111 for ; Wed, 9 Mar 2016 21:12:29 -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 u2A2CSWZ009100; Wed, 9 Mar 2016 21:12:29 -0500 From: Cole Robinson To: libvirt-list@redhat.com Date: Wed, 9 Mar 2016 21:12:23 -0500 Message-Id: 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 2/4] docs: generic.css: minor cleanups 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 - Drop some redundant bits - Use consistent spacing - Group similar blocks near each other There should be no functional change --- docs/generic.css | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 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 de9f968..52cd392 100644 --- a/docs/generic.css +++ b/docs/generic.css @@ -7,30 +7,40 @@ body { background: #ffffff; } +p:first-line { + margin-right: 1em; +} + +div.body p:first-letter { + font-size: 1.2em; + font-weight: bold; +} + + p, ul, ol, dl { padding: 0px; margin: 0px; + margin-top: 1em; + margin-bottom: 1em; } -ol,ul { +ul, ol { margin-left: 3em; } -ol,ul,dl,p { - margin-top: 1em; - margin-bottom: 1em; +dt { + margin-left: 1em; + margin-right: 2em; } -p:first-line { - margin-right: 1em; +dl dd { + margin-left: 2em; + margin-right: 2em; + margin-bottom: 0.5em; } -div.body p:first-letter { - font-size: 1.2em; - font-weight: bold; -} -h1,h2,h3,h4,h5,h6 { +h1, h2, h3, h4, h5, h6 { font-weight: bold; margin: 0px; padding: 0px; @@ -55,14 +65,3 @@ h5 { h6 { font-size: 0.8em; } - -dl dt { - margin-left: 1em; - margin-right: 2em; -} - -dl dd { - margin-left: 2em; - margin-right: 2em; - margin-bottom: 0.5em; -}