galaxy/Buttons/sujithg444_nasty-mule-87.html

27 lines
No EOL
645 B
HTML

<button class="gradient-button">⚡ Join now</button>
<style>
/* From Uiverse.io by sujithg444 - Tags: simple, button, hover effect, hoverme, buttons, multicolor */
.gradient-button {
background: linear-gradient(
to right,
#ff5370,
#ff869a
); /* Gradient from pink to orange */
border: none;
color: white;
padding: 10px 20px;
border-radius: 25px;
cursor: pointer;
font-size: 16px;
font-weight: bold;
text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.gradient-button:hover {
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
</style>