2020-04-28 13:00:09 +02:00
|
|
|
#error {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
#progress_bar {
|
|
|
|
margin: 10px 0;
|
|
|
|
padding: 3px;
|
|
|
|
border: 1px solid #000;
|
|
|
|
font-size: 14px;
|
|
|
|
clear: both;
|
|
|
|
opacity: 0;
|
|
|
|
-moz-transition: opacity 1s linear;
|
|
|
|
-o-transition: opacity 1s linear;
|
|
|
|
-webkit-transition: opacity 1s linear;
|
|
|
|
}
|
|
|
|
#progress_bar.loading {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
#progress_bar .percent {
|
|
|
|
background-color: #99ccff;
|
|
|
|
height: auto;
|
|
|
|
width: 0;
|
2020-04-29 11:21:55 +02:00
|
|
|
}
|
|
|
|
|
2020-06-16 02:42:51 +02:00
|
|
|
/* Buttons */
|
2020-04-29 11:21:55 +02:00
|
|
|
.button {
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
color: white;
|
2022-06-24 06:54:19 +02:00
|
|
|
padding-top: 15px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-left: 30px;
|
|
|
|
margin-right: 6px;
|
2020-04-29 11:21:55 +02:00
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 24px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2020-06-16 02:42:51 +02:00
|
|
|
|
|
|
|
#upload {
|
|
|
|
width: 0.1px;
|
|
|
|
height: 0.1px;
|
|
|
|
opacity: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#upload + label {
|
|
|
|
background-color: #4CAF50;
|
|
|
|
}
|
|
|
|
#upload:focus + label,
|
|
|
|
#upload + label:hover {
|
|
|
|
background-color: #3E8E41;
|
|
|
|
}
|
|
|
|
|
|
|
|
#download {background-color: #4CAF50;}
|
|
|
|
#download:hover {background-color: #3E8E41;}
|
|
|
|
|
|
|
|
#cancel {background-color: #7c7f7c;}
|
|
|
|
#cancel:hover {background-color: #af504c;}
|
|
|
|
/* End Buttons */
|