bloqhead
7/23/2015 - 1:20 PM

skewbg.scss

@mixin skewbg($amount) {
	position: relative;
	&:after {
		@include transform( skewY($amount) );

		position: absolute;
		top: 0; left: 0; right: 0; bottom: 0;

		@content;
	}
}

// example
.homesection {
	@include skewbg(-2.5deg) {
		background: rgba(255,255,255,.5);
	}
}