-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscreenful-curtain.css
56 lines (56 loc) · 986 Bytes
/
screenful-curtain.css
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
div#curtainframe {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 10;
}
div#curtainframe div.shade {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background-color: #000000;
opacity: 0.5;
cursor: pointer;
}
div#curtainframe div.inside {
border-radius: 4px;
background-color: #ffffff;
position: absolute;
top: 80px;
left: 80px;
right: 80px;
bottom: 80px;
z-index: 11;
}
@media screen and (max-width: 700px) {
div#curtainframe div.inside {
top: 20px;
left: 20px;
right: 20px;
bottom: 20px;
}
}
div#curtainframe div.inside.narrow {
max-width: 800px;
margin: 0px auto;
}
div#curtainframe div.inside div.margin {
background-color: #ffffff;
position: absolute;
top: 4px;
left: 4px;
right: 4px;
bottom: 4px;
}
div#curtainframe div.inside div.margin iframe {
width: 100%;
height: 100%;
background-color: #ffffff;
border: 0px;
margin: 0px;
padding: 0px;
}