Buttons

HTML

<link rel="stylesheet" href="http://inuitcss.com/inuit.min.css">
<p>
    <a href=# class="btn  btn--small btn--login">Log in</a>
</p>

<p>
    <a href=# class="btn  btn--login">Log in</a>
</p>

CSS

/**
 * These demo styles sit on top of inuit.css
 * github.com/csswizardry/inuit.css/blob/master/inuit.css/partials/objects/_buttons.scss
 */

html{
    font:1em/1.5 Georgia, serif;
    padding:5%;
    background-color:#fff;
    color:#333;
}

.btn--login{
    background-color:#BADA55;
    color:#fff;
}