Last active
November 2, 2016 09:44
-
-
Save advitum/ee2b5c5f072c53ea8bdf6141abea3119 to your computer and use it in GitHub Desktop.
Just some random useful Compass mixins I have written and collected over the time.
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
// Proper clearfix without overflow:hidden | |
@mixin clearfix { | |
&:after { | |
content: ""; | |
width: 100%; | |
height: 0; | |
display: block; | |
clear: both; | |
} | |
} | |
// On hover, the color property will be transitioned | |
@mixin hoverToColor($color) { | |
@include transition(color 0.1s linear); | |
&:hover, &:active, &:focus { | |
color: $color; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment