Files

72 lines
1.5 KiB
CSS

form{
font: 15px Arial, sans-serif;
display: block;
width: 400px;
margin: 150px auto 0;
}
form input, form textarea{
width: 100%;
margin-bottom: 30px;
}
textarea{
height: 120px;
}
.custom_upload_wrap {
height: 85px;
border: 1px dashed rgba(0, 0, 0, 0.2);
background: white;
border-radius: 5px;
background-color: transparent;
position: relative;
display: block;
text-align: center;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
transition: all 0.3s ease;
margin: 20px 0;
}
.custom_upload {
height: 100%;
overflow: hidden;
cursor: pointer;
position: relative;
}
.custom_upload_button {
width: 100%;
height: 100%;
white-space: nowrap;
overflow: hidden;
position: relative;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
transition: all 0.3s ease;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding-top: 15px;
}
.custom_upload input {
top: 0;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
cursor: pointer;
opacity: 0;
position: absolute;
}
.custom_upload_button.file_selected, .custom_upload_wrap:hover {
background: rgba(206, 241, 199, 0.5);
}
.custom_upload_delete {
top: 0;
bottom: 0;
right: 12px;
margin: auto;
width: 13px;
height: 13px;
display: block;
cursor: pointer;
position: absolute;
background: url(images/close.png) no-repeat;
}