Spaces:
Running
Running
| /* Minimal custom styling, avoiding explicit background and text colors */ | |
| /* General block styling */ | |
| .title-block, .description-block, .article-block { | |
| border-radius: 10px; | |
| padding: 20px; | |
| margin-bottom: 20px; | |
| text-align: center; | |
| } | |
| /* Title block */ | |
| .title-block { | |
| font-size: 28px; | |
| font-weight: bold; | |
| /* No color or background settings to let Gradio handle the theme */ | |
| } | |
| /* Description block */ | |
| .description-block { | |
| font-size: 18px; | |
| /* No color or background settings */ | |
| } | |
| /* Article block */ | |
| .article-block { | |
| font-size: 16px; | |
| margin-top: 30px; | |
| /* No color or background settings */ | |
| } | |
| /* Prominent Submit Button */ | |
| .submit-button { | |
| background-color: #007bff ; | |
| color: white ; | |
| font-size: 18px ; | |
| font-weight: bold ; | |
| padding: 12px 24px ; | |
| border-radius: 8px ; | |
| margin: 15px auto ; | |
| display: block ; | |
| transition: background-color 0.3s ease ; | |
| box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) ; | |
| } | |
| .submit-button:hover { | |
| background-color: #0056b3 ; | |
| box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) ; | |
| } | |