"vscode:/vscode.git/clone" did not exist on "cb8ac1b08b405c3d80806b990247af8a7a9d3ed4"
custom.css 511 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
/* https://github.com/sphinx-doc/sphinx/issues/1514#issuecomment-742703082 */
/* Newlines (\a) and spaces (\20) before each parameter */
dt > em.sig-param: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:last-of-type::after {
    content: "\a";
    white-space: pre;
}
moto's avatar
moto committed
12
13
14
15
16
17
/* For shields */
article.pytorch-article img.shield-badge {
    width: unset;
    margin-top: -18px;
    margin-bottom: 9px;
}