mirror of
https://github.com/ceph/ceph
synced 2024-12-12 06:28:31 +00:00
c555a4e10d
* `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>
9 lines
161 B
CSS
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;
|
|
}
|