Lists
Ordered Lists
- This is the first item
- This is the second item
- This is the third item
- 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
- This is a custom colored list item
<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);
}