comparison mercurial/templates/static/style-paper.css @ 19761:b5c601035005

paper: add simple animation to the loading indicator
author Alexander Plavin <alexander@plav.in>
date Fri, 06 Sep 2013 13:30:58 +0400
parents dfc0fe1541d9
children e0666aaa1382
comparison
equal deleted inserted replaced
19760:2ac4e89ad769 19761:b5c601035005
380 } 380 }
381 381
382 .breadcrumb a { 382 .breadcrumb a {
383 color: blue; 383 color: blue;
384 } 384 }
385
386 .scroll-loading {
387 -webkit-animation: change_color 1s linear 0s infinite alternate;
388 -moz-animation: change_color 1s linear 0s infinite alternate;
389 -o-animation: change_color 1s linear 0s infinite alternate;
390 animation: change_color 1s linear 0s infinite alternate;
391 }
392
393 @-webkit-keyframes change_color {
394 from { background-color: #A0CEFF; } to { }
395 }
396 @-moz-keyframes change_color {
397 from { background-color: #A0CEFF; } to { }
398 }
399 @-o-keyframes change_color {
400 from { background-color: #A0CEFF; } to { }
401 }
402 @keyframes change_color {
403 from { background-color: #A0CEFF; } to { }
404 }
405