Gold Color Gradient Button #69

CSS Golden Premium Color Gradient 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-69">Button 69</button>
Button CSS
.btn-69 {
	display: inline-block;
	outline: none;
	font-size: 16px;
	box-sizing: border-box;
	border-radius: 5px;
	padding: 13px 25px;
	text-transform: uppercase;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16),
	            0 3px 6px rgba(110, 80, 20, 0.4),
		        inset 0 -2px 5px 1px rgba(139, 66, 8, 1),
		        inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
	background-image: linear-gradient(160deg,  #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
	border: 1px solid #a55d07;
	color: rgb(120, 50, 5);
	text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	background-size: 100% 100%;
	background-position: center;
	user-select: none;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	/*** full width block ***/
    /* width: 100%; */
}

.btn-69:focus,
.btn-69:hover {
	background-size: 150% 150%;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19),
	            0 6px 6px rgba(0, 0, 0, 0.23),
	            inset 0 -2px 5px 1px #b17d10,
	            inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
	border: 1px solid rgba(165, 93, 7, 0.6);
	color: rgba(120, 50, 5, 0.8);
}

.btn-69:active {
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16),
	            0 3px 6px rgba(110, 80, 20, 0.4),
	            inset 0 -2px 5px 1px #b17d10,
	            inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
}

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