forked from meetfranz/plugins-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal.css
More file actions
37 lines (34 loc) · 683 Bytes
/
modal.css
File metadata and controls
37 lines (34 loc) · 683 Bytes
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
#franz-modal {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
}
#franz-modal .modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 30%;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
#franz-modal .close {
color: #aaa;
float: right;
margin-top: -10px;
font-size: 20px;
font-weight: bold;
}
#franz-modal .close:hover,
#franz-modal .close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}