mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
61 lines
No EOL
1.1 KiB
HTML
61 lines
No EOL
1.1 KiB
HTML
<div class="file-upload-container">
|
|
<div class="file-upload">
|
|
<input multiple="" class="file-input" id="fileInput" type="file" />
|
|
<label class="file-label" for="fileInput">
|
|
<i class="upload-icon">📁</i>
|
|
<p>Drag & Drop your files here or click to upload</p>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by Cksunandh - Tags: form */
|
|
.file-upload-container {
|
|
width: 50%;
|
|
max-width: 500px;
|
|
}
|
|
|
|
.file-upload {
|
|
position: relative;
|
|
border: 2px dashed #b8bcbf;
|
|
border-radius: 10px;
|
|
padding: 40px;
|
|
text-align: center;
|
|
background-color: rgb(255, 255, 255);
|
|
transition: background-color 0.3s ease-in-out;
|
|
}
|
|
|
|
.file-upload:hover {
|
|
background-color: #e2e6ea;
|
|
}
|
|
|
|
.file-input {
|
|
display: none;
|
|
}
|
|
|
|
.file-label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.upload-icon {
|
|
font-size: 50px;
|
|
color: #007bff;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.file-upload p {
|
|
margin: 0;
|
|
font-size: 16px;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.file-upload.dragover {
|
|
background-color: #007bff;
|
|
color: white;
|
|
}
|
|
|
|
</style>
|
|
|