blob: 875b94f1dc509fe480da70e9f659b7ee3175e1b4 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
@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;
}
.btn-clear {
border: unset;
background-color: unset;
outline: unset;
position: relative;
}
.input-icon {
color: var(--offwhite);
transform: translateY(25%);
}
.input-icon:hover {
color: var(--ns-primary);
}
.f-row {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
|