Created
December 5, 2012 09:27
-
-
Save boriskaiser/4214241 to your computer and use it in GitHub Desktop.
Special handling of keyword arguments
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
#please-wait { | |
background: url(/images/logo.png); | |
position: absolute; | |
top: 3em; | |
right: 0; | |
bottom: 3em; | |
left: 0; | |
} |
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 wallpaper($image, $top: 0, $right: 0, $bottom: 0, $left: 0) { | |
background: $image; | |
position: absolute; | |
top: $top; | |
right: $right; | |
bottom: $bottom; | |
left: $left; | |
} | |
@mixin logo($offsets...) { | |
@include wallpaper(url(/images/logo.png), $offsets...); | |
} | |
#please-wait { | |
@include logo($top: 3em, $bottom: 3em); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment