diff options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -55,3 +55,18 @@ x-entry > p { section > x-entry:not(:last-child) { margin-bottom: 1rem; } + +dl { + display: grid; + grid-template-columns: max-content auto; + row-gap: 1rem; + + dt { + grid-column-start: 1; + font-weight: bold; + } + + dd { + grid-column-start: 2; + } +} |