aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/styles/helper.css
blob: bed289e4d5cf5502a93c56495a082d880becd15c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@keyframes logo-animation {
    from {
        transform: perspective(100em) rotateX(50deg) rotateZ(0deg);
    }
    to {
        transform: perspective(100em) rotateX(50deg) rotateZ(360deg);
    }
}

.ann-logo {
    animation-name: logo-animation;
    animation-duration: 3140ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}