Skip to content
Snippets Groups Projects
Select Git revision
  • 69c75fcb850ce2dd13f05c66f1068729262830c1
  • main default protected
  • test_coef
  • 21-things-to-take-care-of-before-submission
4 results

clogit.R

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    crawl.css 418 B
    .star-wars {
        height: 800px;
        perspective: 400px;
    
        color: #feda4a;
        letter-spacing: 6px;
    }
    
    .crawl {
        position: relative;
        animation: crawl 120s linear;
    }
    
    .crawl > .title > h1 {
        color: #feda4a;
    }
    
    @keyframes crawl {
        0% {
            top: 0;
            transform: rotateX(20deg)  translateZ(0);
        }
    
        100% {
            top: -6000px;
            transform: rotateX(25deg) translateZ(-2500px);
        }
    }