Ordered Lists

  1. This is the first item
  2. This is the second item
  3. This is the third item
  4. This is the fourth item
<ol class="ordered-list--custom">
  <li>This is the first item</li>
  <li>This is the second item</li>
  <li>This is the third item</li>
  <li>This is the fourth item</li>
</ol>

Custom Colored Lists

<ol class="ordered-list--custom ordered-list--sharing-blue">
  <li>This is a custom colored list item</li>
</ol>
//Example: Custom Colored Lists
.ordered-list--sharing-blue {
  @include ordered-list($sharing-blue, $white);
}