What I'm trying is that the black color at a distance (col-lg-2 in Bootstrap) that are 16.6666666% is blurred with blue, that is, the black is combined with the blue blue different tone on the other side.
Is it possible to do this madness?
I have this code
body{
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
background: -webkit-linear-gradient(#50a1ce,#020822);
background: -o-linear-gradient(#50a1ce,#020822);
background: -moz-linear-gradient(#50a1ce,#020822);
background: linear-gradient(#50a1ce,#020822);
background: -webkit-linear-gradient(to right,#171616 16.66666%);
background: -o-linear-gradient(to right,#171616 16.66666%);
background: -moz-linear-gradient(to right,#171616 16.66666%);
background: linear-gradient(to right,#171616 16.66666%);
}
This is my screen: