mirror of
https://github.com/System-End/self-learning-ai-website.git
synced 2026-04-19 18:45:16 +00:00
45 lines
719 B
CSS
45 lines
719 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f4f4;
|
|
}
|
|
header {
|
|
background-color: #333;
|
|
color: #fff;
|
|
padding: 10px 0;
|
|
text-align: center;
|
|
}
|
|
main {
|
|
padding: 20px;
|
|
}
|
|
#scraped-content,
|
|
#chat {
|
|
margin-bottom: 20px;
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
#chat-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
#chat-output {
|
|
flex: 1;
|
|
min-height: 200px;
|
|
border: 1px solid #ccc;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
overflow-y: auto;
|
|
}
|
|
#chat-input {
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
#send-button {
|
|
padding: 10px;
|
|
background-color: #333;
|
|
color: #fff;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|