Skip to content

Instantly share code, notes, and snippets.

@gyver98
Created March 29, 2017 03:46
Show Gist options
  • Save gyver98/6f13ec5d1fbf5aa5659b50b3a8d88c09 to your computer and use it in GitHub Desktop.
Save gyver98/6f13ec5d1fbf5aa5659b50b3a8d88c09 to your computer and use it in GitHub Desktop.
.header {
padding: 25px 0;
text-align: center;
background: #222;
}
.header img {
width: 100px;
height: 13px;
}
.header-animation {
-webkit-animation: fade-in 2.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
-moz-animation: fade-in 2.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
animation: fade-in 2.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fade-in{0%{opacity:0}100%{opacity:1}}
@keyframes fade-in{0%{opacity:0}100%{opacity:1}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment