72 lines
968 B
CSS
72 lines
968 B
CSS
#facebox {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 100;
|
|
text-align: left;
|
|
}
|
|
|
|
#facebox .popup{
|
|
position:relative;
|
|
border:1px solid #999;
|
|
border-radius:2px;
|
|
box-shadow:0 0 10px rgba(0,0,0,0.8), 0 2px 200px rgba(255,255,255,0.2);;
|
|
}
|
|
|
|
#facebox .content {
|
|
display:table;
|
|
width: 370px;
|
|
padding: 20px;
|
|
background: #fff;
|
|
border-radius:2px;
|
|
}
|
|
|
|
#facebox .content > p:first-child{
|
|
margin-top:0;
|
|
}
|
|
#facebox .content > p:last-child{
|
|
margin-bottom:0;
|
|
}
|
|
|
|
#facebox .close{
|
|
position:absolute;
|
|
top:15px;
|
|
right:20px;
|
|
padding:2px;
|
|
}
|
|
#facebox .close img{
|
|
opacity:0.3;
|
|
}
|
|
#facebox .close:hover img{
|
|
opacity:1.0;
|
|
}
|
|
|
|
#facebox .loading {
|
|
text-align: center;
|
|
}
|
|
|
|
#facebox .image {
|
|
text-align: center;
|
|
}
|
|
|
|
#facebox img {
|
|
border: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#facebox_overlay {
|
|
position: fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
height:100%;
|
|
width:100%;
|
|
}
|
|
|
|
.facebox_hide {
|
|
z-index:-100;
|
|
}
|
|
|
|
.facebox_overlayBG {
|
|
background-color: #000;
|
|
z-index: 99;
|
|
}
|