aced
Version:
php+node light FE/BE framework
48 lines (47 loc) • 908 B
CSS
.ace-shadbox {
z-index: 9999;
position: absolute;
left: 0;
top: 0;
cursor: pointer;
}
.ace-shadbox-bg {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
filter: alpha(opacity=60);
-moz-opacity: 0.6;
-khtml-opacity: 0.6;
opacity: 0.6;
}
.ace-shadbox-content {
position: fixed;
width: 100px;
height: 100px;
background: #000 no-repeat center center;
}
.ace-shadbox-content.loading {
background-image: url(/assets/shadbox-loading.gif);
}
.ace-shadbox-content.error {
width: 58px;
height: 58px;
background-image: url(/assets/shadbox-error.png);
}
.ace-shadbox-content img {
width: 100%;
height: 100%;
}
.ace-shadbox-close {
position: absolute;
right: -16px;
top: -16px;
display: block;
width: 20px;
height: 20px;
background: url(/assets/shadbox-close.png) no-repeat center center;
}