blob: 11deceee5e474d12ecfa75851d9ebd6c07455176 (
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
|
#overlay{
position:absolute;
height:100%;
width:100%;
top:0;
left:0;
background: rgba(245,245,245,0.8);
z-index: 100;
}
#overlay > .close{
position: absolute;
padding: 10px;
top: 10px;
left: 10px;
border: 1px solid gray;
background: white;
cursor: pointer;
}
#overlay > .content{
top: 10px;
left: 150px;
padding: 10px;
border: 1px solid gray;
background: white;
position: absolute;
}
|