mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
73 lines
1.0 KiB
CSS
73 lines
1.0 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #f5f5f5;
|
|
gap: 15px;
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
.upload-container {
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
width: 400px;
|
|
transition: border 0.3s, background-color 0.3s;
|
|
border: 2px dashed #ccc;
|
|
}
|
|
|
|
|
|
.upload-container.dragover {
|
|
border-color: #007BFF;
|
|
background-color: #eaf0ff;
|
|
}
|
|
|
|
|
|
.upload-container p {
|
|
margin: 0 0 15px 0;
|
|
font-size: 16px;
|
|
color: #555;
|
|
}
|
|
|
|
|
|
.file-name {
|
|
margin-top: 10px;
|
|
font-size: 14px;
|
|
color: #333;
|
|
}
|
|
|
|
|
|
.custom-btn {
|
|
padding: 10px 20px;
|
|
background-color: #007BFF;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
|
|
|
|
.custom-btn:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
|
|
input[type="file"] {
|
|
display: none;
|
|
}
|
|
|
|
.dropdown-container{
|
|
margin-top: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|