Skip to content

Instantly share code, notes, and snippets.

@ninjasort
Created January 26, 2015 04:25
Show Gist options
  • Save ninjasort/7a2d24dc8cdf15d0217b to your computer and use it in GitHub Desktop.
Save ninjasort/7a2d24dc8cdf15d0217b to your computer and use it in GitHub Desktop.
Sass Mixins
@mixin back-drop() {
position: absolute;
width: 100%;
height: 100%;
margin: auto;
top: 0;
bottom: 0;
right: 0;
left: 0;
z-index: 100;
background: rgba(0, 0, 0, 0.73);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment