<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 {
box-shadow: 0 0 30px #ffffff;
outline-offset: 5px;
outline: 2px solid #ffffff;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.