mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
47 lines
No EOL
799 B
HTML
47 lines
No EOL
799 B
HTML
<button class="button">Button</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by LeryLey - Tags: button, hover, dark */
|
|
.button {
|
|
cursor: pointer;
|
|
position: relative;
|
|
width: 125px;
|
|
height: 40px;
|
|
border-radius: 60px;
|
|
background: #222;
|
|
color: #fff;
|
|
outline: none;
|
|
overflow: hidden;
|
|
border: 2px solid rgb(56, 56, 56);
|
|
font-weight: 600;
|
|
z-index: 1;
|
|
transition: 0.5s;
|
|
}
|
|
.button:hover {
|
|
color: white;
|
|
}
|
|
.button::before {
|
|
position: absolute;
|
|
content: "";
|
|
width: 0;
|
|
height: 0;
|
|
border-radius: 50%;
|
|
background: linear-gradient(
|
|
to right,
|
|
rgb(59, 59, 184),
|
|
rgb(163, 65, 65),
|
|
rgb(172, 26, 26)
|
|
);
|
|
left: -15px;
|
|
bottom: 0;
|
|
transform: translateY(50%);
|
|
transition: 0.5s;
|
|
z-index: -1;
|
|
}
|
|
.button:hover:before {
|
|
width: 170px;
|
|
height: 170px;
|
|
}
|
|
|
|
</style>
|
|
|