From b259642c0a0067a5a3ad5cd88ff372fda23088c7 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Wed, 26 Dec 2018 16:18:25 -0700 Subject: [PATCH] Improve list indentation, remove bullet from checklists (close #7) --- static/css/home.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/static/css/home.css b/static/css/home.css index 9a44e79..f347659 100644 --- a/static/css/home.css +++ b/static/css/home.css @@ -36,6 +36,27 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/. text-decoration: none; } +ul, ol { + padding-left: 0; +} + +li > ul, li > ol { + padding-left: 1em; +} + +li > ul > li.parsedown-task-list-close, li > ul > li.parsedown-task-list-open { + margin-left: 1em; +} + +li:not(.parsedown-task-list-close):not(.parsedown-task-list-open) { + margin-left: 1em; +} + .parsedown-task-list-close { text-decoration: line-through; + list-style-type: none; +} + +.parsedown-task-list-open { + list-style-type: none; } \ No newline at end of file