-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.css
More file actions
101 lines (87 loc) · 1.62 KB
/
loading.css
File metadata and controls
101 lines (87 loc) · 1.62 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
93
94
95
96
97
98
99
100
101
.window-loading {
display: flex;
opacity: 0;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
background-color: black;
font-family: Comic Sans MS, Comic Sans, cursive;
flex-direction: column;
user-select: none;
transition: all .3s ease-in-out;
}
.window-loading.active {
opacity: 1;
z-index: 1000000000000;
}
@keyframes microsoft-loading {
from {
transform: rotate(0deg) translate(-15px);
visibility: visible;
}
to {
transform: rotate(360deg) translate(-15px);
}
}
.webos-loading-image {
width: 210px;
height: 210px;
margin-bottom: 10vh;
}
.webos-loading-text {
color: #fff;
padding: 0 0 15vh;
font-size: 150%;
}
.window-loading .webos-loading-spinner {
width: 40px;
height: 40px;
}
.webos-loading-spinner {
box-sizing: border-box;
width: 18px;
height: 18px;
padding: 2px;
overflow: visible;
}
.webos-loading-spinner>circle {
stroke: #fff;
fill: none;
stroke-width: 2px;
stroke-linecap: round;
transform-origin: 50% 50%;
transition: all .2s ease-in-out 0s;
animation: 2s linear 0s infinite normal none running loading-spinner;
}
.window-loading .webos-loading-image,
.window-loading .webos-loading-spinner {
opacity: 0;
animation: .2s linear .1s 1 normal forwards running show-loader;
}
@keyframes loading-spinner {
0% {
stroke-dasharray: 0.01px, 43.97px;
transform: rotate(0);
}
50% {
stroke-dasharray: 21.99px, 21.99px;
transform: rotate(450deg);
}
100% {
stroke-dasharray: 0.01px, 43.97px;
transform: rotate(1080deg);
}
}
@keyframes show-loader {
from {
opacity: 0;
}
to {
opacity: 1;
}
}