Gradient Color Button #29
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 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-29 {
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;
/*** full width block ***/
/* width: 100%; */
}
.btn-29-colors {
background: linear-gradient(to right, gold, darkorange);
border-color: #fff;
color: #fff;
}
.btn-29:active {
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.24);
}
.btn-29:disabled {
pointer-events: none;
opacity: .65;
color: #7e7e7e;
box-shadow: none;
background: #dcdcdc;
}