Spaces:
Sleeping
Sleeping
| /* Base Theme */ | |
| body { | |
| background-color: #000000; | |
| color: #FFD700; | |
| } | |
| .stButton>button { | |
| background-color: #FFD700; | |
| color: #000000; | |
| } | |
| .stTextInput>div>div>input { | |
| color: #FFD700; | |
| border-color: #FFD700 ; | |
| } | |
| .stSidebar { | |
| background-color: #1E1E1E; | |
| } | |
| /* Center the login container */ | |
| .login-container { | |
| max-width: 400px; | |
| margin: 0 auto; | |
| padding: 2rem; | |
| background-color: #1E1E1E; | |
| border-radius: 10px; | |
| } | |
| .login-container h2 { | |
| text-align: center; | |
| } | |
| /* Chat-like bubbles */ | |
| .chat-bubble { | |
| padding: 10px; | |
| border-radius: 10px; | |
| margin: 5px 0; | |
| max-width: 80%; | |
| word-wrap: break-word; | |
| } | |
| .user-bubble { | |
| background-color: #1E1E1E; | |
| border: 1px solid #FFD700; | |
| align-self: flex-start; | |
| } | |
| .bot-bubble { | |
| background-color: #FFD700; | |
| color: #000; | |
| align-self: flex-end; | |
| } |