mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
20 lines
380 B
HTML
20 lines
380 B
HTML
<button>
|
|
Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by amralashi - Tags: button */
|
|
button {
|
|
width: 10rem;
|
|
height: 3rem;
|
|
background: linear-gradient(135deg, purple, pink, blue, aqua);
|
|
border-radius: 3rem;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: white;
|
|
border: none;
|
|
}
|
|
|
|
button:hover {
|
|
background: linear-gradient(100deg, purple, pink, blue, aqua);
|
|
}
|
|
</style>
|