Skip to content

Instantly share code, notes, and snippets.

@mikedijkstra
Created January 16, 2017 19:52
Show Gist options
  • Save mikedijkstra/4853efd1540742ee52f5c29a3b7b5fe3 to your computer and use it in GitHub Desktop.
Save mikedijkstra/4853efd1540742ee52f5c29a3b7b5fe3 to your computer and use it in GitHub Desktop.
Background Mask Mixin
@mixin background-mask($background-color) {
position: relative;
&:before {
@include animated;
background-color: $background-color;
bottom: 0;
content: "";
left: 0;
right: 0;
position: absolute;
pointer-events: none;
top: 0;
z-index: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment