Buttons
Sass file: /_scss/components/buttons.scss
<div class="sg-header">
Primary
</div>
<div class="sg-buttons">
<a href="/" class="button">Button text</a>
<button class="button">Button text</button>
<input type="button" class="button" value="Button text">
</div>
<div class="sg-header">
Reverse
</div>
<div class="sg-buttons sg-buttons--button-reverse">
<a href="/" class="button-reverse">Button text</a>
<button class="button-reverse">Button text</button>
<input type="button" class="button-reverse" value="Button text">
</div>
<div class="sg-header">
Cancel/Warning
</div>
<div class="sg-buttons">
<a href="/" class="button-disable">Button text</a>
<button class="button-disable">Button text</button>
<input type="button" class="button-disable" value="Button text">
</div>
<div class="sg-header">
Blog Image Buttons
</div>
<div class="sg-buttons">
<div class="button-prev">
<a href="/" class="button-prev__text">Prev Button</a>
</div>
<div class="button-prev">
<button class="button-prev__text">Prev Button</button>
</div>
<div class="button-prev">
<input type="button" class="button-prev__text" value="Prev Button">
</div>
</div>
<div class="sg-buttons">
<div class="button-next">
<a href="/" class="button-next__text">Next Button</a>
</div>
<div class="button-next">
<button class="button-next__text">Next Button</button>
</div>
<div class="button-next">
<input type="button" class="button-next__text" value="Next Button">
</div>
</div>
<div class="sg-buttons">
<div class="button-top">
<a href="/" class="button-top__text">Top Button</a>
</div>
<div class="button-top">
<button class="button-top__text">Top Button</button>
</div>
<div class="button-top">
<input type="button" class="button-top__text" value="Top Button">
</div>
</div>
<div class="sg-buttons">
<div class="button-bottom">
<a href="/" class="button-bottom__text">Bottom Button</a>
</div>
<div class="button-bottom">
<button class="button-bottom__text">Bottom Button</button>
</div>
<div class="button-bottom">
<input type="button" class="button-bottom__text" value="Bottom Button">
</div>
</div>
<div class="sg-header">
Large Buttons
</div>
<div class="sg-buttons">
<a href="/" class="button-large">Button text</a>
<button class="button-large">Button text</button>
<input type="button" class="button-large" value="Button text">
</div>