body {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.upload-box {
  border: 1px solid #ccc;
  position: relative;
  overflow: hidden;
  margin: 10px auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: white;
}
.upload-box input {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 200px;
  opacity: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.upload-form {
  background: #f8f8f8;
  padding: 20px 0;
}

.upload-progress .file-list {
  padding: 0;
  list-style: none;
}
.upload-progress .file-list > li {
  padding: 5px 10px;
  background: #f8f8f8;
  display: flex;
}
.upload-progress .file-list > li:nth-of-type(2n) {
  background: #eee;
}
.upload-progress .file-list > li span {
  display: block;
}
.upload-progress .file-list > li span.progress {
  margin-left: auto;
  margin-right: 16px;
  padding: 0 4px;
}
.upload-progress .file-list > li.done .progress {
  background: #aaffaa;
}

/*# sourceMappingURL=app.css.map*/