Hello Chris,
Thanks for your comments!
Talking about heading customizations you’re asking about, i.e. styling top-level headings and subheadings differently - it is quite possible. We are considering to add a separate ‘document’ mode for lists at some time in the future, as well as more advanced customizations, templates and alike.
Recently we’ve implemented a possibility to style lists depending on tags specified in the lists. The corresponding discussion is here: Using tags to activate/deactivate CSS customizations on whole lists
Let’s say you have a list tagged #document. Then you can use CSS rules like below:
.list_tag_document ul.topLevel li.task {
font-size: 26px;
}
.list_tag_document ul.topLevel ul li.task {
font-size: 20px;
}
.list_tag_document ul.topLevel ul ul li.task {
font-size: 14px;
}
Until we’ve implemented better customization approach, this may be a way to go
Please let me know if it works for you.
All the best,
KIR