blob: bcd026460a47caa2137ee3c8ad1cfd106c1107ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
@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;
}
.bg-controls {
position: fixed;
bottom: 10px;
right: 10px;
}
.center-horizontal {
margin-top: 50%;
margin-left: auto;
transform: translateX(-50%);
}
|