<div class="data-container">
<span class="btn">Hover Me</span>
</div>
body {
margin: 0;
padding: 0;
}
.btn {
cursor: pointer;
padding: 10px 20px;
background: white;
font-size: 28px;
border-top-right-radius: 10px;
border-bottom-left-radius: 10px;
transition: all 1s;
}
.btn:hover {
background: lightblue;
}
.data-container {
background: #ffebee;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.