پیشنمایش زنده
کد HTML
<button class="btn">PLAY</button>
کد CSS
.btn {
padding: 0.5em 2em 0.5em 2.5em;
font-size: 1em;
font-weight: bold;
border-radius: 15px;
color: #fff6fb;
letter-spacing: 0.3em;
text-shadow: -2px 2px 5px #fd3084;
background-color: transparent;
border: 2px solid #feb1de;
box-shadow:
0 0 0px 1px #f11271,
0 0 10px 2px #fd3084,
inset 0 0 0px 1px #f11271,
inset 0 0 10px 2px #fd3084;
transition: 100ms;
cursor: pointer;
}
.btn:hover {
box-shadow:
0 0 0px 1px #f11271,
0 0 10px 2px #fd3084,
inset 0 0 0px 1px #f11271,
inset 0 0 30px 2px #fd3084;
text-shadow: 0 0 10px #fd3084;
transform: translateY(-5px);
}
.btn:active {
box-shadow:
0 0 0px 1px #f11271,
0 0 25px 2px #fd3084,
inset 0 0 0px 1px #f11271,
inset 0 0 30px 2px #fd3084;
transform: translateY(1px);
}