Created
November 30, 2017 09:03
-
-
Save yowainwright/c9d265b42c829a542f83e95c35a7ee04 to your computer and use it in GitHub Desktop.
Useful Stripes SCSS Mixin
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 stripes($backgroundColor: black) { | |
background-color: $backgroundColor; | |
background-image: linear-gradient(to bottom right, transparent, transparent 25%, rgba(255,255,255,.2) 25%, rgba(255,255,255,.2) 50%, transparent 50%, transparent 75%, rgba(255,255,255,.2) 75%, rgba(255,255,255,.2)); | |
background-size: 4px 4px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment