module.exports = { id: 'lists', title: 'Lists', keywords: [`list`, `ul`, `ol`, `li`], description: `

List elements, both unordered and ordered, are minimally styled to match with the rest of the framework's aesthetics. Their margins and padding are reset to properly align with the rest of the common HTML5 elements, providing a stable foundation for all of your web app's lists.

`, example: `
  1. Wake up
  2. Eat breakfast
  3. Go to work
`, samples: [`
<ul>
  <li>Apple</li>
  <li>Orange</li>
  <li>Strawberry</li>
</ul>
<ol>
  <li>Wake up</li>
  <li>Eat breakfast</li>
  <li>Go to work</li>
</ol>
`], notes: [], customization: [ `Text color can be changed globally by changing the value of the --fore-color variable.`, `Background color can be changed globally by changing the value of the --back-color variable.`, `Universal margin for elements can be changed globally by changing the value of the --universal-margin variable. As a rule of thumb, consider the universal margin to be the distance you want your paragraphs to have from the sides of the screen.`, `Universal padding for elements can be changed globally by changing the value of the --universal-padding variable.` ], modifiers: [], dos: [], donts: [] }