Spaces:
Running on Zero
Running on Zero
| /* 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 */ | |
| } | |