29 lines
801 B
CSS
29 lines
801 B
CSS
@CHARSET "ISO-8859-1";
|
|
|
|
.mask
|
|
{
|
|
position:absolute;
|
|
height:100%;
|
|
width:100%;
|
|
background-color:#E3E3E3;
|
|
left:0;
|
|
top:0;
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* IE 8 */
|
|
filter: alpha(opacity=70); /* IE 5-7 */
|
|
-moz-opacity: 0.7; /* Netscape */
|
|
-khtml-opacity: 0.7; /* Safari 1.x */
|
|
opacity: 0.7;
|
|
}
|
|
#uploadprogress {
|
|
width: 400px;
|
|
height: 20px;
|
|
position: absolute;
|
|
top:0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
}
|
|
#progbar { position:relative; width:100%; border: 1px solid #396E00; padding: 1px; border-radius: 3px; }
|
|
#bar { position:relative; background-color: #B4F5B4; width:0%; height:20px; border-radius: 3px; }
|
|
#percent { position:absolute; display:inline-block; top:1px; left:48%; } |