پیشنمایش زنده
کد HTML
<button>
All products
</button>
کد CSS
button {
font-size: 1rem;
padding: 0.8em 2em;
background-color: #000;
border: 3px solid yellow;
border-radius: 1em;
color: #fff;
font-weight: bolder;
transition: cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
box-shadow: -5px 5px 0px 0px yellow;
}
button:hover {
transform: translate(5px, -5px);
}