Spaces:
Running
Running
/* Basic styling for the coder application */ | |
:root { | |
--text-color: #333; | |
--bg-color: #f5f5f5; | |
--html-bg: white; | |
} | |
@media (prefers-color-scheme: dark) { | |
:root { | |
--text-color: #e0e0e0; | |
--bg-color: #2d2d2d; | |
--html-bg: #1e1e1e; | |
} | |
} | |
.left_header { | |
text-align: center; | |
margin-bottom: 20px; | |
} | |
.left_header h1 { | |
margin-top: 10px; | |
color: var(--text-color); | |
} | |
.right_panel { | |
background: var(--bg-color); | |
border-radius: 8px; | |
padding: 20px; | |
height: 100%; | |
} | |
.render_header { | |
display: flex; | |
gap: 8px; | |
margin-bottom: 15px; | |
} | |
.header_btn { | |
width: 12px; | |
height: 12px; | |
border-radius: 50%; | |
background: #ff5f56; | |
} | |
.header_btn:nth-child(2) { | |
background: #ffbd2e; | |
} | |
.header_btn:nth-child(3) { | |
background: #27ca3f; | |
} | |
.right_content { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
height: 800px; | |
} | |
.html_content { | |
width: 100%; | |
height: 920px; | |
border: none; | |
border-radius: 8px; | |
background: var(--html-bg); | |
} | |
.history_chatbot { | |
max-height: 960px; | |
overflow-y: auto; | |
} |