Hover Active Animated 3D Button #143

CSS Hover Active animated 3D 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-143">Button 143</button>
Button CSS
.btn-143 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 9px 8px 0px -1px #0adabe, 9px 8px 0px 1px #000;
    padding: 12px 25px;
    border-radius: 11px;
    border: 2px solid #000;
    background: radial-gradient(circle at top right, #2ff5ca, #0e7df8);
    transition: .3s;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /*** full width block ***/
    /* width: 100%; */
}

.btn-143:hover {
    transition: .3s;
    transform: translate(-.3em, -.3em);
    box-shadow: 14px 13px 0px -1px #0e7df8, 14px 13px 0px 1px #000;
    border: 2px solid #000;
}

.btn-143:active {
    transition: .3s;
    transform: translate(.6em, .6em);
    box-shadow: 0px 0px 0px -1px #BEE2F9, 0px 0px 0px 0.1px#000;
}

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