Move SCSS partials to /_sass/minimal-mistakes for easier CSS customization

This commit is contained in:
Michael Rose
2017-04-18 12:52:11 -04:00
parent eaf366e405
commit 3fc1bfde26
220 changed files with 146 additions and 173 deletions

View File

@ -0,0 +1,21 @@
/* ==========================================================================
ANIMATIONS
========================================================================== */
@-webkit-keyframes intro {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes intro {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}