main
css 25 lines 315 Bytes
Raw
1 .Item {
2 margin-top: 0.25rem;
3 }
4
5 .Key {
6 font-family: var(--font-family-monospace);
7 font-size: var(--font-size-monospace-small);
8 line-height: 1;
9 }
10
11 .Key:first-of-type::before {
12 content: ' (';
13 }
14
15 .Key::after {
16 content: ', ';
17 }
18
19 .Key:last-of-type::after {
20 content: ')';
21 }
22
23 .Label {
24 font-weight: bold;
25 }