blob: 796ad62b3f1bebd88297913d530c96b1fae2c404 (
plain)
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
|
#draw_protector{
height: 100%;
width: 100%;
position:absolute;
top: 0;
left: 0;
z-index:101;
display: none;
}
#overlay{
position:absolute;
height:100%;
width:100%;
top:0;
left:0;
background: rgba(245,245,245,0.8);
z-index: 100;
display: none;
}
#overlay > .close{
position: absolute;
padding: 10px;
top: 10px;
left: 10px;
border: 1px solid gray;
background: white;
cursor: pointer;
z-index: 102;
}
#final-image > img{
max-width:550px;
max-height:550px;
}
#overlay > .content{
top: 10px;
left: 150px;
padding: 10px;
border: 1px solid gray;
background: white;
position: absolute;
z-index: 102;
}
|