Newer
Older
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
@keyframes lds-pacman-1 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
50% {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
100% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@-webkit-keyframes lds-pacman-1 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
50% {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
100% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes lds-pacman-2 {
0% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
50% {
-webkit-transform: rotate(225deg);
transform: rotate(225deg);
}
100% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
}
@-webkit-keyframes lds-pacman-2 {
0% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
50% {
-webkit-transform: rotate(225deg);
transform: rotate(225deg);
}
100% {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
}
@keyframes lds-pacman-3 {
0% {
-webkit-transform: translate(190px, 0);
transform: translate(190px, 0);
opacity: 0;
}
20% {
opacity: 1;
}
100% {
-webkit-transform: translate(70px, 0);
transform: translate(70px, 0);
opacity: 1;
}
}
@-webkit-keyframes lds-pacman-3 {
0% {
-webkit-transform: translate(190px, 0);
transform: translate(190px, 0);
opacity: 0;
}
20% {
opacity: 1;
}
100% {
-webkit-transform: translate(70px, 0);
transform: translate(70px, 0);
opacity: 1;
}
}
.app-loading {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
top: 10em;
}
.app-loading p {
display: block;
font-size: 1.17em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: normal;
}
.app-loading .lds-pacman {
position: relative;
margin: auto;
width: 200px !important;
height: 200px !important;
-webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}
.app-loading .lds-pacman > div:nth-child(2) div {
position: absolute;
top: 40px;
left: 40px;
width: 120px;
height: 60px;
border-radius: 120px 120px 0 0;
background: #bbcedd;
-webkit-animation: lds-pacman-1 1s linear infinite;
animation: lds-pacman-1 1s linear infinite;
-webkit-transform-origin: 60px 60px;
transform-origin: 60px 60px;
}
.app-loading .lds-pacman > div:nth-child(2) div:nth-child(2) {
-webkit-animation: lds-pacman-2 1s linear infinite;
animation: lds-pacman-2 1s linear infinite;
}
.app-loading .lds-pacman > div:nth-child(1) div {
position: absolute;
top: 97px;
left: -8px;
width: 24px;
height: 10px;
background-size: contain;
-webkit-animation: lds-pacman-3 1s linear infinite;
animation: lds-pacman-3 1.5s linear infinite;
}
.app-loading .lds-pacman > div:nth-child(1) div:nth-child(1) {
-webkit-animation-delay: -0.67s;
animation-delay: -1s;
}
.app-loading .lds-pacman > div:nth-child(1) div:nth-child(2) {
-webkit-animation-delay: -0.33s;
animation-delay: -0.5s;
}
.app-loading .lds-pacman > div:nth-child(1) div:nth-child(3) {
-webkit-animation-delay: 0s;
animation-delay: 0s;
}