Spaces:
Running
Running
| body { | |
| margin: 0; | |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', | |
| 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', | |
| sans-serif; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| code { | |
| font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', | |
| monospace; | |
| } | |
| h1 { | |
| font-size: 2rem; | |
| text-align: center; | |
| margin-bottom: 1rem; | |
| } | |
| /* .main { | |
| background: #2a2a2a; | |
| padding: 1rem; | |
| border-radius: 8px; | |
| } */ | |
| /* | |
| .chat-box { | |
| max-height: 60vh; | |
| overflow-y: auto; | |
| margin-bottom: 1rem; | |
| } | |
| .message { | |
| margin: 0.5rem 0; | |
| } | |
| .message.user { | |
| text-align: right; | |
| } */ | |
| /* .bubble { | |
| display: inline-block; | |
| padding: 0.75rem; | |
| border-radius: 8px; | |
| background: #3b3b3b; | |
| max-width: 100%; | |
| white-space: pre-wrap; | |
| } */ | |
| /* .chat-input { | |
| display: flex; | |
| gap: 0.5rem; | |
| margin-top: 1rem; | |
| } */ | |
| .chat-input input { | |
| flex: 1; | |
| padding: 0.5rem; | |
| background: #444; | |
| color: white; | |
| border: none; | |
| border-radius: 4px; | |
| } | |
| .chat-input button { | |
| background: #007bff; | |
| color: white; | |
| padding: 0.5rem 1rem; | |
| border: none; | |
| border-radius: 4px; | |
| } | |
| .buttons { | |
| display: flex; | |
| gap: 0.5rem; | |
| flex-wrap: wrap; | |
| margin-bottom: 1rem; | |
| } | |
| button { | |
| background: #555; | |
| color: white; | |
| border: none; | |
| padding: 0.4rem 0.8rem; | |
| border-radius: 4px; | |
| cursor: pointer; | |
| } | |
| button:hover { | |
| background: #777; | |
| } | |