Skip to content

Instantly share code, notes, and snippets.

@is8r
Last active April 25, 2016 11:12
Show Gist options
  • Save is8r/3129300f810bf2ee97054e3bc986a902 to your computer and use it in GitHub Desktop.
Save is8r/3129300f810bf2ee97054e3bc986a902 to your computer and use it in GitHub Desktop.
.followheader
$h: 50px
@keyframes enter
from
top: -$h
to
top: 0px
@keyframes leave
from
top: 0px
to
top: -$h
position: absolute
top: 0
left: 0
width: 100%
z-index: 999
height: $h
&.is-open
position: fixed
animation: enter 0.3s ease-out
top: 0
&.is-close
position: fixed
animation: leave 0.3s ease-out
top: -$h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment