dropzone.css 1.6 KB
Newer Older
f3brysan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
/* Dropzone css */
/* ------------ */
.dropzone {
  min-height : 350px;
  border : 2px dashed #5A8DEE;
  background : #F2F4F4;
}

.dropzone .dz-message {
  /* dropzone message customization */
  font-size : 1.5rem;
  position : absolute;
  top : 50%;
  right : 0;
  width : 100%;
  height : 300px;
  margin-top : -30px;
  color : #5A8DEE;
  text-align : center;
}

.dropzone .dz-message:before {
  /* dropzone message icon */
  content : '\ea81';
  font-family : 'boxicons';
  font-size : 3.5rem;
  position : absolute;
  top : 48px;
  width : 80px;
  height : 80px;
  display : inline-block;
  right : 50%;
  margin-right : -40px;
  line-height : 1;
  z-index : 2;
  color : #5A8DEE;
  text-indent : 0;
  font-weight : normal;
  -webkit-font-smoothing : antialiased;
}

.dropzone .dz-preview {
  background : transparent;
}

.dropzone .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark {
  background-image : url('../../../images/dropzone/spritemap.png');
}

.dropzone .dz-preview .dz-error-message {
  /* dropzone error message */
  min-width : 113px;
  top : 0;
  right : 0;
}

.dropzone .dz-preview .dz-remove {
  font-size : 1.1rem;
  color : #FF5B5C;
  line-height : 2rem;
}

.dropzone .dz-preview .dz-remove:before {
  content : '\eb61';
  font-family : 'boxicons';
  display : inline-block;
  line-height : 1;
  z-index : 2;
  text-indent : 0;
  font-weight : normal;
  -webkit-font-smoothing : antialiased;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration : none;
  color : #FF2829;
}

/* For Small Screen drop Logo */
@media (max-width: 576px) {
  .dropzone .dz-message:before {
    top : 7.14rem;
  }
}