Go back to Ruby 2.3. No main logo animation.

This commit is contained in:
Christoph Haas 2017-07-26 11:34:19 +02:00
parent 9549720a7a
commit 4824bf4ad7
2 changed files with 18 additions and 18 deletions

View file

@ -1 +1 @@
2.4.1
2.3.1

View file

@ -79,23 +79,23 @@ body
// Animate the huge logo on the home page
#biglogo img {
animation-name: logoappear;
animation-duration: 1s;
animation-iteration-count: 1;
animation-timing-function: ease-out;
animation-direction: alternate;
}
@keyframes logoappear {
0% {
opacity: 0.0;
transform: scale(0.7,0.7) rotate(20deg);
}
100% {
opacity: 1;
transform: scale(1,1) rotate(0deg);
}
}
// #biglogo img {
// animation-name: logoappear;
// animation-duration: 1s;
// animation-iteration-count: 1;
// animation-timing-function: ease-out;
// animation-direction: alternate;
// }
// @keyframes logoappear {
// 0% {
// opacity: 0.0;
// transform: scale(0.7,0.7) rotate(20deg);
// }
// 100% {
// opacity: 1;
// transform: scale(1,1) rotate(0deg);
// }
// }
// ----------------------------------