Spaces:
Sleeping
Sleeping
File size: 1,877 Bytes
86c735d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f7f9;
color: #333;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.container {
background-color: #fff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 600px;
}
h1 {
color: #007bff;
text-align: center;
margin-bottom: 10px;
}
p {
text-align: center;
margin-bottom: 30px;
color: #666;
}
input[type="file"] {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 2px dashed #ccc;
border-radius: 6px;
cursor: pointer;
}
button {
width: 100%;
padding: 12px;
background-color: #28a745;
color: white;
border: none;
border-radius: 6px;
font-size: 1.1em;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover:not(:disabled) {
background-color: #218838;
}
button:disabled {
background-color: #90c69e;
cursor: not-allowed;
}
#fileList {
margin-bottom: 20px;
padding: 10px;
border: 1px solid #eee;
background-color: #f9f9f9;
border-radius: 4px;
}
#fileList ul {
list-style: none;
padding: 0;
margin: 0;
}
#fileList li {
padding: 5px 0;
border-bottom: 1px dotted #ddd;
font-size: 0.9em;
}
#fileList li:last-child {
border-bottom: none;
}
#statusMessage {
margin-top: 20px;
padding: 10px;
border-radius: 4px;
font-weight: bold;
text-align: center;
}
.success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.info {
background-color: #d1ecf1;
color: #0c5460;
border: 1px solid #bee5eb;
} |