aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/styles/helper.css
blob: 9c520ac37a6bfd06233d1fed487531eb577b21db (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
45
46
47
48
49
50
51
52
53
54
@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: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.row-height {
    white-space: nowrap;
    height: 1rem;
}

.icon-double>*:nth-child(2) {
    margin-left: -1rem;
}

.no-wrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}