blob: 5ae2cb88070a923711fd5992d9081d53992201f8 (
about) (
plain)
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
|
/* Copyright: Ankitects Pty Ltd and contributors
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
#header {
padding: 3px;
font-weight: bold;
border-bottom: 1px solid var(--border);
}
.tdcenter {
white-space: nowrap;
}
body {
margin: 0;
padding: 0;
-webkit-user-select: none;
overflow: hidden;
}
* {
-webkit-user-drag: none;
}
.hitem {
padding-right: 12px;
padding-left: 12px;
text-decoration: none;
color: var(--text-fg);
}
.hitem:hover {
text-decoration: underline;
}
.hitem:focus {
outline: 0;
}
.nightMode #header {
border-bottom-color: var(--faint-border);
}
.isMac.nightMode #header {
border-bottom-color: var(--frame-bg);
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
.spin {
animation: spin;
animation-duration: 2s;
animation-iteration-count: infinite;
display: inline-block;
visibility: visible !important;
animation-timing-function: linear;
}
#sync-spinner {
width: 16px;
height: 16px;
margin-bottom: -3px;
visibility: hidden;
}
.normal-sync {
color: var(--new-count);
}
.full-sync {
color: var(--learn-count);
}
body::before {
background-image: url("/_addons/Background_and_gear/user_files/background/1721729412.jpg");
background-size: cover;
background-attachment: fixed!important;
background-repeat: no-repeat;
background-position: top;
background-color: !important;
opacity: 1;
content: "";
top: 0;
left: 0;
bottom: 0;
right: 0;
position: fixed;
z-index: -99;
will-change: transform;
transform: scale(1);
}
|