Google button
button {
-webkit-user-select: none;
background: rgb(66, 133, 244);
border: 0;
border-radius: 2px;
box-sizing: border-box;
color: #fff;
cursor: pointer;
float: right;
font-size: .875em;
margin: 0;
padding: 10px 24px;
transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
button:hover {
box-shadow: 0 1px 3px rgba(0, 0, 0, .50);
}
button:active {
background: rgb(50, 102, 213);
outline: 0;
}
<button id="button" class="blue-button text-button">Click me</button>