پیشنمایش زنده
کد HTML
<button class="button">Play it</button>
کد CSS
.button {
cursor: pointer;
padding: 15px 40px 15px 40px;
border-radius: 10px;
border-style: double;
font-weight: 600;
background-image: linear-gradient(
rgb(54, 53, 53),
rgb(0, 0, 0),
rgb(54, 54, 54)
);
color: rgb(164, 164, 162);
font-family: Verdana, Geneva, Tahoma, sans-serif;
border-color: rgb(0, 0, 0);
transition: 400ms;
}
.button:hover {
transition: 400ms;
border-style: double;
border-color: rgb(208, 207, 207);
color: rgb(219, 216, 216);
font-size: 16px;
text-shadow: 1px 10px 5px rgb(61, 61, 61);
}