A button with rounded corners, which gets a little lighter on hover, regardless of the starting color.
Copy to clipboard<a href='#'><div id='button-example-943'>Click here!</div></a>
Copy to clipboard
#button-example-943 {
color: #fffff7; border: 1px solid #652F2A; background-color: #652F2A; padding: 20px 40px; font-size: 18px; font-weight: 600; width: 200px; text-align: center; border-radius: 15px;
}#button-example-943:hover {
opacity: 0.8;
}