Created
January 26, 2015 04:25
-
-
Save ninjasort/7a2d24dc8cdf15d0217b to your computer and use it in GitHub Desktop.
Sass Mixins
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 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