Skip to content
Snippets Groups Projects
Select Git revision
  • 298d7d6eeb8facb9ef9929ab007e0d75756c0e13
  • main default protected
2 results

02_02_functional_traits_preparation.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);
        }
    }