Last active
December 22, 2015 22:49
-
-
Save mkempe/6542914 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 arrow($color: white, $padding: 0 0 0 pem(15)) | |
background: transparent url('/images/bundle/icons/arrows/#{$color}.gif') no-repeat left center | |
padding: $padding | |
@mixin underscore($border-color: #FFF, $border-bottom-width: 1px, $padding: 0 0 pem(1)) | |
display: inline-block | |
.label | |
border-bottom: #{$border-bottom-width} solid transparent | |
padding: $padding | |
@include transition(border-color 0.5s ease-out) | |
&:hover, | |
&:focus, | |
&.active | |
.label | |
border-color: $border-color | |
@include transition(border-color 0.5s ease-in) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment