Different types of lists.
Bullet points.
<ul>
<li>This is an unordered list.</li>
<li>Use it for bullet points in a story.</li>
<li>This is still an unordered list.</li>
<li>
Lists can be nested
<ul>
<li>Phasellus iaculis neque</li>
<li>Purus sodales ultricies</li>
<li>Vestibulum laoreet porttitor sem</li>
<li>Ac tristique libero volutpat at</li>
</ul>
</li>
</ul>
For use when there are numbered sets or a numbered hierarchy.
Here is a list following a paragraph.
Here is a list following a paragraph with the .list--letters
class.
<ol>
<li>This is an ordered list.</li>
<li>Use it for steps in a process.</li>
<li>Useful for top 10, etc.</li>
</ol>
<ol class="list--letters">
<li>This is an ordered list.</li>
<li>Use it for steps in a process. Use it for steps in a process. Use it for steps in a process.</li>
<li>Useful for top 10, etc.</li>
</ol>
A description list, with terms and descriptions.
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
Make terms and descriptions in <dl>
line up side-by-side. Starts off stacked like default <dl>
s, but when the navbar expands, so do these.
<dl class="dl-horizontal">
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
For listing social accounts.
<ul class="list--social">
<li><a href="https://www.twitter.com/zlwise" target="_blank"><span class="icon-twitter"></span></a></li>
<li><a href="http://zachwise.com" target="_blank"><span class="icon-link"></span></a></li>
<li><a href="https://github.com/zachwise/" target="_blank"><span class="icon-github"></span></a></li>
<li><a href="https://instagram.com/zachwise" target="_blank"><span class="icon-instagram"></span></a></li>
<li><a href="https://www.linkedin.com/in/zachwise/" target="_blank"><span class="icon-linkedin"></span></a></li>
</ul>