-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (49 loc) · 1.05 KB
/
styles.css
File metadata and controls
60 lines (49 loc) · 1.05 KB
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
/* Workshop Chatbot Styles */
/* Header Styles */
.header-wrapper {
margin-bottom: 1.5rem;
}
.header-wrapper h1 {
color: #1f2937;
margin-bottom: 0.5rem;
}
.header-subtitle {
color: #6b7280;
font-size: 1rem;
margin-top: 0;
}
/* Memory Status Indicator */
.memory-status-indicator {
display: flex;
justify-content: center;
margin-bottom: 1rem;
padding: 0.75rem 1.5rem;
background: #f0f2f6;
border-radius: 0.5rem;
border: 1px solid #e0e0e0;
}
.memory-status-indicator.active {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
border: 2px solid #667eea;
}
.memory-status-text {
font-size: 0.95rem;
color: #374151;
font-weight: 500;
}
.memory-status-indicator.active .memory-status-text {
color: #667eea;
}
/* Chat Message Styling */
.stChatMessage {
padding: 1rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.header-wrapper h1 {
font-size: 1.5rem;
}
.header-subtitle {
font-size: 0.9rem;
}
}