galaxy/Buttons/vinodjangid07_average-pig-54.html

44 lines
No EOL
800 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<button class="button">
<span class="bracket left"></span>
<span class="text">Code</span>
<span class="bracket right"></span>
</button>
<style>
/* From Uiverse.io by vinodjangid07 - Tags: animation, black, button, code, hover effect */
.button {
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
height: 45px;
width: 45px;
border: none;
border-radius: 10px;
background-color: black;
cursor: pointer;
transition: all 0.3s;
overflow: hidden;
}
.bracket {
font-size: 18px;
transition: all 0.3s;
color: rgb(182, 104, 255);
}
.text {
font-size: 15px;
width: 0;
transform: scale(0);
transition: all 0.3s;
color: white;
}
.button:hover {
width: 100px;
}
.button:hover .text {
transform: scale(1);
width: 40px;
}
</style>