I'd like to create this:
preferrably with SVG, Canvas or CSS3.
Ultimately, I intend to apply 4 separate multiply blend modes on the areas.
I'd also like to stretch this area to take up the full height/width of the web page.
I am able to do this to an extent here but it's not right for me. This uses:
box-sizing:border-box;
-mox-box-sizing:border-box;
border-top:rgba(25,25,255,0.8) solid 50vh; /* Nothing below IE8 or Firefox 19 */
border-bottom:rgba(25,25,255,0.8) solid 50vh; /* Nothing below IE8 or Firefox 19 */
border-left: rgba(0,0,255,0.5) solid 50vw;;
border-right: rgba(0,0,255,0.5) solid 50vw;;
-moz-background-clip: content; /* Firefox 3.6 */
-webkit-background-clip: content; /* Safari 4? Chrome 6? */
background-clip: content-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */
Can someone assist in achieving the shape in the graphic?
