Move to Adam's Blog template

This commit is contained in:
Madison Scott-Clary
2017-09-06 13:04:59 -06:00
parent faf67db776
commit a814cdf0ab
58 changed files with 8508 additions and 213 deletions

View File

@ -0,0 +1,42 @@
.main-header,
.page-image,
.page-content,
.about-container,
.post-card-box {
animation-duration: 0.7s;
animation-fill-mode: both;
animation-name: fadeInDown;
}
.main-header,
.page-image {
animation-delay: 0.5s;
}
.page-content,
.about-container,
.post-card-box {
animation-delay: 0.75s;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}