Add left indent for definition lists

Use padding to make the lists stand out from surrounding text.
This commit is contained in:
Tim Bannister
2021-07-11 04:58:16 +01:00
parent a49c612734
commit 3fc2bcbbd0
+10
View File
@@ -721,3 +721,13 @@ figure {
}
}
}
// Indent definition lists
dl {
padding-left: 1.5em;
// Add vertical space before definitions
> *:not(dt) + dt, dt:first-child {
margin-top: 1.5em;
}
}