Animated Golden Premium Button #77
CSS Hover Animated Golden 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
<button class="btn-77">
<svg viewBox="0 0 576 512" height="1em" class="logoIcon"><path d="M309 106c11.4-7 19-19.7 19-34c0-22.1-17.9-40-40-40s-40 17.9-40 40c0 14.4 7.6 27 19 34L209.7 220.6c-9.1 18.2-32.7 23.4-48.6 10.7L72 160c5-6.7 8-15 8-24c0-22.1-17.9-40-40-40S0 113.9 0 136s17.9 40 40 40c.2 0 .5 0 .7 0L86.4 427.4c5.5 30.4 32 52.6 63 52.6H426.6c30.9 0 57.4-22.1 63-52.6L535.3 176c.2 0 .5 0 .7 0c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40c0 9 3 17.3 8 24l-89.1 71.3c-15.9 12.7-39.5 7.5-48.6-10.7L309 106z"></path></svg>
Button 77
</button>
.btn-77 {
width: 150px;
height: 40px;
border: none;
border-radius: 40px;
background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 14px;
color: rgb(121, 103, 3);
font-weight: 600;
position: relative;
z-index: 2;
transition-duration: 3s;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
background-size: 200% 200%;
text-decoration: none;
cursor: pointer;
font-family: Arial, Helvetica, sans-serif;
/*** full width block ***/
/* width: 100%; */
}
.logoIcon path {
fill: rgb(121, 103, 3);
}
.btn-77:hover {
transform: scale(0.95);
transition-duration: 3s;
animation: gradient 5s ease infinite;
background-position: right;
}
.btn-77:disabled {
pointer-events: none;
opacity: .65;
color: #7e7e7e;
background: #dcdcdc;
box-shadow: none;
}