| /* styles.css */ | |
| body { | |
| font-family: Arial, sans-serif; | |
| background-color: #f8f8f8; | |
| color: #333; | |
| padding: 20px; | |
| } | |
| h1 { | |
| font-size: 24px; | |
| margin-bottom: 20px; | |
| color: #4a4a4a; | |
| } | |
| form { | |
| background-color: #ffffff; | |
| padding: 20px; | |
| border-radius: 5px; | |
| box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | |
| } | |
| input[type="file"] { | |
| margin-bottom: 10px; | |
| } | |
| input[type="submit"] { | |
| background-color: #007bff; | |
| color: #ffffff; | |
| border: none; | |
| padding: 8px 16px; | |
| border-radius: 4px; | |
| cursor: pointer; | |
| transition: background-color 0.3s ease; | |
| } | |
| input[type="submit"]:hover { | |
| background-color: #0056b3; | |
| } | |
| #loading { | |
| padding: 20px; | |
| border-radius: 5px; | |
| background-color: #f0f0f0; | |
| text-align: center; | |
| font-size: 18px; | |
| color: #4a4a4a; | |
| display: none; | |
| } | |
| #loading p { | |
| margin: 0; | |
| } |