forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
67 lines (63 loc) · 1.02 KB
/
popup.css
File metadata and controls
67 lines (63 loc) · 1.02 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
60
61
62
63
64
65
66
67
/* Styles for popups */
.d-popup{
position:absolute;
top:100px;
left:0;
z-index:100;
background-color:#ccc;
background:url(../images/info-popup-bg-2.png) repeat;
width:250px;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
.d-popup-inner{
padding:20px;
color:#fff;
}
.d-popup .close{
position:absolute;
top:10px;
right:10px;
display:block;
width:13px;
height:13px;
background:url(../images/info-popup-sprite.png) no-repeat;
cursor:pointer;
font-size:0;
line-height:0;
text-indent:-9999px;
}
.d-popup span.close:hover{
background-position:0 -13px;
}
.d-popup span.close:active{
background-position:0 -26px;
}
.d-popup-title{
font-size:11px;
text-transform:uppercase;
text-align:center;
color:#fffdd4;
margin:0 0 9px;
}
.d-popup-items{
font-size:12px;
color:#fff;
}
.d-popup-items .item{
margin:0 0 9px;
}
.d-popup-items a{
color:#aaa;
padding-right:5px;
}
.d-popup .prop-box{
display:block;
}
.d-popup .prop-title{
color:#bbb;
}
.d-popup .prop-value{
color:#fff;
}