Black Color Button #160
CSS Black dark 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 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
.btn-160 {
box-shadow: 0px 3px 3px rgba(0, 0, 0, .7);
color: #ffffff;
padding: 15px;
background: #2F3336;
border-radius: 12px;
text-shadow: 0px 0px 40px #71D4FE, 0px 0px 80px #71D4FE;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
text-decoration: none;
user-select: none;
display: inline-flex;
justify-content: center;
align-items: center;
font-size: 14px;
letter-spacing: 1px;
border: none;
/*** full width block ***/
/* width: 100%; */
}
.btn-160:active {
box-shadow: 0 0px 4px rgba(68, 68, 68, 0.25);
}
/*** disabled style ***/
.btn-160:disabled {
pointer-events: none;
opacity: .65;
color: #7e7e7e;
background: #dcdcdc;
box-shadow: none;
text-shadow: none;
}