mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
36 lines
623 B
HTML
36 lines
623 B
HTML
<button> Pick up!
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by xueyuantan - Tags: button */
|
|
button {
|
|
width: 9em;
|
|
height: 3em;
|
|
border-radius: 30em;
|
|
font-size: 15px;
|
|
font-family: inherit;
|
|
border: none;
|
|
position: relative;
|
|
overflow: hidden;
|
|
z-index: 1;
|
|
box-shadow: 6px 6px 12px #c5c5c5,
|
|
-6px -6px 12px #ffffff;
|
|
}
|
|
|
|
button::before {
|
|
content: '';
|
|
width: 0;
|
|
height: 3em;
|
|
border-radius: 30em;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
background-image: linear-gradient(to right, #0fd850 0%, #f9f047 100%);
|
|
transition: .5s ease;
|
|
display: block;
|
|
z-index: -1;
|
|
}
|
|
|
|
button:hover::before {
|
|
width: 9em;
|
|
}
|
|
</style>
|