Issam T.
Issam T.

Reputation: 1697

Different font size in restructuredtext

I have bigger fonts on all type of lists.

What should I do to keep the same font size in lists as in my normal paragraphs?

For now I get this

Plain text  Typical result (in normal font size)

Bullet lists (in normal font size):

- This is item 1 (in bigger font size)
- This is item 2 (in bigger font size)

Upvotes: 5

Views: 6399

Answers (1)

Humbalan
Humbalan

Reputation: 717

What Sphinx generates depends on the theme you use. The theme sphinxdoc generates the same font size in bullet lists and in normal text. Spinx defines the theme in conf.py in the base folder of the documentation. Search there for "html_theme".

More information about themes and Sphinx here

Upvotes: 3

Related Questions