Created
May 27, 2020 00:59
-
-
Save nickstewart95/c0a072ab02435cc93ed210011409eea9 to your computer and use it in GitHub Desktop.
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
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