Download Button With Icon #128

CSS Download icon button. Button Hover highlight border

Adding these style CSS buttons to your website is easier than you think. Simply copy and paste the CSS code provided with each button design into your stylesheet

Preview Button Style

You can view the default style of buttons, the disabled state mode style of buttons, and the full-width block style of the button here. Some buttons style may not display in full width format

Button style

Disabled style

Full width block style

Button Source Code HTML and CSS

Click the button below to download the source code or edit it live.
To copy this click on the icon at the top right of the code box
Button HTML
<button class="btn-128">
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20">
    <path fill="none" d="M0 0h24v24H0z"></path>
    <path fill="currentColor" d="M1 14.5a6.496 6.496 0 0 1 3.064-5.519 8.001 8.001 0 0 1 15.872 0 6.5 6.5 0 0 1-2.936 12L7 21c-3.356-.274-6-3.078-6-6.5zm15.848 4.487a4.5 4.5 0 0 0 2.03-8.309l-.807-.503-.12-.942a6.001 6.001 0 0 0-11.903 0l-.12.942-.805.503a4.5 4.5 0 0 0 2.029 8.309l.173.013h9.35l.173-.013zM13 12h3l-4 5-4-5h3V8h2v4z"></path>
  </svg>
  <span>Button 128</span>
</button>
Button CSS
.btn-128 {
    font-size: 16px;
    padding: 12px 13px;
    color: white;
    background: linear-gradient(0deg, #009688 0%, #24d2c2 100%);
    border: 2px solid #000;
    border-radius: 12px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
    box-sizing: border-box;
    /*** full width block ***/
    /* width: 100%; */
}

.btn-128 svg {
    margin-right: 8px;
}

.btn-128:hover {
    border-color: white;
    box-shadow: 0 0.5em 1.5em -0.5em #2b2b2b;
}

.btn-128:active {
    box-shadow: inset 0 0.3em 1em -0.5em #8d3320;
}

/*** disabled style ***/
.btn-128:disabled {
    pointer-events: none;
    opacity: .65;
    color: #7e7e7e;
    background: #dcdcdc;
    text-shadow: none;
    box-shadow: none;
    border-color: #b6b6b6;
}