mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-02-02 20:49:28 +01:00
86 lines
1.4 KiB
CSS
86 lines
1.4 KiB
CSS
/* 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:14px;
|
|
height:14px;
|
|
background:url(../images/info-popup-sprite.png) no-repeat 0 -1px;
|
|
cursor:pointer;
|
|
font-size:0;
|
|
line-height:0;
|
|
text-indent:-9999px;
|
|
}
|
|
.d-popup span.close:hover{
|
|
background-position:0 -17px;
|
|
}
|
|
.d-popup span.close:active{
|
|
background-position:0 -33px;
|
|
}
|
|
.d-popup-title{
|
|
font-size:11px;
|
|
text-transform:uppercase;
|
|
text-align:center;
|
|
color:#fffaba;
|
|
margin:5px 0 16px;
|
|
letter-spacing: 2px;
|
|
}
|
|
.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;
|
|
margin-bottom: 5px;
|
|
}
|
|
.d-popup-content{
|
|
color: #fff;
|
|
font-size: 13px;
|
|
line-height: 24px;
|
|
}
|
|
.d-popup-content li{
|
|
margin-bottom: 5px;
|
|
color: #fff;
|
|
font-size: 12px;
|
|
}
|
|
.d-popup-content li strong{
|
|
color: #BDB9AE;
|
|
text-transfom: uppercese;
|
|
font-weight: normal;
|
|
font-size: 10px;
|
|
margin-right: 7px;
|
|
}
|