Gradient Color Button #44

Gradient color button

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-44 btn-44-colors">Button 44</button>
Button CSS
.btn-44 {
    position: relative;
    padding: 12px 20px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 8px;
    display: inline-block;
    user-select: none;
    cursor: pointer;
    border: solid 0px;
    letter-spacing: 1.2px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    /*** full width block ***/
    /* width: 100%; */
}

.btn-44-colors {
    background: linear-gradient(90deg, #ee0979, #ff6a00);
    border-color: #fff;
    color: #fff;
}

.btn-44:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25), inset 0px -2px 0px rgba(255, 255, 255, 0.2);
}

.btn-44:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.24);
}

.btn-44:disabled {
    pointer-events: none;
    opacity: .65;
    color: #7e7e7e;
    box-shadow: none;
    background: #dcdcdc;
}