Created
March 25, 2012 22:58
-
-
Save rocktronica/2200795 to your computer and use it in GitHub Desktop.
Cleaner Netflix CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SLPlayer { | |
position: absolute; | |
top: 0; | |
left: 0; | |
bottom: 0; | |
width: 100% !important; | |
height: 100% !important; | |
} | |
body { | |
position: fixed; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: -71px; | |
-webkit-transition: bottom .5s ease; | |
transition: bottom .5s ease; | |
transition: bottom .5s ease; | |
} | |
body:hover { bottom: 0; } |
Updated to show/hide bottom navigation via :hover
https://gist.github.com/2200795/cc6f0f81532b5568029c7a80175127e3052a4798
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://iamnotagoodartist.com/other/cleaner-netflix-css/