Buttons

A real <button> for actions, or <a class="button"> when it navigates. Variants and sizes are small modifier classes; a group of actions is a div class="buttons".

Variants

Link button
<button>Primary</button>
<button class="secondary">Secondary</button>
<button class="ghost">Ghost</button>
<a class="button" href="/go/">Link button</a>

Sizes

<button class="small">Small</button>
<button>Default</button>
<button class="large">Large</button>

A group of actions

<div class="buttons">
  <button>Save</button>
  <button class="secondary">Save &amp; close</button>
  <button class="ghost">Cancel</button>
</div>