mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
21 lines
521 B
HTML
21 lines
521 B
HTML
<button>
|
|
✨ Let's go !
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by killiandvcz - Tags: button */
|
|
button {
|
|
padding: 7px 25px;
|
|
border: none;
|
|
background: linear-gradient(-15deg, rgb(31, 33, 124) 0 50%, rgb(202, 76, 214) 90% 95%, rgb(221, 36, 83) 100%);
|
|
box-shadow: inset rgba(255, 255, 255, 0.418) 3px 3px 5px;
|
|
color: white;
|
|
font-family: 'Lora', serif;
|
|
font-style: italic;
|
|
border-radius: 50px;
|
|
transition: all .4s;
|
|
}
|
|
|
|
button:hover {
|
|
box-shadow: inset rgba(255, 255, 255, 0.473) 4px 4px 5px;
|
|
}
|
|
</style>
|