blob: 4d5e04d71935bed715abc5a1741597cb7192ecef (
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
|
.dash-loader {
display: flex;
align-content: center;
justify-content: center;
background-color: #BDDDF5;
transition: 3s;
z-index: 10;
z-index:10;
width:100%;
height:100%;
}
.dash-loader-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
}
.dash-progress-bar {
width: 200px;
height: 5px;
align-self: center;
margin-top: 20px;
background-color: #ececec;
border-radius: 5px;
overflow: hidden;
}
.dash-progress {
width: 0%;
height: 20px;
background-color: #4476F7;
transition: 0.1s;
}
.dash-animation-container {
width: fit-content;
height: fit-content;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 100%;
background-color: #4476F7;
justify-self: center;
}
.dash-loader-text {
font-size: 15px;
font-family: "Roboto";
font-weight: bold;
text-align: center;
color: #4476F7;
user-select: none;
-webkit-user-select: none;
}
.dash-d-path {
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: dash-d-path 3s linear infinite;
}
@keyframes dash-d-path {
0% {
stroke-dashoffset: 1000;
}
20% {
stroke-dashoffset: 0;
}
70% {
stroke-dashoffset: 0;
}
90% {
stroke-dashoffset: 1000;
}
100% {
stroke-dashoffset: 1000;
}
}
|