Skip to content

Instantly share code, notes, and snippets.

@andrexduarte
Created August 29, 2013 18:25
Show Gist options
  • Save andrexduarte/6381604 to your computer and use it in GitHub Desktop.
Save andrexduarte/6381604 to your computer and use it in GitHub Desktop.
@mixin before-after-background($height, $side-width, $before, $after) {
height: $height;
position: relative;
z-index: 1;
&:before, &:after {
content: '';
display: block;
height: $height;
position: absolute;
top: 0px;
width: $side-width;
z-index: -1;
}
&:before {
background-image: $before;
left: -$side-width;
}
&:after {
background-image: $after;
right: -$side-width;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment