ultimatepp/examples/SkylarkUpload/SkylarkUpload.css
micio 3ad82213e5 Examples/SkylarkUpload : a multi-file upload web application demo
git-svn-id: svn://ultimatepp.org/upp/trunk@6223 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2013-08-01 11:16:45 +00:00

36 lines
659 B
CSS

/* body container -- used just to center on screen */
#bodyContainer {
text-align:center;
width:100%;
height:20em;
background-color:#eee;
}
/* a fancy header */
#header {
font-size:30px;
color:white;
background-color:blue;
}
/* progress bar container -- sets the maximum bar width */
#progress_container {
border: solid 1px #000;
height: 20px;
width: 300px;
text-align:center;
margin:0 auto;
}
/* progress bar */
#progress {
background-color: #006666;
color:white;
height: 20px;
width: 0px;
}
/* progress and hidden frame not showing */
#progress_container, #hidden_iframe {
display: none;
}