rescored / frontend /src /components /JobSubmission.css
calebhan's picture
file upload pipeline
a5359f9
.job-submission {
max-width: 600px;
margin: 0 auto;
padding: 2rem;
}
.job-submission h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}
.form-group {
margin-bottom: 1rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
}
.form-group input {
width: 100%;
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
}
button {
padding: 0.75rem 1.5rem;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
font-size: 1rem;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
.progress-container {
text-align: center;
padding: 2rem;
}
.progress-container h2 {
margin-bottom: 1rem;
color: #333;
}
.progress-bar-container {
width: 100%;
height: 30px;
background-color: #f0f0f0;
border-radius: 15px;
overflow: hidden;
margin: 1.5rem 0;
border: 1px solid #ddd;
}
.progress-bar {
height: 100%;
background: linear-gradient(90deg, #007bff, #0056b3);
transition: width 0.3s ease;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.progress-message {
color: #555;
font-size: 1rem;
margin: 0.5rem 0;
font-weight: 500;
}
.progress-info {
color: #888;
font-size: 0.9rem;
margin-top: 1rem;
}
.progress-text {
color: #666;
font-size: 0.9rem;
}
.success-message,
.error-message {
text-align: center;
padding: 2rem;
border-radius: 8px;
}
.success-message {
background-color: #d4edda;
color: #155724;
}
.error-message {
background-color: #f8d7da;
color: #721c24;
}
.error-alert {
background-color: #f8d7da;
color: #721c24;
padding: 0.75rem 1rem;
border-radius: 4px;
margin-top: 1rem;
border: 1px solid #f5c6cb;
}
.upload-mode-selector {
display: flex;
gap: 0.5rem;
margin-top: 0.5rem;
}
.upload-mode-selector button {
flex: 1;
padding: 0.5rem 1rem;
background-color: #f0f0f0;
color: #333;
border: 2px solid #ddd;
border-radius: 4px;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.2s ease;
}
.upload-mode-selector button:hover {
background-color: #e0e0e0;
border-color: #bbb;
}
.upload-mode-selector button.active {
background-color: #007bff;
color: white;
border-color: #007bff;
}
.file-info {
margin-top: 0.5rem;
font-size: 0.9rem;
color: #666;
}