3D Button #133

CSS white shadow 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-133">Button 133</button>
Button CSS
.btn-133 {
    transition: all 0.5s;
    font-size: 17px;
    padding: 1ch 2ch;
    background-color: white;
    color: #000;
    border: none;
    box-shadow: 2px 2px 0px hsl(0, 0%, 90%),
        4px 4px 0px #cccccc,
        6px 6px 0px #b3b3b3,
        8px 8px 0px #999999,
        10px 10px 0px grey,
        12px 12px 0px #666666,
        14px 14px 0px #4d4d4d,
        16px 16px 0px #333333,
        18px 18px 0px #1a1a1a;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /*** full width block ***/
    /* width: 100%; */
}

.btn-133:hover {
    background-color: hsl(0, 0%, 50%);
    color: #fff;
    box-shadow: none;
}

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