Skip to content

Instantly share code, notes, and snippets.

@conormcafee
Created February 24, 2015 10:14
Show Gist options
  • Save conormcafee/9eb36aa2d321b4a5729c to your computer and use it in GitHub Desktop.
Save conormcafee/9eb36aa2d321b4a5729c to your computer and use it in GitHub Desktop.
Quickly Style Inputs
@mixin input($radius, $text-color, $border-color) {
border-radius: $radius;
box-shadow: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
color: $text-color;
border: 1px solid $border-color;
&:focus {
outline: none;
border: 1px solid darken($border-color, 20%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment