forked from imranhsayed/ihs-geo-location
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (50 loc) · 1.07 KB
/
style.css
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
/**
* IHS Geo Location Styles
*/
.ihs-loading {
background: gray;
border-radius: 2px;
margin: -5px 0 0 -21px;
position: absolute;
top: 50%; left: 50%;
z-index: 9999;
width: 11px; height: 11px;
-webkit-animation: pulse2 0.5s infinite ease-in;
}
.ihs-loading:before {
background: gray;
border-radius: 2px;
content: '';
position: absolute;
top: 0; left: -16px;
width: 11px; height: 11px;
-webkit-animation: pulse1 0.5s infinite ease-in;
}
.ihs-loading:after {
background: gray;
border-radius: 2px;
content: '';
position: absolute;
top: 0; right: -16px;
width: 11px; height: 11px;
-webkit-animation: pulse3 0.5s infinite ease-in;
}
@-webkit-keyframes pulse1 {
0% {background-color: gray;}
25% {background-color: black;}
50% {background-color: gray;}
100% {background-color: gray;}
}
@-webkit-keyframes pulse2 {
0% {background-color: gray;}
50% {background-color: black;}
100% {background-color: gray;}
}
@-webkit-keyframes pulse3 {
0% {background-color: gray;}
50% {background-color: gray;}
100% {background-color: black;}
}
.ihs-geo-hide {
display: none;
}