docs: css: Add separation for table of contents generated from RST

The table of contents of documents generated from RST is quite squeezed
together. Add 2em-s worth of vertical separation on each side.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Peter Krempa 2020-08-03 08:23:11 +02:00
parent 978cc69287
commit bc5c74737a

View File

@ -590,3 +590,10 @@ th p, td p {
margin-top: 0px;
margin-bottom: 0px;
}
/* Elements with id 'contents' contain the table of contents generated by docutils */
#contents {
margin-top: 2em;
margin-bottom: 2em;
}