Skip to content

Instantly share code, notes, and snippets.

@TrainerGuy22
Last active August 29, 2015 14:05
Show Gist options
  • Save TrainerGuy22/06be5f49a199a5cc9668 to your computer and use it in GitHub Desktop.
Save TrainerGuy22/06be5f49a199a5cc9668 to your computer and use it in GitHub Desktop.
.btn {
display: inline-block;
transition-timing-function: ease;
transition-duration: 0.2s;
transition-property: background-color, color, border-color;
background-color: transparent;
padding: 8px;
border-radius: 3px;
border: 1px solid #00AACC;
color: #00AACC;
font-family:"Helvetica Neue", Helvetica, sans-serif;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.btn:hover {
background-color: #00AACC;
color: white;
border-color: #00AACC;
cursor: pointer;
}
.btn:active {
color: white;
border-color: #008EAB;
background-color: #008EAB;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment