-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundle.css
84 lines (81 loc) · 2.05 KB
/
bundle.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
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
.license-status-header {
margin-bottom: 4px; }
.license-display {
text-align: center;
color: white;
border-radius: 4px;
padding: 8px; }
.license-display.license-display-error {
background-color: #007ad5;
color: white;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center; }
.license-display.license-display-error .information-icon {
color: white;
width: 1em;
height: 1em;
border: 2px solid white;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1px;
margin-right: 5px; }
.license-display.license-display-error a {
color: white; }
.license-display.license-display-pro {
background-color: #42526E; }
.license-display.license-display-free {
background-color: #5AAC44; }
.license-display .license-display-link {
cursor: pointer;
margin-left: 6px;
text-decoration: underline;
color: white; }
.license-display .license-display-link:hover {
filter: blur(0.4px);
color: white;
opacity: 0.8; }
.license-display .OUR-simple-loader {
font-size: 8px;
margin: 5px; }
.OUR-simple-loader {
display: flex;
flex-direction: row;
gap: .75em;
justify-content: center; }
@keyframes loadDot {
0% {
transform: scale(1); }
10% {
transform: scale(1.1); }
20% {
transform: scale(1.2); }
22.5% {
transform: scale(1.4); }
25% {
transform: scale(1.5); }
27.5% {
transform: scale(1.4); }
30% {
transform: scale(1.2); }
45% {
transform: scale(1.1); }
50% {
transform: scale(1); } }
.OUR-simple-loader .loadDot {
height: 1em;
width: 1em;
border-radius: 50%;
background: black;
animation-name: loadDot;
animation-duration: 1.8s;
animation-iteration-count: infinite;
animation-timing-function: steps(90); }
.OUR-simple-loader .loadDot:nth-child(2n) {
animation-delay: .6s; }
.OUR-simple-loader .loadDot:nth-child(3n) {
animation-delay: 1.2s; }