Skip to content
Snippets Groups Projects
Select Git revision
  • 1a7f952285b6e16322621c5e2e018e1c43148cb7
  • main default
  • krausec-main-patch-16624
  • fixes-typo-2025-04-14
  • fixes-typo-2025-03-27
  • fixes-typo-2025u
  • fixes-typo-19
  • fixes-typo-9
  • fixes-typo-8
  • wip/project-management
  • wip/config-paste
  • lfs
12 results

crawl.css

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