Jump to content

Black and White


arrbee99

Recommended Posts

arrbee99

So due to the genius of Google and the genius of the people who write the stuff that Google finds, I copied / stole this Black & White css bit

 

*{
-moz-filter: grayscale(100%);
-webkit-filter: grayscale(100%);
filter: gray; /* IE6-9 */
filter: grayscale(100%);
}

 

and it looks quite nice in Chrome at least.

 

5ac1a87860821_EmbyBW.jpg

 

So the only thing were it falls down is - does anyone know how to keep everything B&W without the actual movies being B&W as well - is that were it gets a lot more complicated ?

Edited by arrbee99
Link to comment
Share on other sites

Not sure if it will work, but try (you may need to find the css class of the video container:

*:not(video){
-moz-filter: grayscale(100%);
-webkit-filter: grayscale(100%);
filter: gray; /* IE6-9 */
filter: grayscale(100%);
}
Edited by zacmalin
Link to comment
Share on other sites

arrbee99

Thanks. Didn't seem to work though. Need to find that css class thingy. Unfortunately my css skills are entirely limited to copying other peoples good efforts...

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...