video-compressor/public/assets/styles/file-picker-section.css

57 lines
861 B
CSS

#file-input, #change-file {
display: none;
opacity: 0;
}
#file-input-spacing * {
visibility: hidden;
}
#file-drop-area {
max-width: 355px;
height: 198px;
border: 3px dotted #BDBDBD;
margin: 3rem auto 1rem auto;
border-radius: 1rem;
display: flex;
justify-content: center;
align-items: center;
transition: all 300ms;
cursor: pointer;
}
#file-drop-area span {
color: #9E9E9E;
}
#file-drop-area:hover, #file-drop-area:focus {
background-color: #E0E0E0;
outline: none;
}
#uploaded-video {
display: none;
opacity: 0;
margin: 3rem auto 1rem auto;
}
#filesize {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
width: 80px;
}
#filesize-unit {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-left: 1px solid white;
}
#filesize-unit:focus {
border-left: 1px solid #00BCD4;
}
#compress {
margin-left: 1rem;
}