Display the progress when downloading a file

This commit is contained in:
yflory
2017-05-22 12:30:00 +02:00
parent 5179252d3b
commit 3964f4feee
4 changed files with 17 additions and 7 deletions

View File

@@ -35,13 +35,15 @@ body {
}
#upload-form label,
#download-form label {
line-height: 50vh;
line-height: calc(50vh - 20px);
text-align: center;
position: relative;
padding: 10px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
height: 50vh;
box-sizing: border-box;
}
.hovering {
background-color: rgba(255, 0, 115, 0.5) !important;
@@ -63,8 +65,8 @@ body {
}
#progress {
position: absolute;
top: 0px;
left: 0px;
top: 0;
left: 0;
height: 100%;
transition: width 500ms;
width: 0%;