Usage
<button class="red">Red<button>
<button class="orange">Orange<button>
<button class="yellow">Yellow<button>
<button class="green">Green<button>
<button class="blue">Blue<button>
<br>
<button class="red" disabled>Red<button>
<button class="orange" disabled>Orange<button>
<button class="yellow" disabled>Yellow<button>
<button class="green" disabled>Green<button>
<button class="blue" disabled>Blue<button>
Button Groups
To group together buttons in a navigation style list, use this markup.
Example
Usage
<nav class="button-group">
<button>List</button>
<button class="selected">Map</button>
<button class="selected">Settings</button>
</nav>
<nav class="button-group">
<button class="blue">List</button>
<button class="blue">Map</button>
<button class="blue selected">Settings</button>
</nav>
<nav class="button-group">
<button class="green">List</button>
<button class="green">Map</button>
<button class="green">Settings</button>
</nav>
<nav class="button-group">
<button class="yellow">List</button>
<button class="yellow">Map</button>
<button class="yellow" disabled>Settings</button>
</nav>
<nav class="button-group">
<button class="orange">List</button>
<button class="orange">Map</button>
<button class="orange" disabled>Settings</button>
</nav>
<nav class="button-group">
<button class="red">List</button>
<button class="red">Map</button>
<button class="red" disabled>Settings</button>
</nav>