Created
February 25, 2013 13:24
-
-
Save reynish/5029775 to your computer and use it in GitHub Desktop.
Rotated square repeating background
This file contains 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
@import "compass"; | |
$col1: rgba(0,0,0,0); | |
$col2: #000; | |
body { | |
@include background ( | |
linear-gradient(65deg, #F00 23%, $col1 10%), | |
linear-gradient(155deg, #F00 23%, $col1 10%), | |
linear-gradient(245deg, #F00 23%, rgba(0,0,0,0) 10%), | |
linear-gradient(335deg, #F00 23%, $col1 10%), | |
$col2 | |
); | |
background-size: 50px 50px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment