<div class="button-container">
<button type="button" class="press-button"></button>
</div>
.button-container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.press-button {
border: 2px solid #f5ebd3;
border-radius: 8px;
cursor: pointer;
min-width: 250px;
min-height: 80px;
background: #f1e5cb;
font-size: 24px;
letter-spacing: 0.5px;
position: relative;
transform: skewX(20deg);
}
.press-button:before {
border: 2px solid #f5ebd3;
border-radius: 8px;
cursor: pointer;
min-width: 250px;
min-height: 80px;
content: 'Press Me';
background: #F5EFE1;
display: grid;
place-items: center;
position: absolute;
top: -16px;
left: 16px;
z-index: -1;
transition: all 0.5s ease;
}
.press-button:hover:before {
top: -2px;
left: -2px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.