Created
August 26, 2014 21:07
-
-
Save ynonp/29067bbf603619d01fd1 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 abs-pos($top:auto,$left:auto,$bottom:auto,$right:auto) { | |
position:absolute; | |
top: #{$top}px; | |
bottom:$bottom; | |
left:$left; | |
right:$right; | |
} | |
.test { | |
@include abs-pos($top:10,$left:10); | |
} |
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 link-color($normal,$hover) { | |
a { | |
color:$normal; | |
} | |
a:hover,a:focus { | |
color:$hover; | |
} | |
} | |
@mixin ellipsis { | |
overflow:hidden; | |
text-overflow:ellipsis; | |
white-space: nowrap; | |
} | |
.testlink { | |
@include link-color(#371,#0F0); | |
} | |
.test { | |
@include ellipsis; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment