File tree Expand file tree Collapse file tree 10 files changed +63
-0
lines changed
Expand file tree Collapse file tree 10 files changed +63
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments