forked from StianF/ecomarathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
executable file
·70 lines (69 loc) · 1.4 KB
/
popup.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* POPUP CONTAINER STYLES
*/
#popupMask {
position: absolute;
z-index: 200;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
opacity: .4;
filter: alpha(opacity=70);
/* this hack is so it works in IE
* I find setting the color in the css gives me more flexibility
* than the PNG solution.
*/
background-color:transparent !important;
background-color: #333333;
/* this hack is for opera support
* you can uncomment the background-image if you don't care about opera.
* this gives you the flexibility to use any bg color that you want, instead of the png
*/
background-image/**/: url("maskBG.png") !important; // For browsers Moz, Opera, etc.
background-image:none;
background-repeat: repeat;
display:none;
}
#popupContainer {
position: absolute;
z-index: 201;
top: 0px;
left: 0px;
display:none;
padding: 0px;
}
#popupInner {
border: 2px solid #7EA610;
background-color: #ffffff;
}
#popupFrame {
margin: 0px;
width: 100%;
height: 100%;
position: relative;
z-index: 202;
}
#popupTitleBar {
background-color: #cccccc;
color: #17399C;
font-weight: bold;
height: 1.3em;
padding: 5px;
border-bottom: 1px solid #999999;
border-top: 0px solid #999999;
border-left: 1px solid #999999;
border-right: 1px solid #999999;
position: relative;
z-index: 203;
}
#popupTitle {
float:left;
font-size: 1.1em;
font-weight:bolder;
}
#popupControls {
float: right;
cursor: pointer;
cursor: hand;
}