Is it possible to have different fonts for the first two levels?
Or is it possible to have different fonts for items that use markdown ‘##’ for title levels?
Hello @zinoff ,
Sure it is possible to style first two levels separately from the further ones.
And you can style markdown headings separately, too.
For ## headings, use .userContent h2 {}
CSS selector.
For the first and further levels we have the following CSS block:
ul.topLevel li.task {
font-size: var(--list-font-size);
line-height: 1.3;
}
ul.topLevel ul li.task {
font-size: var(--list-font-size-small); /*----- needed to overun the parent node font size*/
}
Hope, this helps,
KIR