Skip to content
Snippets Groups Projects
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);
    }
}