پیشنمایش زنده
کد HTML
<button class="button">
<span>Join Now</span>
</button>
کد CSS
.button {
position: relative;
text-decoration: none;
color: #fff;
background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
padding: 14px 25px;
border-radius: 16px;
font-size: 1.25em;
cursor: pointer;
border: none;
}
.button span {
position: relative;
z-index: 1;
}
.button::before {
content: "";
position: absolute;
inset: 2px;
background: #272727;
border-radius: 14px;
transition: 0.5s;
}
.button:hover::before {
opacity: 0.7;
}
.button::after {
content: "";
position: absolute;
inset: 0px;
background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
border-radius: 9px;
transition: 0.5s;
opacity: 0;
filter: blur(20px);
}
.button:hover:after {
opacity: 1;
}