File Uploader UI
Simple UI for file uploader. Would need a JS drag and drop plugin.
by Victor
HTML
<div class="uploader">
<div class="uploaderHeader">
Name/Size(mb)
<a href="#">+</a>
</div>
<div class="progressBar"><div class="progressAmount"></div></div>
<div class="fileMessage">Click or drop a file here to upload.</div>
<div class="fileList">
<div>
<label>PowerPoint Presentations <span>55.42Mb</span></label>
<a href="#" class="deleteFile">Delete</a>
<a href="#" class="downloadFile">Download</a>
</div>
<div>
<label>Product Information <span>55.42Mb</span></label>
<a href="#" class="deleteFile">Delete</a>
<a href="#" class="downloadFile">Download</a>
</div>
<div>
<label>Logo Comps <span>55.42Mb</span></label>
<a href="#" class="deleteFile">Delete</a>
<a href="#" class="downloadFile">Download</a>
</div>
</div>
</div>
CSS
.uploader {
margin:10px;
background:#F2F1EF;
border-radius:4px;
overflow:hidden;
font-family:sans-serif;
padding-bottom:10px;
box-shadow:inset 0 -2px 0 #2A363D;
/* border:1px solid #222; */
background: rgb(247,247,247); /* Old browsers */
background: -moz-linear-gradient(top, rgba(247,247,247,1) 0%, rgba(234,234,234,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,247,247,1)), color-stop(100%,rgba(234,234,234,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(234,234,234,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(234,234,234,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(234,234,234,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(234,234,234,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#eaeaea',GradientType=0 ); /* IE6-9 */
}
.uploaderHeader {
padding:10px;
background:#111;
/* font-size:12px; */
background: rgb(181,189,200); /* Old browsers */
background: -moz-linear-gradient(top, rgba(181,189,200,1) 0%, rgba(130,140,149,1) 36%, rgba(40,52,59,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(181,189,200,1)), color-stop(36%,rgba(130,140,149,1)), color-stop(100%,rgba(40,52,59,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(181,189,200,1)...