From 078be8e98fb8f70edc7f3168691f2df621ba1030 Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Mon, 14 Sep 2015 20:45:49 +0000 Subject: [PATCH] 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 8e1b48e9..3ba76d5b 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; }