Skip to content

Instantly share code, notes, and snippets.

@reynish
Created February 25, 2013 13:24
Show Gist options
  • Save reynish/5029775 to your computer and use it in GitHub Desktop.
Save reynish/5029775 to your computer and use it in GitHub Desktop.
Rotated square repeating background
@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