Improve list indentation, remove bullet from checklists (close #7)

This commit is contained in:
Skylar Ittner 2018-12-26 16:18:25 -07:00
parent 09ab991fbb
commit b259642c0a

View File

@ -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;
}