-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery-sm-style.css
More file actions
113 lines (109 loc) · 1.8 KB
/
jquery-sm-style.css
File metadata and controls
113 lines (109 loc) · 1.8 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
103
104
105
106
107
108
109
110
111
112
113
.sm_gMapOverlay * {
-moz-box-sizing:border-box;
box-sizing:border-box;
}
.sm_gMapOverlay {
display:none;
position:fixed;
left:0;
top:0;
height:100%;
width:100%;
background: rgba(0,0,0,0.8);
z-index:999;
}
.sm_gMapWrapper {
height:100%;
width:100%;
}
.sm_gMapWrapper .sm_closeMap {
color:#FFF;
font-family:sans-serif;
font-weight: bold;
position: absolute;
right:0;
top:0;
padding:8px;
cursor:pointer;
}
.sm_gMapWrapper .sm_closeMap:after {
content: "x";
display: inline-block;
background:#A00;
color:#FFF;
text-align: center;
width:16px;
height:16px;
line-height: 13px;
margin-left:5px;
}
.sm_gMapPanel {
position:relative;
top:10%;
width:80%;
height:80%;
margin: 0 auto;
}
@-webkit-keyframes spin {
from {
-webkit-transform:rotate(0deg);
}
to {
-webkit-transform:rotate(360deg);
}
}
@-moz-keyframes spin {
from {
-moz-transform:rotate(0deg);
}
to {
-moz-transform:rotate(360deg);
}
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
.sm_loading {
position:absolute;
left:50%;
top:50%;
width:64px;
height:64px;
margin-left:-32px;
margin-top:-32px;
border: 2px solid #999;
border-bottom:4px solid #EEE;
border-radius:50%;
-webkit-animation: spin 440ms linear infinite;
-moz-animation: spin 440ms linear infinite;
animation: spin 440ms linear infinite;
}
.sm_loading::after {
content:"";
display: block;
width:8px;
height:8px;
border-radius:50%;
background:#FFF;
position: absolute;
bottom:8px;
}
.sm_loading.dark {
border-color:#FFF;
border-bottom-color: #33c3f0;
}
.sm_loading.dark::after {
background:#33c3f0;
border-bottom-color:#FFF;
}
.sm_map_canvas {
background: #FFF;
opacity:0;
width:100%;
height:100%;
}