mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
46 lines
No EOL
885 B
HTML
46 lines
No EOL
885 B
HTML
<button class="boton-elegante">Explorar</button>
|
|
|
|
<style>
|
|
/* From Uiverse.io by iZOXVL - Tags: simple, material design, animation, minimalist, black, button */
|
|
.boton-elegante {
|
|
padding: 15px 30px;
|
|
border: 2px solid #2c2c2c;
|
|
background-color: #1a1a1a;
|
|
color: #ffffff;
|
|
font-size: 1.2rem;
|
|
cursor: pointer;
|
|
border-radius: 30px;
|
|
transition: all 0.4s ease;
|
|
outline: none;
|
|
position: relative;
|
|
overflow: hidden;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.boton-elegante::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: radial-gradient(
|
|
circle,
|
|
rgba(255, 255, 255, 0.25) 0%,
|
|
rgba(255, 255, 255, 0) 70%
|
|
);
|
|
transform: scale(0);
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.boton-elegante:hover::after {
|
|
transform: scale(4);
|
|
}
|
|
|
|
.boton-elegante:hover {
|
|
border-color: #666666;
|
|
background: #292929;
|
|
}
|
|
|
|
</style>
|
|
|