پیشنمایش زنده
کد HTML
<button class="button"> Button
</button>
کد CSS
.button {
color: #8707ff;
border: 2px solid #8707ff;
border-radius: 10px;
padding: 10px 25px;
background: transparent;
}
.button:hover {
box-shadow: 2px 2px 15px #8707ff inset;
}
.button:active {
box-shadow: 2px 2px 20px #8707ff inset;
}