mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
50 lines
No EOL
901 B
HTML
50 lines
No EOL
901 B
HTML
<button class="button">
|
|
<span>Button</span>
|
|
</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by Niranjan360 - Tags: simple, button, dark, hover effect */
|
|
.button {
|
|
cursor: pointer;
|
|
background-color: black;
|
|
padding: 8px 25px;
|
|
border: solid 2px gold;
|
|
border-radius: 20px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: 0.1s linear 0.1s;
|
|
}
|
|
.button span {
|
|
color: gold;
|
|
font-weight: 500;
|
|
letter-spacing: 2px;
|
|
position: relative;
|
|
z-index: 2;
|
|
transition: 0.2s linear 0.1s;
|
|
}
|
|
.button::after {
|
|
display: block;
|
|
content: "";
|
|
background-color: gold;
|
|
width: 300px;
|
|
height: 300px;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
top: 100%;
|
|
transform: translateX(-40%);
|
|
transition: 0.2s linear 0.1s;
|
|
z-index: 1;
|
|
}
|
|
.button:hover {
|
|
box-shadow: 0px 0px 20px gold;
|
|
}
|
|
.button:hover::after {
|
|
top: -50%;
|
|
}
|
|
.button:hover span {
|
|
color: black;
|
|
letter-spacing: 4px;
|
|
}
|
|
|
|
</style>
|
|
|