mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
50 lines
894 B
HTML
50 lines
894 B
HTML
<button class="button">
|
|
Subscribe
|
|
</button>
|
|
<style>
|
|
/* From Uiverse.io by gharsh11032000 - Tags: button, hover effect, cool btn */
|
|
.button {
|
|
cursor: pointer;
|
|
position: relative;
|
|
padding: 10px 24px;
|
|
font-size: 18px;
|
|
color: rgb(193, 163, 98);
|
|
border: 2px solid rgb(193, 163, 98);
|
|
border-radius: 34px;
|
|
background-color: transparent;
|
|
font-weight: 600;
|
|
transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.button::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
margin: auto;
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: inherit;
|
|
scale: 0;
|
|
z-index: -1;
|
|
background-color: rgb(193, 163, 98);
|
|
transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
|
|
}
|
|
|
|
.button:hover::before {
|
|
scale: 3;
|
|
}
|
|
|
|
.button:hover {
|
|
color: #212121;
|
|
scale: 1.1;
|
|
box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
|
|
}
|
|
|
|
.button:active {
|
|
scale: 1;
|
|
}
|
|
|
|
|
|
|
|
</style>
|