DSDUDEd commited on
Commit
8ecdd3c
·
verified ·
1 Parent(s): 32b2131

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +8 -0
style.css ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ body { font-family: Arial, sans-serif; background: #f9fafb; color: #222; }
2
+ .container { max-width: 800px; margin: auto; padding: 20px; }
3
+ #chatbox { background: #fff; padding: 15px; border-radius: 10px; min-height: 300px; margin-bottom: 10px; overflow-y: auto; }
4
+ .user { text-align: right; margin: 5px; color: blue; }
5
+ .ai { text-align: left; margin: 5px; color: green; }
6
+ form { display: flex; gap: 10px; }
7
+ input { flex: 1; padding: 8px; }
8
+ button { padding: 8px 15px; }