Skip to content
Snippets Groups Projects
Select Git revision
  • 8bcf7886a7e0fcf2af93f4fa409cef05f041a56a
  • master default protected
  • atkis
  • development
  • marco/aquacrop-fix-api-use
  • precompile-statements
  • precompile-tools
  • tmp-faster-loading
  • skylark
  • testsuite
  • code-review
  • v0.8
  • v0.7.0
  • v0.6.1
  • v0.6.0
  • v0.5.5
  • v0.5.4
  • v0.5.3
  • v0.5.2
  • v0.2
  • v0.3.0
  • v0.4.1
  • v0.5
23 results

gui.md

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);
        }
    }