90 lines
1.3 KiB
CSS
90 lines
1.3 KiB
CSS
.item{
|
|
background: #fff;
|
|
box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
|
|
padding-top: 15px;
|
|
margin: 10px;
|
|
}
|
|
.item-body{
|
|
padding: 10px 40px 40px;
|
|
}
|
|
.item-body img{
|
|
width: 200px;
|
|
height: 150px;
|
|
}
|
|
.item-notes{
|
|
min-height: 40px;
|
|
padding-top: 10px;
|
|
}
|
|
#new_item_form .control-label{
|
|
font-weight: normal;
|
|
}
|
|
|
|
#new_item_form .form-group{
|
|
/* margin: 10px;
|
|
background: red;*/
|
|
}
|
|
.form-section-one{
|
|
min-height: 88px;
|
|
margin: 0 -20px;
|
|
padding: 28px 20px 20px;
|
|
background-color: #FBFAFA;
|
|
|
|
}
|
|
.color-text{
|
|
color:#df6869;
|
|
|
|
}
|
|
|
|
|
|
#dropzone {
|
|
position: relative;
|
|
border: 2px dashed #b0c0d6;
|
|
border-radius: 20px;
|
|
color: gray;
|
|
font: bold 14px/200px arial;
|
|
height: 160px;
|
|
/* margin: 30px auto;*/
|
|
margin-left: 20px;
|
|
text-align: center;
|
|
width: 250px;
|
|
}
|
|
|
|
#dropzone.hover {
|
|
border: 10px solid #FE5;
|
|
color: #FE5;
|
|
}
|
|
|
|
#dropzone.dropped {
|
|
background: #FBFAFA;
|
|
border: 2px dashed #b0c0d6;
|
|
}
|
|
|
|
#dropzone div {
|
|
position: absolute;
|
|
top: -24px;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
#dropzone img {
|
|
border-radius: 10px;
|
|
vertical-align: middle;
|
|
max-width: 240px;
|
|
max-height: 150px;
|
|
}
|
|
|
|
#dropzone [type="file"] {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
opacity: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.cancel-btn{
|
|
margin-left: 10px;
|
|
}
|