mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
57 lines
915 B
HTML
57 lines
915 B
HTML
<button>
|
|
Button
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by Web-Potato - Tags: button */
|
|
button {
|
|
position: relative;
|
|
height: 50px;
|
|
width: 150px;
|
|
color: #FFF;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
letter-spacing: 2px;
|
|
background-color: #212121;
|
|
transition: all 0.5s;
|
|
border: none;
|
|
}
|
|
|
|
button::before {
|
|
position: absolute;
|
|
content: '';
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(29, 255, 86, 0.281);
|
|
border-radius: 5px;
|
|
transition: all 0.3s;
|
|
z-index: 1;
|
|
}
|
|
|
|
button:hover::before {
|
|
opacity: 0;
|
|
transform: scale(0.7,0.7);
|
|
}
|
|
|
|
button::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
transition: all 0.4s;
|
|
border: 1px solid rgba(29, 255, 86, 0.281);
|
|
border-radius: 5px;
|
|
transform: scale(1.5,1.5);
|
|
opacity: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
button:hover::after {
|
|
opacity: 1;
|
|
transform: scale(1,1);
|
|
}
|
|
|
|
</style>
|