-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal.css
More file actions
46 lines (44 loc) · 686 Bytes
/
Copy pathmodal.css
File metadata and controls
46 lines (44 loc) · 686 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
38
39
40
41
42
43
44
45
46
.modal-window {
position:fixed;
background-color: rgba(192,192,192,0.5);
top:0;
right:0;
bottom:0;
left:0;
z-index:999;
opacity:1;
pointer-events:auto;
-webkit-transition:all 0.3s;
-moz-transition:all 0.3s;
transition:all 0.3s;
}
.modal-window>div {
width:500px;
position:relative;
margin:100px auto;
padding:2rem;
background:#fff;
color:#444;
}
.modal-window header {
font-weight:bold;
}
.modal-close {
color:#aaa;
line-height:50px;
font-size:80%;
position:absolute;
right:0;
text-align:center;
top:0;
width:70px;
text-decoration:none;
cursor: pointer;
}
.modal-close:hover {
color:#000;
}
.modal-window h1 {
font-size: 150%;
margin: 0 0 15px;
}