File size: 2,293 Bytes
44a2550 75d3906 44a2550 75d3906 44a2550 75d3906 44a2550 75d3906 44a2550 75d3906 44a2550 75d3906 44a2550 0dfd298 a5359f9 |
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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
.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;
}
|