Skip to content

Instantly share code, notes, and snippets.

@CoralSilver
Created March 26, 2017 20:44
Show Gist options
  • Save CoralSilver/842219ece4deeba0a1d02c8cd18808c2 to your computer and use it in GitHub Desktop.
Save CoralSilver/842219ece4deeba0a1d02c8cd18808c2 to your computer and use it in GitHub Desktop.
.button {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
background-color: #C85300;
border-radius: 4px;
border: none;
color: #fff;
cursor: pointer;
display: inline-block;
font-family: Arial, Helvetica, "Lucida Grande", Tahoma, Verdana, sans-serif;
font-size: 100%;
font-weight: 600;
line-height: 1;
padding: .8em 1em;
text-decoration: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
vertical-align: middle;
white-space: nowrap; }
.button:hover, .button:focus {
background-color: #d06b24;
color: #fff; }
.button:disabled {
cursor: not-allowed;
background-color: #e6b28c; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment