galaxy/Buttons/satyamchaudharydev_dry-sloth-51.html

76 lines
1.4 KiB
HTML

<button>
<p>Subscribe</p>
<svg stroke-width="4" stroke="currentColor" viewBox="0 0 24 24" fill="none" class="h-6 w-6" xmlns="http://www.w3.org/2000/svg">
<path d="M14 5l7 7m0 0l-7 7m7-7H3" stroke-linejoin="round" stroke-linecap="round"></path>
</svg>
</button>
<style>
/* From Uiverse.io by satyamchaudharydev - Tags: button */
button {
padding: 0;
margin: 0;
border: none;
background: none;
}
button {
--primary-color: #111;
--hovered-color: #c84747;
position: relative;
display: flex;
font-weight: 600;
font-size: 20px;
gap: 0.5rem;
align-items: center;
}
button p {
margin: 0;
position: relative;
font-size: 20px;
color: var(--primary-color)
}
button::after {
position: absolute;
content: "";
width: 0;
left: 0;
bottom: -7px;
background: var(--hovered-color);
height: 2px;
transition: 0.3s ease-out;
}
button p::before {
position: absolute;
/* box-sizing: border-box; */
content: "Subscribe";
width: 0%;
inset: 0;
color: var(--hovered-color);
overflow: hidden;
transition: 0.3s ease-out;
}
button:hover::after {
width: 100%;
}
button:hover p::before {
width: 100%;
}
button:hover svg {
transform: translateX(4px);
color: var(--hovered-color)
}
button svg {
color: var(--primary-color);
transition: 0.2s;
position: relative;
width: 15px;
transition-delay: 0.2s;
}
</style>