-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathSpinnerComponent.razor.css
69 lines (69 loc) · 1.41 KB
/
SpinnerComponent.razor.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
.sb-body-overlay {
z-index: 10000023;
display: block;
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 1);
overflow: hidden;
pointer-events: none;
top: 0;
bottom: 0;
}
.sb-loading.e-hide,
.sb-body-overlay.e-hide {
display: none;
opacity: 0;
}
.sb-loading {
width: 56px;
height: 56px;
position: absolute;
top: calc(50% - 28px);
left: calc(50% - 28px);
z-index: 10000;
border-radius: 50%;
padding: 3px;
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
overflow: hidden;
display: inline-block;
background: white;
}
.circular {
animation: rotate 2s linear infinite;
height: 50px;
width: 50px;
border-radius: 50%;
}
.path {
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
stroke-linecap: round;
stroke: #007bff;
}
@keyframes rotate {
100% {
transform: rotate(360deg);
}
}
@keyframes dash {
0% {
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
}
50% {
stroke-dasharray: 89, 200;
stroke-dashoffset: -35;
}
100% {
stroke-dasharray: 89, 200;
stroke-dashoffset: -124;
}
}
.sf-visible {
visibility: visible;
}
.sf-hidden {
visibility: hidden;
}