I have the following code: http://jsfiddle.net/Leytgm3L/ and as you can see, I use here extended resource - bootstrap.min.css. So far the page looks like in the result of this fiddle. I would like to change it so the darker background is blurred (exactly like in this tutorial http://jordanhollinger.com/2014/01/29/css-gaussian-blur-behind-a-translucent-box/ ). Is it possible without modifing the bootstrap css file? I tried to replace this line:
background: rgba(0, 0, 0, 0.35);
with what they suggest on this tutorial:
#black{
-webkit-filter: blur(10px);
filter: url('/media/blur.svg#blur');
filter: blur(10px);
}
#black p, #black h1{
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px
}
but all I get is blurred text: http://jsfiddle.net/Leytgm3L/1/
could you help me with that?