blob: 58f00c20bc1f2a4656f90f7bd0c679e96c42e179 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
@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%);
}
.footer-center {
position: relative;
height: 1rem;
}
.footer-center>* {
position: fixed;
bottom: 8%;
left: 50%;
transform: translateX(-50%);
}
.row-height {
white-space: nowrap;
height: 1rem;
}
|