<div class="main">
<button class="works">메뉴 버튼</button>
</div>
body{
background-color: #1D2025;
}
.main{
text-align: center;
margin-top: 20px;
}
.works{
position: relative;
width: 150px;
height: 45px;
font-size: 18px;
font-weight: bold;
border: none;
background-color: rgb(255, 255, 255);
transition: 0.5s cubic-bezier(0.47, 0, 0.75, 0.72);
cursor: pointer;
}
.works:hover{
border: 2px solid #b247ff;
color: #b247ff;
background-color: #1D2025;
box-shadow: 0 0 20px #b247ff
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.