<body>
<main class="container">
<button class="btn">Submit</button>
</main>
</body>
body {
background: lightblue;
}
.container {
text-align: center;
}
.btn {
margin: 20px auto;
padding: 20px;
width: 180px;
border-radius: 20px;
font-size: 1.4em;
background: papayawhip;
transition: background .5s ease .25s, width .25s ease;
}
.btn:hover {
background: azure;
width: 210px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.