Skip to content

Commit d5361b6

Browse files
committed
Merge branch 'master' of github.com:serghey-rodin/vesta
2 parents 69aabad + d9c7dba commit d5361b6

22 files changed

+227
-47
lines changed

web/css/popup.css

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/* Styles for popups */
2+
.d-popup{
3+
position:absolute;
4+
top:100px;
5+
left:0;
6+
z-index:100;
7+
background-color:#ccc;
8+
background:url(../images/info-popup-bg-2.png) repeat;
9+
10+
width:250px;
11+
12+
border-radius: 10px;
13+
-moz-border-radius: 10px;
14+
-webkit-border-radius: 10px;
15+
}
16+
.d-popup-inner{
17+
padding:20px;
18+
}
19+
.d-popup .close{
20+
position:absolute;
21+
top:10px;
22+
right:10px;
23+
24+
display:block;
25+
width:13px;
26+
height:13px;
27+
background:url(../images/info-popup-sprite.png) no-repeat;
28+
cursor:pointer;
29+
}
30+
.d-popup span.close:hover{
31+
background-position:0 -13px;
32+
}
33+
.d-popup span.close:active{
34+
background-position:0 -26px;
35+
}
36+
37+
.d-popup-title{
38+
font-size:11px;
39+
text-transform:uppercase;
40+
text-align:center;
41+
color:#fffdd4;
42+
margin:0 0 9px;
43+
}
44+
.d-popup-items{
45+
font-size:12px;
46+
color:#fff;
47+
}
48+
.d-popup-items .item{
49+
margin:0 0 9px;
50+
}
51+
.d-popup-items a{
52+
color:#aaa;
53+
padding-right:5px;
54+
}
55+
.d-popup .prop-box{
56+
display:block;
57+
}
58+
.d-popup .prop-title{
59+
color:#bbb;
60+
}
61+
.d-popup .prop-value{
62+
color:#fff;
63+
}

web/images/Asteroid_Vesta.jpg

193 KB
Loading

web/images/auth-plus.png

252 Bytes
Loading

web/images/checkbox-1.png

536 Bytes
Loading

web/images/dotted.gif

44 Bytes
Loading
288 Bytes
Loading

web/images/form-group-expanded.png

268 Bytes
Loading

web/images/info-popup-bg-2.png

933 Bytes
Loading

web/images/info-popup-bg.png

933 Bytes
Loading

web/images/info-popup-sprite.png

2.16 KB
Loading

0 commit comments

Comments
 (0)