This repository was archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiosOverlay.css
More file actions
executable file
·102 lines (97 loc) · 2.18 KB
/
iosOverlay.css
File metadata and controls
executable file
·102 lines (97 loc) · 2.18 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
102
.ios-overlay {
z-index: 99999;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
}
.ios-overlay .title {
color: #FFF;
font-weight: bold;
text-align: center;
display: block;
font-size: 26px;
position: absolute;
top: 50% !important;
left: 0;
width: 100%;
}
.ios-overlay img {
display: block;
margin: 20% auto 0 auto;
}
.ios-overlay .spinner {
left: 50% !important;
top: 40% !important;
}
.ios-overlay-show {
-webkit-animation-name: ios-overlay-show;
-webkit-animation-duration: 750ms;
-moz-animation-name: ios-overlay-show;
-moz-animation-duration: 750ms;
-ms-animation-name: ios-overlay-show;
-ms-animation-duration: 750ms;
-o-animation-name: ios-overlay-show;
-o-animation-duration: 750ms;
animation-name: ios-overlay-show;
animation-duration: 750ms;
}
@-webkit-keyframes ios-overlay-show {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-moz-keyframes ios-overlay-show {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-ms-keyframes ios-overlay-show {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-o-keyframes ios-overlay-show {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes ios-overlay-show {
0% { opacity: 0; }
100% { opacity: 1; }
}
.ios-overlay-hide {
-webkit-animation-name: ios-overlay-hide;
-webkit-animation-duration: 750ms;
-webkit-animation-fill-mode: forwards;
-moz-animation-name: ios-overlay-hide;
-moz-animation-duration: 750ms;
-moz-animation-fill-mode: forwards;
-ms-animation-name: ios-overlay-hide;
-ms-animation-duration: 750ms;
-ms-animation-fill-mode: forwards;
-o-animation-name: ios-overlay-hide;
-o-animation-duration: 750ms;
-o-animation-fill-mode: forwards;
animation-name: ios-overlay-hide;
animation-duration: 750ms;
animation-fill-mode: forwards;
}
@-webkit-keyframes ios-overlay-hide {
0% { opacity: 1; }
100% { opacity: 0; }
}
@-moz-keyframes ios-overlay-hide {
0% { opacity: 1; }
100% { opacity: 0; }
}
@-ms-keyframes ios-overlay-hide {
0% { opacity: 1; }
100% { opacity: 0; }
}
@-o-keyframes ios-overlay-hide {
0% { opacity: 1; }
100% { opacity: 0; }
}
@keyframes ios-overlay-hide {
0% { opacity: 1; }
100% { opacity: 0; }
}