anycoder / app.css
akhaliq's picture
akhaliq HF Staff
update
082d9d1
raw
history blame
864 Bytes
/* Basic styling for the coder application */
.left_header {
text-align: center;
margin-bottom: 20px;
}
.left_header h1 {
margin-top: 10px;
color: #333;
}
.right_panel {
background: #f5f5f5;
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: white;
}
.history_chatbot {
max-height: 960px;
overflow-y: auto;
}