mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
52 lines
No EOL
910 B
HTML
52 lines
No EOL
910 B
HTML
<button class="button type1">
|
|
<span class="btn-txt">Hello</span>
|
|
</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by Gaurav-WebDev - Tags: black, button, dark, animated, hover effect */
|
|
.button {
|
|
height: 50px;
|
|
width: 200px;
|
|
position: relative;
|
|
background-color: transparent;
|
|
cursor: pointer;
|
|
border: 2px solid #252525;
|
|
overflow: hidden;
|
|
border-radius: 30px;
|
|
color: #333;
|
|
transition: all 0.5s ease-in-out;
|
|
}
|
|
|
|
.btn-txt {
|
|
z-index: 1;
|
|
font-weight: 800;
|
|
letter-spacing: 4px;
|
|
}
|
|
|
|
.type1::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
transition: all 0.5s ease-in-out;
|
|
background-color: #333;
|
|
border-radius: 30px;
|
|
visibility: hidden;
|
|
height: 10px;
|
|
width: 10px;
|
|
z-index: -1;
|
|
}
|
|
|
|
.button:hover {
|
|
box-shadow: 1px 1px 200px #252525;
|
|
color: #fff;
|
|
border: none;
|
|
}
|
|
|
|
.type1:hover::after {
|
|
visibility: visible;
|
|
transform: scale(100) translateX(2px);
|
|
}
|
|
|
|
</style>
|
|
|