mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
27 lines
No EOL
645 B
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>
|
|
|