@require './Layout.styl';

.Dropzone {
  border: 1px solid #ccc;
  width: 200px;
  height: 200px;
  lost-align: center;
}

.Image {
  position: relative;
  width: 24%;
  padding: 0 0 16%;
  display: inline-block;
  margin-right: 1%;
  background-size: cover;
  background-position: center center;

  &Remove {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
  }
}


.MiniItem {
  position: relative;
  width: 200px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
  margin: 10px 10px 0 0;
  &Img {
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }

  &Edit {
    font-size: 12px;
    font-family: arial, sans-serif;
    position: absolute;
    left: 10px;
    bottom: 10px;
  }

  &Remove {
    position: absolute;
    right: 10px;
    top: 10px;
  }
}
