Spaces:
Sleeping
Sleeping
sethmcknight
Implement initial Flask application with health check endpoint, basic HTML template, and styling; add unit tests for endpoints
e3e3a84
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #f0f2f5; | |
| color: #333; | |
| margin: 0; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| min-height: 100vh; | |
| text-align: center; | |
| } | |
| .container { | |
| max-width: 600px; | |
| padding: 40px; | |
| background-color: #fff; | |
| border-radius: 16px; | |
| box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); | |
| } | |
| header h1 { | |
| font-size: 48px; | |
| font-weight: 700; | |
| color: #1a73e8; | |
| margin: 0; | |
| } | |
| .subtitle { | |
| font-size: 18px; | |
| color: #5f6368; | |
| margin-top: 8px; | |
| } | |
| .coming-soon { | |
| margin-top: 40px; | |
| } | |
| .coming-soon h2 { | |
| font-size: 28px; | |
| font-weight: 600; | |
| color: #3c4043; | |
| } | |
| .coming-soon p { | |
| font-size: 16px; | |
| line-height: 1.6; | |
| color: #5f6368; | |
| } | |
| footer { | |
| margin-top: 40px; | |
| font-size: 12px; | |
| color: #9aa0a6; | |
| } | |