Theme improvements to IfcOpenShell docs

This commit is contained in:
Dion Moult
2023-01-10 11:43:13 +11:00
parent 4845d191f4
commit ddc0f7e652
2 changed files with 18 additions and 1 deletions
+13
View File
@@ -15,3 +15,16 @@ section img {
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
border-radius: 5px;
}
.py.class {
/* Make it clearer which signatures are part of a class */
border-left: 3px solid var(--color-brand-primary);
}
.py.function, .py.method {
/* Make it clearer which signatures are part of a method or function */
border-left: 3px solid var(--color-background-item);
}
.field-list > dt {
/* Clearly distinguish parameters otherwise it looks like a wall of text */
color: var(--color-brand-content);
font-style: italic;
}