Skip to content

Instantly share code, notes, and snippets.

@DLavin23
Created August 18, 2014 18:52
Show Gist options
  • Save DLavin23/6014f72930a16c24e931 to your computer and use it in GitHub Desktop.
Save DLavin23/6014f72930a16c24e931 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.0.rc.1)
// ----
.button-default, .button-primary {
-webkit-appearance: none;
-webkit-border-radius: 0;
background-color: white;
border: none;
color: white;
cursor: pointer;
display: inline-block;
font-family: inherit;
margin: 0;
padding: 0.5em 1em;
text-decoration: none;
text-align: center;
vertical-align: middle;
white-space: nowrap;
-webkit-transition: all 0.3s ease-in;
-moz-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
}
.button-default {
background: white;
border: 1px solid #e6e6e6;
color: black;
padding: 0.5em 1em;
width: auto;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.button-default:hover {
background: white;
}
.button-primary {
background: #428bca;
border: 1px solid #3071a9;
color: white;
padding: 0.5em 1em;
width: auto;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.button-primary:hover {
background: #6aa3d5;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment