File size: 1,450 Bytes
d496b6e a4fa14c d496b6e a4fa14c d496b6e a4fa14c d496b6e dd3ebc2 a4fa14c d496b6e a4fa14c d496b6e a4fa14c d496b6e a4fa14c d496b6e a4fa14c d496b6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #f5f5f5;
}
h1 {
color: #2d2d2d;
text-align: center;
}
.chat-container {
background: white;
border-radius: 12px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Loading styles */
#loadingContainer {
text-align: center;
padding: 40px 20px;
}
.progress-bar {
width: 100%;
height: 20px;
background-color: #f0f0f0;
border-radius: 10px;
overflow: hidden;
margin-bottom: 10px;
}
#progressFill {
width: 0%;
height: 100%;
background-color: #007AFF;
transition: width 0.3s ease;
}
#loadingText {
color: #666;
font-size: 16px;
}
/* Chat interface styles */
#questionInput {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 8px;
margin-bottom: 12px;
font-size: 16px;
resize: vertical;
}
#sendButton {
background: #007AFF;
color: white;
border: none;
padding: 12px 24px;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
transition: background 0.2s;
}
#sendButton:hover {
background: #0056b3;
}
#responseContainer {
margin-top: 20px;
padding: 16px;
border: 1px solid #ddd;
border-radius: 8px;
min-height: 100px;
}
#response {
margin-top: 12px;
white-space: pre-wrap;
} |