ceph/doc/_static/css/custom.css
Kefu Chai c555a4e10d doc/_static/css: fine tune the spacing
* `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>
2020-03-16 20:12:38 +08:00

9 lines
161 B
CSS

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;
}