forked from Pagawa/PgwModal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpgwmodal.css
More file actions
78 lines (71 loc) · 1.97 KB
/
Copy pathpgwmodal.css
File metadata and controls
78 lines (71 loc) · 1.97 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
/**
* PgwModal - Version 1.4
*
* Copyright 2014, Jonathan M. Piat
* http://pgwjs.com - http://pagawa.com
*
* Released under the GNU GPLv3 license - http://opensource.org/licenses/gpl-3.0
*/
body.pgwModal {
overflow: hidden;
}
#pgwModalWrapper {
background: #000;
opacity: 0.5;
filter:alpha(opacity=50);
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 9000;
}
#pgwModal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index : 9010;
overflow-x: auto;
overflow-y: scroll;
}
#pgwModal .pm-container {
text-align: center;
z-index: 9020;
}
#pgwModal .pm-body {
background-color: rgba(0, 0, 0, 0.5);
border-radius: 5px;
-webkit-box-shadow: 0 0px 5px 3px #555;
box-shadow: 0 0px 5px 3px #555;
display: inline-block;
max-width: 800px;
min-width: 300px;
position: relative;
width: 100%;
z-index: 9030;
}
#pgwModal .pm-title {
background: #e5e5e5;
padding: 5px 0 6px;
border-bottom: 1px solid #d5d5d5;
border-radius: 5px 5px 0 0;
font-size: 1rem;
min-height: 25px;
}
#pgwModal .pm-content {
background: #fff;
padding: 10px;
border-radius: 0 0 5px 5px;
text-align: left;
}
#pgwModal .pm-close {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABp0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuMTFH80I3AAABIklEQVQ4T62T20oDQRBE+9EIGo1/H4gEQd8E74lJvKHiV+mmai7QNdu+ZFNwWKqmpzJhdq3rur0ShkMIwyGoMTsEl+AenDDw62WGmoAFOAcjWRdjdgX+Ck9gDPw6xbIN4MwvmEmHmFzCQRo+H0E6aRHL1sDP3EiHmLx5WQbrBv4Ic3+yuvYAxtIhJusUtKUf4LvJUhnQDm9SkNWe1MPsDhyD/v42SGEWT/oFfBl5BWFZ2huGWWfgB/gy8g7CVyrt7QVZLHsB//1lvoNhqZqstozPN/DZZPX2tUNMXFYvILr9dFLpEGO2KoNtWRVLezPSIcbsogyRWyC3WcTSZ8AZfnpT6RCDDx3MwTU4YuDXywzFUn6WU3Ag697sgzAcQhjuTmdbpLYNJt1Fr50AAAAASUVORK5CYII=);
display: block;
height: 20px;
width: 20px;
position: absolute;
top: 9px;
right: 15px;
}