sillsdev / docu-notion

Download Notion pages as markdown and image files, preserving hierarchy and enabling workflow properties. Works with Docusaurus.
MIT License
159 stars 30 forks source link

Add CSS to #105

Closed jamespostsil closed 5 months ago

jamespostsil commented 6 months ago

Could we please add these to custom.css? They will both help with usability of the Bloom Docs. The links show some examples of the before/after.

Docu-Notion defaults sub-ordered lists to i, ii, iii. It's easier/better to use a, b, c. SnagIt supports using a, b, c.

See Change sub-ordered lists to a, b, c.

CSS code:

/* Make sub-ordered lists use lowercase a, b, c instead of i, ii, iii. */
ol ol {
  list-style-type: lower-alpha;
}

It's easier to see bold titles for toggles.

See Add bold to toggle titles.

CSS code:

/* Add bold text to the "title" of toggles" */
details summary {
  font-weight: var(--ifm-font-weight-bold);
}
andrew-polk commented 5 months ago

This is actually a bloom-docs issue. I've moved it to https://github.com/BloomBooks/bloom-docs/issues/9