-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmModal.css
More file actions
70 lines (56 loc) · 1.61 KB
/
mModal.css
File metadata and controls
70 lines (56 loc) · 1.61 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
.mModal-cover {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNgqAcAAIIAgLO2btEAAAAASUVORK5CYII=);
width: 100%;
height: 100%;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
}
.mModal-close {
position: absolute;
top: 0;
right: 0;
width: 16px;
height: 16px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA4ElEQVR4nKXSrU4DQRSG4aeUK6hoECRYwk2QOiQCFJYEQQBb3DpMrwBfsZeA4hYwNLV1hL8EgyMgOqTT4Yxhj5rdmfedb8/ZXtM0utRGJzoQHOM8OLeFCXbKjc1sfYpb9LCN6wy+xy6OsI9FlGCSYBjjpoClBBe1TzjDV/Y8xmMGwzxdFApanBSSQQGP8FQT/Eou/a33CI4EQ/EUBrgK3q8JhpYN24sOWjW2Krgr4FlKUzZ2LWH+H7wU8AjPeMMUfXzjtZbgMKV4yGBW0/mwHHVbS/CJA3G1JRgl+Fd1FvwAffwrz2rAlqkAAAAASUVORK5CYII=') no-repeat center;
margin: 10px;
cursor: pointer;
}
.mModal {
background-color: #FFFFFF;
color: #000000;
font-family: arial, sans-serif;
font-size: 12px;
margin: 0;
padding: 0;
display: none;
width: 400px;
position: absolute;
-webkit-box-shadow: 0 0 15px 0 rgba(50, 50, 50, 0.75);
-moz-box-shadow: 0 0 15px 0 rgba(50, 50, 50, 0.75);
box-shadow: 0 0 15px 0 rgba(50, 50, 50, 0.75);
}
.mModal > .mModal-content {
margin: 0;
padding: 20px;
}
.mModal-buttons > a {
float: left;
margin: 0;
padding: 10px;
background-color: #2c3e50;
color: #ecf0f1;
text-decoration: none;
text-align: center;
}
.mModal-buttons > a:hover {
background-color: #34495e;
}
.mModal-buttons:after {
clear: both;
display: table;
content: ' ';
}