Spaces:
Sleeping
Sleeping
| /* General body styles */ | |
| body { | |
| font-family: Arial, sans-serif; | |
| background-color: #121212; | |
| margin: 0; | |
| padding: 0; | |
| color: #f0f0f0; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100vh; | |
| text-align: center; | |
| } | |
| /* Container styles */ | |
| .container { | |
| background-color: #1e1e1e; | |
| border-radius: 10px; | |
| box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); | |
| padding: 30px; | |
| width: 400px; | |
| text-align: center; | |
| box-sizing: border-box; | |
| } | |
| /* Title styles */ | |
| h2 { | |
| font-size: 26px; | |
| margin-bottom: 20px; | |
| color: #4CAF50; | |
| text-transform: uppercase; | |
| } | |
| /* Form label styles */ | |
| label { | |
| font-weight: bold; | |
| display: block; | |
| margin-bottom: 10px; | |
| color: #f0f0f0; | |
| } | |
| /* Input field styles */ | |
| input[type="file"] { | |
| padding: 12px; | |
| margin: 12px 0; | |
| background-color: #333; | |
| color: #f0f0f0; | |
| border: 1px solid #555; | |
| border-radius: 4px; | |
| width: 100%; | |
| box-sizing: border-box; | |
| } | |
| /* Button styles */ | |
| input[type="submit"], | |
| button { | |
| background-color: #4CAF50; | |
| color: #f0f0f0; | |
| padding: 12px; | |
| margin-top: 20px; | |
| border: none; | |
| border-radius: 4px; | |
| cursor: pointer; | |
| font-size: 16px; | |
| width: 100%; | |
| box-sizing: border-box; | |
| transition: background-color 0.3s ease; | |
| } | |
| input[type="submit"]:hover, | |
| button:hover { | |
| background-color: #45a049; | |
| } | |
| /* Result text styles */ | |
| .result { | |
| font-size: 20px; | |
| font-weight: bold; | |
| margin-top: 20px; | |
| } | |
| .result.success { | |
| color: #4CAF50; | |
| } | |
| .result.danger { | |
| color: #E74C3C; | |
| } | |
| /* Link styles */ | |
| a { | |
| color: #4CAF50; | |
| text-decoration: none; | |
| } | |
| a:hover { | |
| text-decoration: underline; | |
| } | |
| /* Progress bar container */ | |
| #progressContainer { | |
| margin-top: 20px; | |
| } | |
| #progressBar { | |
| width: 100%; | |
| height: 8px; | |
| border-radius: 5px; | |
| background-color: #555; | |
| } | |
| #progressText { | |
| font-size: 14px; | |
| color: #f0f0f0; | |
| margin-top: 5px; | |
| } | |
| /* Mobile responsiveness */ | |
| @media (max-width: 600px) { | |
| .container { | |
| width: 90%; | |
| padding: 20px; | |
| } | |
| } | |
| body { | |
| font-family: Arial, sans-serif; | |
| background-color: #f4f4f9; | |
| color: #333; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| h1 { | |
| color: #3498db; | |
| } | |
| p { | |
| font-size: 1rem; | |
| line-height: 1.5; | |
| } | |
| button { | |
| padding: 10px 20px; | |
| background-color: #3498db; | |
| color: #fff; | |
| border: none; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| } | |
| button:hover { | |
| background-color: #2980b9; | |
| } | |