Buttons

Button classes which used in the template.

  • btn-default
  • btn-primary
  • btn-secondary
  • btn-white
  • btn-dark
<a href="#" class="btn btn-default">Button text</a>
<a href="#" class="btn btn-primary">Button text</a>
<a href="#" class="btn btn-secondary">Button text</a>
<a href="#" class="btn btn-white">Button text</a>
<a href="#" class="btn btn-dark">Button text</a>

 

Apply class .solid along with button classes for a solid button

<a href="#" class="btn btn-default solid">Button text</a>

 

Apply class .large, .medium, .small, .mini, .tiny along with button classes to adjust button sizes

<a href="#" class="btn btn-default large">Button text</a>

 

Apply class .round along with button classes for round button

<a href="#" class="btn btn-default large round">Button text</a>

 

Related Articles