DUPLICATE_REM / static /styles.css
Sambit20030731's picture
Upload 8 files
f218e1e verified
raw
history blame contribute delete
749 Bytes
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 200px;
}
.container {
max-width: 600px;
margin: 0 auto;
align-items: center;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.btn {
padding: 10px 200px;
}
h1 {
text-align: center;
color: #333;
}
form {
display: flex;
flex-direction: column;
}
input[type="file"] {
margin-bottom: 10px;
}
button {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
.hidden {
display: none;
}
#processingMsg {
text-align: center;
}