From c07262e137650f7cac101dfaf7292840da3539ec Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Fri, 4 Sep 2015 12:00:35 +0100 Subject: [PATCH 2/2] Collapse and style definition lists ie display this:
Foo:
Bar
Juice:
Toast
Milk
as: *Foo:* Bar *Juice:* Toast Milk --- source/UI/css/UI.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source/UI/css/UI.css b/source/UI/css/UI.css index 8e1b48e..3ba76d5 100644 --- a/source/UI/css/UI.css +++ b/source/UI/css/UI.css @@ -55,6 +55,16 @@ ol, ul { padding-left: 1.5em; margin: 0; } +dt { + float: left; + clear: left; + width: 40px; + font-weight: bold; + text-overflow: hidden; +} +dd { + margin-left: 40px; +} p { text-align: justify; } -- 2.4.3