-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathapp.css
More file actions
92 lines (75 loc) · 1.68 KB
/
app.css
File metadata and controls
92 lines (75 loc) · 1.68 KB
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
@keyframes background-gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.background-gradient-animation {
animation: background-gradient 18s ease infinite;
}
.loading-progress {
position: relative;
display: block;
width: 8rem;
height: 8rem;
margin: 40vh auto 1rem auto;
}
.loading-progress circle {
fill: none;
stroke: #bfbbbb;
stroke-width: 0.6rem;
transform-origin: 50% 50%;
transform: rotate(-90deg);
}
.loading-progress circle:last-child {
stroke: white;
stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
transition: stroke-dasharray 0.05s ease-in-out;
}
.loading-progress-text {
position: absolute;
color: white;
text-align: center;
font-weight: bold;
inset: calc(40vh + 3.25rem) 0 auto 0.2rem;
}
.backgroundLoadColor {
background: linear-gradient(45deg, #E73C7E, #23A6D5, #E73C7E);
/*background-size: 400%;*/
}
.loading-progress-text:after {
content: var(--blazor-load-percentage-text, "CodeBeam");
}
@keyframes background-animation {
0% {
background-position: 0%;
}
50% {
background-position: 50%;
}
100% {
background-position: 100%;
}
}
@keyframes fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animated-background {
animation: 1.5s 0.5s background-animation forwards, fade 1s;
}
.animated-background-reverse {
animation: 1s background-animation reverse, fade 1s reverse;
}
.animated-background-infinite {
animation: 1s background-animation infinite;
}