I'm writing a new documentation for my project in reST. The documentation is rendered with Sphinx on ReadTheDocs. I already downloaded the ReadTheDocs theme as a git submodule into my repositories docs/source/_themes
folder, so I can modify some of the templates or CSS settings.
I would like to change the text justification for big paragraphs from ragged right to fully justified.
Where can I change his in the hundreds of lines of CSS code?
Document structure:
...
<div class="section" id="basic-2-flip-flop-synchronizer">
<h2>Basic 2 Flip-Flop Synchronizer</h2>
<p>The 2 flip-flop ....
</p>
</div>
CSS code to include or replace with:
text-align:justify;
I used CSS 10 years ago, but I'm not really up-to-date on the new CSS selectors ...