Added more styles includeing the index page more color changes and header styles

This commit is contained in:
Kyle Fiedler
2012-07-12 14:28:13 -04:00
parent 9d638d2ac0
commit d53e4bd38f
12 changed files with 180 additions and 30 deletions

View File

@@ -0,0 +1,27 @@
@mixin bounce-in {
0% {
opacity: 0;
@include transform(scale(.3));
}
50% {
opacity: 1;
@include transform(scale(1.05));
}
100% {
@include transform(scale(1));
}
}
@-moz-keyframes bounce-in { @include bounce-in(); }
@-webkit-keyframes bounce-in { @include bounce-in(); }
@-o-keyframes bounce-in { @include bounce-in(); }
@keyframes bounce-in { @include bounce-in();}
@mixin bounce-in-animation($duration, $timing: ease-in-out) {
@include animation-name(bounce-in);
@include animation-duration($duration);
@include animation-timing-function($timing);
@include animation-fill-mode(both);
}