/* Newlines (\a) and spaces (\20) before each parameter, but only if there are siblings */
dt em.sig-param.has-sig-param-siblings::before {
    content: "\a\20\20\20\20";
    white-space: pre;
}

/* Newline after the last parameter (so the closing bracket is on a new line) */
dt em.sig-param.has-sig-param-siblings:last-of-type::after {
    content: "\a";
    white-space: pre;
}

/* Pad lines */
.sig-name,
.sig-param {
    line-height: 1.5;
}

/* To have blue background of width of the block (instead of width of content) */
.top-level-dl>dt {
    display: block !important;
}
