I am trying to access the styles of the background-image in reveal.js for three reasons:
a) I\'d like to override the background image in the overviewmode b) I\'d like t
You have to overwrite the ".backgrounds" class instead ".state-background". Background images are not placed in ".slides". That's why your CSS code wont blur the background images.
.backgrounds {
-webkit-filter: blur(5px);
-moz-filter: blur(50px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}