blob: 4d283176434b8e56b8775bda385ac4eb5369dc8f (
plain) (
blame)
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
|
body {
background: none;
}
.bobAnimate-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 375px;
}
.inline {
display: inline-block;
}
#bobAnimate {
margin-left: 5px;
transition-timing-function: ease-in-out;
transition: margin-left 2s;
}
/* Loader */
/* body {
text-align: center;
padding-top: 20%;
background: #fdfdfd;
} */
.loader-wrapper {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #fdfdfd;
display: flex;
justify-content: center;
align-items: center;
}
.loader {
width: 100px;
height: 100px;
display: inline-table;
box-sizing: border-box;
position: relative;
border-spacing: 0.3em;
}
.loader row {
display: table-row;
}
.loader row span {
display: table-cell;
position: relative;
background: #1d1f20;
opacity: 0;
-webkit-animation: flicker 0.5985999999999999s ease-out infinite alternate;
}
@-webkit-keyframes flicker {
from, 20% {
opacity: 0;
}
100%, to {
opacity: 1;
}
}
.loader row:nth-child(1) span:nth-child(1) { -webkit-animation-delay: .50s; }
.loader row:nth-child(1) span:nth-child(2) { -webkit-animation-delay: .70s; }
.loader row:nth-child(1) span:nth-child(3) { -webkit-animation-delay: .60s; }
.loader row:nth-child(2) span:nth-child(1) { -webkit-animation-delay: .20s; }
.loader row:nth-child(2) span:nth-child(2) { -webkit-animation-delay: .80s; }
.loader row:nth-child(2) span:nth-child(3) { -webkit-animation-delay: .90s; }
.loader row:nth-child(3) span:nth-child(1) { -webkit-animation-delay: .10s; }
.loader row:nth-child(3) span:nth-child(2) { -webkit-animation-delay: .30s; }
.loader row:nth-child(3) span:nth-child(3) { -webkit-animation-delay: .40s; }
|