Skip to content

Instantly share code, notes, and snippets.

@nickstewart95
Created May 27, 2020 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickstewart95/c0a072ab02435cc93ed210011409eea9 to your computer and use it in GitHub Desktop.
Save nickstewart95/c0a072ab02435cc93ed210011409eea9 to your computer and use it in GitHub Desktop.
animation: navigation-base 1s 1;
@keyframes navigation-base {
0% {
width: 0px;
height: 0px;
box-shadow: 0px;
}
40% {
width: 100%;
height: 0px;
}
99% {
box-shadow: 0px;
}
100% {
height: 60px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment