Spaces:
Running
Running
| /* ── full-viewport layout ── */ | |
| html, body { | |
| overflow: hidden ; | |
| height: 100vh ; | |
| background: #fff ; | |
| } | |
| .dark html, .dark body, html.dark, body.dark { | |
| background: #171717 ; | |
| } | |
| .gradio-container { | |
| height: 100vh ; | |
| overflow: hidden ; | |
| max-width: 100% ; | |
| background: #fff ; | |
| } | |
| .dark .gradio-container, .gradio-container.dark { | |
| background: #171717 ; | |
| } | |
| .main { | |
| height: 100% ; | |
| overflow: hidden ; | |
| background: #fff ; | |
| } | |
| .dark .main { | |
| background: #171717 ; | |
| } | |
| /* ── global font ── | |
| * font-family is set on #hy-chat only (not #hy-chat *) so that KaTeX's | |
| * own math-font declarations (KaTeX_Main, KaTeX_Math, …) are not | |
| * overridden. Children inherit the system stack; KaTeX overrides it | |
| * via its own class-based rules. */ | |
| #hy-chat { | |
| font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", | |
| "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, | |
| Arial, sans-serif ; | |
| } | |
| #hy-chat, #hy-chat * { | |
| -webkit-font-smoothing: antialiased ; | |
| -moz-osx-font-smoothing: grayscale ; | |
| } | |