I have this gradient background but I don't want it to repeat the way it does to fill the page, I want it to be one large gradient that fills the page.
html {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background: #70bg32;
background-repeat: no-repeat;
background: -webkit-linear-gradient(to left top, blue, red);
background: -moz-linear-gradient(to left top, blue, red);
background: -ms-linear-gradient(to left top, blue, red);
background: -o-linear-gradient(to left top, blue, red);
background: linear-gradient(to left top, blue, red);
}