what is the best way of create landing page with two columns of divs which has responsive half of screen like this?
What I have so far: http://jsbin.com/kuxizepiqo/edit?html,css,output
.t-content {
width:100%;
height:100%;
display:block;
overflow:hidden;
background:black;
position:relative;
}
.t-right {
width:100%;
height:100%;
display:block;
overflow:hidden;
background:violet;
position:absolute;
bottom:0;
right:0;
transform-origin: top right;
transform: rotate(-50deg);
z-index: 100;
}