/ lib / base / base / _lists.import.less
_lists.import.less
 1  // ==========================================================================
 2  // Base – Lists
 3  // ==========================================================================
 4  dl, menu, ol, ul { margin: 1em 0; }
 5  dd,
 6  ul ul,
 7  ol ol,
 8  ul ol,
 9  ol ul {
10    margin: 0;
11  }
12  dt { &:extend(.font-normal); }
13  dd {
14    margin-bottom: 1em;
15  }
16  menu, ol, ul { padding: 0 0 0 22px; }
17  nav ul, nav ol {
18    list-style: none;
19    list-style-image: none;
20  }
21  // Remove Styling from List
22  .list-unstyled {
23    list-style: none;
24    padding: 0;
25    margin: 0;
26    li {
27      margin-top: 0;
28      margin-bottom: 0;
29    }
30  }
31  .list-inline {
32    &:extend(.list-unstyled);
33    &:extend(.inline-block);
34    li {
35      &:extend(.list-unstyled li);
36      &:extend(.inline-block);
37    }
38  }