Created
February 24, 2015 10:14
-
-
Save conormcafee/9eb36aa2d321b4a5729c to your computer and use it in GitHub Desktop.
Quickly Style Inputs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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