Skip to content

Instantly share code, notes, and snippets.

@rocktronica
Created March 25, 2012 22:58
Show Gist options
  • Save rocktronica/2200795 to your computer and use it in GitHub Desktop.
Save rocktronica/2200795 to your computer and use it in GitHub Desktop.
Cleaner Netflix CSS
#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; }
@rocktronica
Copy link
Author

@rocktronica
Copy link
Author

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