-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
50 lines (42 loc) · 860 Bytes
/
styles.css
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
/* CSS for SettingsTab */
.ait-settings .setting-item-description {
width: 300px;
}
.ait-settings .setting-item-control {
width: 100% !important;
}
.ait-settings .setting-item-control input,
.ait-settings .setting-item-control textarea {
width: 100%;
}
/* Promotional Links */
.ait-promotional-links {
float: right;
padding: 15px;
}
/* Spinkit https://github.com/tobiasahlin/SpinKit?tab=readme-ov-file */
.ait-spinner {
width: 20px;
position: absolute;
right: 10px;
}
.ait-spinner > div {
width: 20px;
height: 10px;
background-color: var(--background-modifier-border-focus);
border-radius: 30%;
animation: oil-sk-bouncedelay 1.4s infinite ease-in-out both;
}
.ait-spinner .oil-bounce {
animation-delay: var(--bounce-delay);
}
@keyframes oil-sk-bouncedelay {
0%,
80%,
100% {
transform: scale(0);
}
40% {
transform: scale(1);
}
}