Icons by Feather Icons

Naked

No borders, no background just text, icons and a handy hover effect underline. This is the naked button that defies the expectation that a button should conform to hetero-button norms.

Change what the button says:

HTML

<div class="html_button btn-left">
    <a href="#" class="btn naked large">Your button text here</a>
</div>

CSS

.naked {
    background:none;
    color:black;
    font-weight:bold;
    transition:0.3s;
    opacity:1;
}
.naked:hover {
    opacity:0.6;
    transition:0.3s;
    text-decoration:underline;
}

Check out the docs for a full installation and how-to guide for HTML Buttons.