1/**
2 * Used for any key value pair
3 * Markup
4   <dl class="list-pair">
5     <dt>Term</dt>
6     <dd>Definition associated with the term</dd>
7   </dl>
8 */
9
10.list-pair {
11  margin-bottom: 0;
12
13  dt {
14    @include label;
15  }
16  dd {
17    @include fontCourierBold;
18    margin-bottom: 0;
19  }
20
21  + .list-pair {
22    margin-top: 1.5rem;
23  }
24}
25