Merge remote-tracking branch 'origin/master' into highlighting/mixed

Conflicts:
	index.html
This commit is contained in:
Lennart Kats 2013-09-24 11:51:58 +02:00
commit 373f24849b
23 changed files with 863 additions and 381 deletions

View file

@ -497,11 +497,13 @@ img {
.rotating-logo {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
}
.rotating-logo:hover {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
-webkit-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}