modal.css
1.1 KB
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
57
58
59
.ModalContainer {
z-index: 10000;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
.ModalContainer .ModalOverlay {
opacity: .6;
filter: alpha(opacity=60);
background-color: black;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
position: absolute;
}
.ModalContainer .ModalWindow {
position: absolute;
padding: 0;
margin: 0;
min-width: 40%;
}
.ModalContainer .ModalWindow .ModalHeader {
position: relative;
clear: both;
height: 0px;
}
.ModalContainer .ModalWindow .ModalHeader .ModalTitle {
color: white;
font-size: 12pt;
}
.ModalTitle h1 {
padding: 0;
margin: 0;
font: normal 28px Trebuchet MS,Arial,Helvetica,sans-serif;
}
.ModalContainer .ModalWindow .ModalHeader .ModalActions {
position: absolute;
bottom: -37px;
right: 14px;
}
.ModalContainer .ModalWindow .ModalHeader .ModalActions .ModalClose {
width: 26px;
height: 23px;
background: url(../Images/gallery/btn_close.png) no-repeat top right;
display: block;
color: black;
}
.ModalContainer .ModalWindow .ModalContent {
margin: 0;
padding: 0;
background-color: white;
overflow: scrollable;
}