Spaces:
Running
Running
| /* Shared Space styling. Generated from _shared/spaceapp/ — do not edit in place. */ | |
| .gradio-container { | |
| max-width: 1080px ; | |
| margin: 0 auto ; | |
| font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, | |
| "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif ; | |
| } | |
| /* --- hero ---------------------------------------------------------------- */ | |
| .hero-container { | |
| text-align: center; | |
| padding: 40px 16px 24px; | |
| } | |
| .hero-badge { | |
| display: inline-block; | |
| text-decoration: none; | |
| background: linear-gradient(135deg, #4f46e5, #2563eb); | |
| color: #fff; | |
| font-size: 0.66rem; | |
| font-weight: 700; | |
| letter-spacing: 0.14em; | |
| padding: 7px 18px; | |
| border-radius: 999px; | |
| margin-bottom: 16px; | |
| } | |
| .hero-badge:hover { | |
| filter: brightness(1.1); | |
| text-decoration: none; | |
| } | |
| .hero-title { | |
| font-size: 2.4rem; | |
| font-weight: 800; | |
| letter-spacing: -0.025em; | |
| margin: 0 0 10px; | |
| background: linear-gradient(135deg, #4338ca 0%, #2563eb 55%, #7c3aed 100%); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| .hero-desc { | |
| font-size: 1rem; | |
| line-height: 1.6; | |
| color: var(--body-text-color-subdued, #64748b); | |
| max-width: 62ch; | |
| margin: 0 auto; | |
| } | |
| @media (max-width: 620px) { | |
| .hero-title { | |
| font-size: 1.8rem; | |
| } | |
| } | |
| /* --- api key row --------------------------------------------------------- */ | |
| .api-key-row { | |
| align-items: center; | |
| gap: 10px; | |
| margin-bottom: 4px; | |
| } | |
| .get-key-btn { | |
| display: inline-block; | |
| white-space: nowrap; | |
| padding: 9px 16px; | |
| border-radius: 8px; | |
| border: 1px solid var(--border-color-primary, #d2d6de); | |
| font-size: 0.86rem; | |
| font-weight: 600; | |
| text-decoration: none; | |
| color: var(--body-text-color, #14161a); | |
| } | |
| .get-key-btn:hover { | |
| background: var(--background-fill-secondary, #f4f5f7); | |
| } | |
| .key-note { | |
| font-size: 0.82rem ; | |
| line-height: 1.55; | |
| color: var(--body-text-color-subdued, #6b7280) ; | |
| margin: 2px 2px 18px ; | |
| } | |
| .key-note code { | |
| font-size: 0.95em; | |
| } | |
| /* --- controls ------------------------------------------------------------ */ | |
| .primary-btn { | |
| background: linear-gradient(135deg, #4f46e5, #2563eb) ; | |
| border: 0 ; | |
| color: #fff ; | |
| font-weight: 650 ; | |
| border-radius: 9px ; | |
| margin-top: 8px; | |
| } | |
| .primary-btn:hover { | |
| filter: brightness(1.08); | |
| } | |
| /* --- footer -------------------------------------------------------------- */ | |
| .cta-container { | |
| text-align: center; | |
| padding: 22px 16px 8px; | |
| margin-top: 18px; | |
| border-top: 1px solid var(--border-color-primary, #e4e6eb); | |
| } | |
| .cta-desc { | |
| font-size: 0.86rem; | |
| color: var(--body-text-color-subdued, #6b7280); | |
| margin: 0; | |
| } | |
| .cta-desc a { | |
| color: #4f46e5; | |
| text-decoration: none; | |
| font-weight: 600; | |
| } | |
| .cta-desc a:hover { | |
| text-decoration: underline; | |
| } | |
| .cta-desc code { | |
| font-size: 0.95em; | |
| } | |