diff options
Diffstat (limited to 'main.css')
-rw-r--r-- | main.css | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -45,8 +45,25 @@ body { #key-picker .notes { padding-left: 0; + list-style-position: outside; + display: grid; + grid-template-rows: 2; + grid-template-columns: 2em 2em 2em 2em 2em 2em 2em; + counter-reset: notes; +} + +#key-picker .notes li:before { + display: grid; + grid-row-start: 2; + content: counter(notes, numeric); + color: grey; + font-size: small; + text-align: center; } #key-picker .notes li { - display: inline; + display: grid; + grid-row-start: 1; + counter-increment: notes; + text-align: center; } |