3D Button #53

CSS 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-53">Button 53</button>
Button CSS
.btn-53 {
    padding: 13px 20px;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #111111;
    border: none;
    border-radius: 10px;
    outline: none;
    background: #c6c4c4;
    box-shadow: 6px 6px 0 lightcoral;
    transition: all 0.3s ease;
    display: inline-block;
    user-select: none;
    cursor: pointer;
    /*** full width block ***/
    /* width: 100%; */
}

.btn-53:hover {
    box-shadow: 1px 1px 0 lightcoral;
}

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

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