basic CSS: apply "clearfix" to admonitions etc.

This commit is contained in:
Matthias Geier 2020-06-27 17:57:27 +02:00
parent 045fc68078
commit 3098aba343

View File

@ -15,6 +15,12 @@ div.clearer {
clear: both;
}
div.section::after {
display: block;
content: '';
clear: left;
}
/* -- relbar ---------------------------------------------------------------- */
div.related {
@ -376,6 +382,15 @@ div.admonition > :last-child {
margin-bottom: 0;
}
div.sidebar::after,
div.topic::after,
div.admonition::after,
blockquote::after {
display: block;
content: '';
clear: both;
}
/* -- tables ---------------------------------------------------------------- */
table.docutils {