-
Notifications
You must be signed in to change notification settings - Fork 5
/
loader.php
46 lines (46 loc) · 863 Bytes
/
loader.php
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
<style>
.loader-container {
height: 100%;
width: 100%;
display: none;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.2);
position: absolute;
z-index: 99999;
}
.loader-card {
height: 100px;
width: 120px;
display: flex;
justify-content: center;
align-items: center;
background: #fff;
border-radius: 8px;
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
flex-direction: column;
}
.loader {
height: 35px;
width: 35px;
border: 2px solid #ccc;
border-top: 2px solid #444;
animation: spin infinite 0.8s linear;
border-radius: 50%;
}
.loader-text {
position: relative;
left: 5px;
top: 10px;
color: #555;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>