Unified formatting across files

indent_style = space
indent_size = 2
insert_final_newline = true
each line within { } to specify single rule
This commit is contained in:
Sarbbottam Bandyopadhyay 2014-02-24 02:09:02 +05:30
parent 8897f6e799
commit 9310cf98ed
63 changed files with 301 additions and 158 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
.sass-cache .sass-cache
node_modules/ node_modules/
.DS_Store .DS_Store

View File

@ -95,4 +95,4 @@
"rollOut": true "rollOut": true
} }
} }

View File

@ -19,4 +19,4 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
.animated.hinge { .animated.hinge {
animation-duration: 2s; animation-duration: 2s;
} }

View File

@ -1,9 +1,17 @@
@keyframes bounce { @keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 0%, 20%, 50%, 80%, 100% {
40% {transform: translateY(-30px);} transform: translateY(0);
60% {transform: translateY(-15px);} }
40% {
transform: translateY(-30px);
}
60% {
transform: translateY(-15px);
}
} }
.bounce { .bounce {
animation-name: bounce; animation-name: bounce;
} }

View File

@ -1,8 +1,13 @@
@keyframes flash { @keyframes flash {
0%, 50%, 100% {opacity: 1;} 0%, 50%, 100% {
25%, 75% {opacity: 0;} opacity: 1;
}
25%, 75% {
opacity: 0;
}
} }
.flash { .flash {
animation-name: flash; animation-name: flash;
} }

View File

@ -1,11 +1,19 @@
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse { @keyframes pulse {
0% { transform: scale(1); } 0% {
50% { transform: scale(1.1); } transform: scale(1);
100% { transform: scale(1); } }
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
} }
.pulse { .pulse {
animation-name: pulse; animation-name: pulse;
} }

View File

@ -1,9 +1,23 @@
@keyframes rubberBand { @keyframes rubberBand {
0% { transform: scale(1); } 0% {
30% { transform: scaleX(1.25) scaleY(0.75); } transform: scale(1);
40% { transform: scaleX(0.75) scaleY(1.25); } }
60% { transform: scaleX(1.15) scaleY(0.85); }
100% { transform: scale(1); } 30% {
transform: scaleX(1.25) scaleY(0.75);
}
40% {
transform: scaleX(0.75) scaleY(1.25);
}
60% {
transform: scaleX(1.15) scaleY(0.85);
}
100% {
transform: scale(1);
}
} }
.rubberBand { .rubberBand {

View File

@ -1,9 +1,17 @@
@keyframes shake { @keyframes shake {
0%, 100% {transform: translateX(0);} 0%, 100% {
10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);} transform: translateX(0);
20%, 40%, 60%, 80% {transform: translateX(10px);} }
10%, 30%, 50%, 70%, 90% {
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
transform: translateX(10px);
}
} }
.shake { .shake {
animation-name: shake; animation-name: shake;
} }

View File

@ -1,12 +1,26 @@
@keyframes swing { @keyframes swing {
20% { transform: rotate(15deg); } 20% {
40% { transform: rotate(-10deg); } transform: rotate(15deg);
60% { transform: rotate(5deg); } }
80% { transform: rotate(-5deg); }
100% { transform: rotate(0deg); } 40% {
transform: rotate(-10deg);
}
60% {
transform: rotate(5deg);
}
80% { t
ransform: rotate(-5deg);
}
100% {
transform: rotate(0deg);
}
} }
.swing { .swing {
transform-origin: top center; transform-origin: top center;
animation-name: swing; animation-name: swing;
} }

View File

@ -1,11 +1,25 @@
@keyframes tada { @keyframes tada {
0% {transform: scale(1);} 0% {
10%, 20% {transform: scale(0.9) rotate(-3deg);} transform: scale(1);
30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);} }
40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
100% {transform: scale(1) rotate(0);} 10%, 20% {
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
transform: scale(1.1) rotate(-3deg);
}
100% {
transform: scale(1) rotate(0);
}
} }
.tada { .tada {
animation-name: tada; animation-name: tada;
} }

View File

@ -1,15 +1,35 @@
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble { @keyframes wobble {
0% { transform: translateX(0%); } 0% {
15% { transform: translateX(-25%) rotate(-5deg); } transform: translateX(0%);
30% { transform: translateX(20%) rotate(3deg); } }
45% { transform: translateX(-15%) rotate(-3deg); }
60% { transform: translateX(10%) rotate(2deg); } 15% {
75% { transform: translateX(-5%) rotate(-1deg); } transform: translateX(-25%) rotate(-5deg);
100% { transform: translateX(0%); } }
30% {
transform: translateX(20%) rotate(3deg);
}
45% {
transform: translateX(-15%) rotate(-3deg);
}
60% {
transform: translateX(10%) rotate(2deg);
}
75% {
transform: translateX(-5%) rotate(-1deg);
}
100% {
transform: translateX(0%);
}
} }
.wobble { .wobble {
animation-name: wobble; animation-name: wobble;
} }

View File

@ -20,4 +20,4 @@
.bounceInDown { .bounceInDown {
animation-name: bounceInDown; animation-name: bounceInDown;
} }

View File

@ -20,4 +20,4 @@
.bounceInLeft { .bounceInLeft {
animation-name: bounceInLeft; animation-name: bounceInLeft;
} }

View File

@ -20,4 +20,4 @@
.bounceInRight { .bounceInRight {
animation-name: bounceInRight; animation-name: bounceInRight;
} }

View File

@ -20,4 +20,4 @@
.bounceInUp { .bounceInUp {
animation-name: bounceInUp; animation-name: bounceInUp;
} }

View File

@ -20,4 +20,4 @@
.bounceOut { .bounceOut {
animation-name: bounceOut; animation-name: bounceOut;
} }

View File

@ -16,4 +16,4 @@
.bounceOutDown { .bounceOutDown {
animation-name: bounceOutDown; animation-name: bounceOutDown;
} }

View File

@ -16,4 +16,4 @@
.bounceOutLeft { .bounceOutLeft {
animation-name: bounceOutLeft; animation-name: bounceOutLeft;
} }

View File

@ -16,4 +16,4 @@
.bounceOutRight { .bounceOutRight {
animation-name: bounceOutRight; animation-name: bounceOutRight;
} }

View File

@ -16,4 +16,4 @@
.bounceOutUp { .bounceOutUp {
animation-name: bounceOutUp; animation-name: bounceOutUp;
} }

View File

@ -5,4 +5,4 @@
.fadeIn { .fadeIn {
animation-name: fadeIn; animation-name: fadeIn;
} }

View File

@ -12,4 +12,4 @@
.fadeInDown { .fadeInDown {
animation-name: fadeInDown; animation-name: fadeInDown;
} }

View File

@ -12,4 +12,4 @@
.fadeInDownBig { .fadeInDownBig {
animation-name: fadeInDownBig; animation-name: fadeInDownBig;
} }

View File

@ -12,4 +12,4 @@
.fadeInLeft { .fadeInLeft {
animation-name: fadeInLeft; animation-name: fadeInLeft;
} }

View File

@ -12,4 +12,4 @@
.fadeInLeftBig { .fadeInLeftBig {
animation-name: fadeInLeftBig; animation-name: fadeInLeftBig;
} }

View File

@ -12,4 +12,4 @@
.fadeInRight { .fadeInRight {
animation-name: fadeInRight; animation-name: fadeInRight;
} }

View File

@ -12,4 +12,4 @@
.fadeInRightBig { .fadeInRightBig {
animation-name: fadeInRightBig; animation-name: fadeInRightBig;
} }

View File

@ -12,4 +12,4 @@
.fadeInUp { .fadeInUp {
animation-name: fadeInUp; animation-name: fadeInUp;
} }

View File

@ -12,4 +12,4 @@
.fadeInUpBig { .fadeInUpBig {
animation-name: fadeInUpBig; animation-name: fadeInUpBig;
} }

View File

@ -5,4 +5,4 @@
.fadeOut { .fadeOut {
animation-name: fadeOut; animation-name: fadeOut;
} }

View File

@ -12,4 +12,4 @@
.fadeOutDown { .fadeOutDown {
animation-name: fadeOutDown; animation-name: fadeOutDown;
} }

View File

@ -12,4 +12,4 @@
.fadeOutDownBig { .fadeOutDownBig {
animation-name: fadeOutDownBig; animation-name: fadeOutDownBig;
} }

View File

@ -12,4 +12,4 @@
.fadeOutLeft { .fadeOutLeft {
animation-name: fadeOutLeft; animation-name: fadeOutLeft;
} }

View File

@ -12,4 +12,4 @@
.fadeOutLeftBig { .fadeOutLeftBig {
animation-name: fadeOutLeftBig; animation-name: fadeOutLeftBig;
} }

View File

@ -12,4 +12,4 @@
.fadeOutRight { .fadeOutRight {
animation-name: fadeOutRight; animation-name: fadeOutRight;
} }

View File

@ -12,4 +12,4 @@
.fadeOutRightBig { .fadeOutRightBig {
animation-name: fadeOutRightBig; animation-name: fadeOutRightBig;
} }

View File

@ -12,4 +12,4 @@
.fadeOutUp { .fadeOutUp {
animation-name: fadeOutUp; animation-name: fadeOutUp;
} }

View File

@ -12,4 +12,4 @@
.fadeOutUpBig { .fadeOutUpBig {
animation-name: fadeOutUpBig; animation-name: fadeOutUpBig;
} }

View File

@ -3,18 +3,22 @@
transform: perspective(400px) translateZ(0) rotateY(0) scale(1); transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
animation-timing-function: ease-out; animation-timing-function: ease-out;
} }
40% { 40% {
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
animation-timing-function: ease-out; animation-timing-function: ease-out;
} }
50% { 50% {
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
animation-timing-function: ease-in; animation-timing-function: ease-in;
} }
80% { 80% {
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95); transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
animation-timing-function: ease-in; animation-timing-function: ease-in;
} }
100% { 100% {
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
animation-timing-function: ease-in; animation-timing-function: ease-in;

View File

@ -1,24 +1,24 @@
@keyframes flipInX { @keyframes flipInX {
0% { 0% {
transform: perspective(400px) rotateX(90deg); transform: perspective(400px) rotateX(90deg);
opacity: 0; opacity: 0;
} }
40% { 40% {
transform: perspective(400px) rotateX(-10deg); transform: perspective(400px) rotateX(-10deg);
} }
70% { 70% {
transform: perspective(400px) rotateX(10deg); transform: perspective(400px) rotateX(10deg);
} }
100% { 100% {
transform: perspective(400px) rotateX(0deg); transform: perspective(400px) rotateX(0deg);
opacity: 1; opacity: 1;
} }
} }
.flipInX { .flipInX {
backface-visibility: visible !important; backface-visibility: visible !important;
animation-name: flipInX; animation-name: flipInX;
} }

View File

@ -1,24 +1,24 @@
@keyframes flipInY { @keyframes flipInY {
0% { 0% {
transform: perspective(400px) rotateY(90deg); transform: perspective(400px) rotateY(90deg);
opacity: 0; opacity: 0;
} }
40% { 40% {
transform: perspective(400px) rotateY(-10deg); transform: perspective(400px) rotateY(-10deg);
} }
70% { 70% {
transform: perspective(400px) rotateY(10deg); transform: perspective(400px) rotateY(10deg);
} }
100% { 100% {
transform: perspective(400px) rotateY(0deg); transform: perspective(400px) rotateY(0deg);
opacity: 1; opacity: 1;
} }
} }
.flipInY { .flipInY {
backface-visibility: visible !important; backface-visibility: visible !important;
animation-name: flipInY; animation-name: flipInY;
} }

View File

@ -1,15 +1,16 @@
@keyframes flipOutX { @keyframes flipOutX {
0% { 0% {
transform: perspective(400px) rotateX(0deg); transform: perspective(400px) rotateX(0deg);
opacity: 1; opacity: 1;
} }
100% {
transform: perspective(400px) rotateX(90deg); 100% {
opacity: 0; transform: perspective(400px) rotateX(90deg);
} opacity: 0;
}
} }
.flipOutX { .flipOutX {
animation-name: flipOutX; animation-name: flipOutX;
backface-visibility: visible !important; backface-visibility: visible !important;
} }

View File

@ -1,15 +1,16 @@
@keyframes flipOutY { @keyframes flipOutY {
0% { 0% {
transform: perspective(400px) rotateY(0deg); transform: perspective(400px) rotateY(0deg);
opacity: 1; opacity: 1;
} }
100% {
transform: perspective(400px) rotateY(90deg); 100% {
opacity: 0; transform: perspective(400px) rotateY(90deg);
} opacity: 0;
}
} }
.flipOutY { .flipOutY {
backface-visibility: visible !important; backface-visibility: visible !important;
animation-name: flipOutY; animation-name: flipOutY;
} }

View File

@ -1,11 +1,22 @@
@keyframes lightSpeedIn { @keyframes lightSpeedIn {
0% { transform: translateX(100%) skewX(-30deg); opacity: 0; } 0% {
60% { transform: translateX(-20%) skewX(30deg); opacity: 1; } transform: translateX(100%) skewX(-30deg); opacity: 0;
80% { transform: translateX(0%) skewX(-15deg); opacity: 1; } }
100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
60% {
transform: translateX(-20%) skewX(30deg); opacity: 1;
}
80% {
transform: translateX(0%) skewX(-15deg); opacity: 1;
}
100% {
transform: translateX(0%) skewX(0deg); opacity: 1;
}
} }
.lightSpeedIn { .lightSpeedIn {
animation-name: lightSpeedIn; animation-name: lightSpeedIn;
animation-timing-function: ease-out; animation-timing-function: ease-out;
} }

View File

@ -1,10 +1,14 @@
@keyframes lightSpeedOut { @keyframes lightSpeedOut {
0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 0% {
100% { transform: translateX(100%) skewX(-30deg); opacity: 0; } transform: translateX(0%) skewX(0deg); opacity: 1;
}
100% {
transform: translateX(100%) skewX(-30deg); opacity: 0;
}
} }
.lightSpeedOut { .lightSpeedOut {
animation-name: lightSpeedOut; animation-name: lightSpeedOut;
animation-timing-function: ease-in;
animation-timing-function: ease-in; }
}

View File

@ -14,4 +14,4 @@
.rotateIn { .rotateIn {
animation-name: rotateIn; animation-name: rotateIn;
} }

View File

@ -14,4 +14,4 @@
.rotateInDownLeft { .rotateInDownLeft {
animation-name: rotateInDownLeft; animation-name: rotateInDownLeft;
} }

View File

@ -14,4 +14,4 @@
.rotateInDownRight { .rotateInDownRight {
animation-name: rotateInDownRight; animation-name: rotateInDownRight;
} }

View File

@ -14,4 +14,4 @@
.rotateInUpLeft { .rotateInUpLeft {
animation-name: rotateInUpLeft; animation-name: rotateInUpLeft;
} }

View File

@ -14,4 +14,4 @@
.rotateInUpRight { .rotateInUpRight {
animation-name: rotateInUpRight; animation-name: rotateInUpRight;
} }

View File

@ -14,4 +14,4 @@
.rotateOut { .rotateOut {
animation-name: rotateOut; animation-name: rotateOut;
} }

View File

@ -14,4 +14,4 @@
.rotateOutDownLeft { .rotateOutDownLeft {
animation-name: rotateOutDownLeft; animation-name: rotateOutDownLeft;
} }

View File

@ -14,4 +14,4 @@
.rotateOutDownRight { .rotateOutDownRight {
animation-name: rotateOutDownRight; animation-name: rotateOutDownRight;
} }

View File

@ -14,4 +14,4 @@
.rotateOutUpRight { .rotateOutUpRight {
animation-name: rotateOutUpRight; animation-name: rotateOutUpRight;
} }

View File

@ -11,4 +11,4 @@
.slideInDown { .slideInDown {
animation-name: slideInDown; animation-name: slideInDown;
} }

View File

@ -11,4 +11,4 @@
.slideInLeft { .slideInLeft {
animation-name: slideInLeft; animation-name: slideInLeft;
} }

View File

@ -11,4 +11,4 @@
.slideInRight { .slideInRight {
animation-name: slideInRight; animation-name: slideInRight;
} }

View File

@ -11,4 +11,4 @@
.slideOutLeft { .slideOutLeft {
animation-name: slideOutLeft; animation-name: slideOutLeft;
} }

View File

@ -11,4 +11,4 @@
.slideOutRight { .slideOutRight {
animation-name: slideOutRight; animation-name: slideOutRight;
} }

View File

@ -11,4 +11,4 @@
.slideOutUp { .slideOutUp {
animation-name: slideOutUp; animation-name: slideOutUp;
} }

View File

@ -1,11 +1,35 @@
@keyframes hinge { @keyframes hinge {
0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; } 0% {
20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; } transform: rotate(0);
40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; } transform-origin: top left;
80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; } animation-timing-function: ease-in-out;
100% { transform: translateY(700px); opacity: 0; } }
20%, 60% {
transform: rotate(80deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
40% {
transform: rotate(60deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
80% {
transform: rotate(60deg) translateY(0);
transform-origin: top left;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
transform: translateY(700px);
opacity: 0;
}
} }
.hinge { .hinge {
animation-name: hinge; animation-name: hinge;
} }

View File

@ -1,10 +1,17 @@
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn { @keyframes rollIn {
0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } 0% {
100% { opacity: 1; transform: translateX(0px) rotate(0deg); } opacity: 0;
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
transform: translateX(0px) rotate(0deg);
}
} }
.rollIn { .rollIn {
animation-name: rollIn; animation-name: rollIn;
} }

View File

@ -1,12 +1,12 @@
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut { @keyframes rollOut {
0% { 0% {
opacity: 1; opacity: 1;
transform: translateX(0px) rotate(0deg); transform: translateX(0px) rotate(0deg);
} }
100% { 100% {
opacity: 0; opacity: 0;
transform: translateX(100%) rotate(120deg); transform: translateX(100%) rotate(120deg);
} }
@ -14,4 +14,4 @@
.rollOut { .rollOut {
animation-name: rollOut; animation-name: rollOut;
} }