* `ul.simple > li` is also used in front page, where the items are too
sparse now. so we need to restore the default spacing.
* `ul.simple > li > ul > li:last-child` is used to control the spacing
between nested unordered list. we need have more spacing there.
* `div.section > ul > li > p` is added to decrease the spacing of nested
list items.
Signed-off-by: Kefu Chai <kchai@redhat.com>
-ul.simple > li {
- margin-block-begin : 1em;
+ul.simple > li > ul > li:last-child {
margin-block-end : 1em;
}
+
+div.section > ul > li > p {
+ margin-block-start : 0.6em;
+ margin-block-end : 0.6em;
+}