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
node_modules/
.DS_Store
.DS_Store

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,9 +1,23 @@
@keyframes rubberBand {
0% { 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); }
0% {
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 {

View File

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

View File

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

View File

@ -1,11 +1,25 @@
@keyframes tada {
0% {transform: scale(1);}
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);}
0% {
transform: scale(1);
}
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 {
animation-name: tada;
}
}

View File

@ -1,15 +1,35 @@
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
0% { transform: translateX(0%); }
15% { transform: translateX(-25%) rotate(-5deg); }
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%); }
0% {
transform: translateX(0%);
}
15% {
transform: translateX(-25%) rotate(-5deg);
}
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 {
animation-name: wobble;
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,11 +1,35 @@
@keyframes hinge {
0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }
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); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }
100% { transform: translateY(700px); opacity: 0; }
0% {
transform: rotate(0);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
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 {
animation-name: hinge;
}
}

View File

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

View File

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