Skip to content

Instantly share code, notes, and snippets.

@hansschmucker
Last active September 3, 2017 10:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hansschmucker/485053838a62a247dbae1dff6bb87fac to your computer and use it in GitHub Desktop.
Save hansschmucker/485053838a62a247dbae1dff6bb87fac to your computer and use it in GitHub Desktop.
#navigator-toolbox{
background:transparent;
}
#navigator-toolbox > *{
background:#999;
}
#navigator-toolbox {
position: relative;
height: 8px;
transition:.2s linear all;
overflow: hidden;
opacity:0;
margin-bottom: 0px;
z-index: 1;
}
#navigator-toolbox:hover {
height: 256px;
margin-bottom: -248px;
overflow:extend;
opacity:1;
}
#content-deck{
position:relative;
z-index: 0;
}
#titlebar-buttonbox{
opacity:0;
height: 4px;
overflow: hidden;
transition:.2s linear all;
}
#titlebar-buttonbox:hover{
opacity:1;
height: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment