blob: 76cb6204edfee36c06b5f84cf02af30f044d29d0 (
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
@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;
text-align: center;
}
.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;
}
.icon-toggle {
color: var(--offwhite);
height: 100%;
}
.icon-toggle>* {
margin-top: 5px;
}
.icon-toggle:active {
background-color: var(--ns-primary);
}
.icon-toggle-on {
background-color: var(--ns-primary);
}
.icon-toggle-on>* {
transform: scale(1.3);
}
.force-link {
color: var(--offwhite) !important;
text-decoration: none;
cursor: pointer;
}
.text-primary {
color: var(--ns-primary) !important;
}
.btn-icon {
color: var(--offwhite) !important;
background-color: var(--ns-primary);
border-radius: 50%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin: 3px;
width: 28px;
height: 28px;
}
.bg-blur {
backdrop-filter: blur(2px);
}
.chart-wrapper {
width: 150px;
height: 150px;
margin: auto;
}
|