style-snippet.css - jscancer - Javascript crap (relatively small)
 (HTM) git clone git://git.codemadness.org/jscancer
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       style-snippet.css (586B)
       ---
            1 .progressbar {
            2         background: none;
            3         text-align: right;
            4         vertical-align: bottom;
            5         height: 32px;
            6 }
            7 
            8 @keyframes move-snail {
            9         0% {
           10                 padding-left: -4px;
           11         }
           12         20% {
           13                 padding-left: -4px;
           14         }
           15         40% {
           16                 padding-left: 30px;
           17         }
           18         60% {
           19                 padding-left: 20px;
           20         }
           21         80% {
           22                 padding-left: 0px;
           23         }
           24         100% {
           25                 padding-left: -4px;
           26         }
           27 }
           28 
           29 /* gary moves like a snail */
           30 .gary {
           31         position: absolute;
           32         margin-left: -36px;
           33         height: 32px;
           34 
           35         animation: linear move-snail 2s;
           36         animation-iteration-count: infinite;
           37         animation-direction: alternate;
           38 }
           39 
           40 .santa {
           41         position: absolute;
           42         margin-left: -36px;
           43         height: 32px;
           44