fairy-webuploader
Version:
39 lines (37 loc) • 751 B
CSS
#webUploader{
width:500px;
}
.web-uploader{
display: flex;
justify-content: center;
}
.web-uploader label{
width: 150px;
height: 100px;
background: #ef6a6a;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.web-uploader-file-list{
display:flex;
flex-direction:column;
width:100%;
}
.web-uploader-file-list-item{
height:100px;
display:flex;
background:antiquewhite;
border-radius:10px;
padding:10px;
margin: 10px 0 0 0;
}
.web-uploader-file-list-item video{
height:100%;
}
.web-uploader-file-list-item .web-uploader-file-list-item-name{
margin-left:10px;
display:flex;
align-items:center
}