Juna190825 commited on
Commit
d98db92
·
verified ·
1 Parent(s): 6d2e2e6

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +45 -0
static/style.css ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .gradio-container {
2
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
3
+ max-width: 800px;
4
+ margin: 0 auto;
5
+ }
6
+
7
+ .dark .gradio-container {
8
+ background-color: #1a1a1a;
9
+ }
10
+
11
+ .chatbot {
12
+ min-height: 500px;
13
+ border-radius: 8px;
14
+ border: 1px solid #e0e0e0;
15
+ }
16
+
17
+ .dark .chatbot {
18
+ border-color: #444;
19
+ }
20
+
21
+ /* Button styling */
22
+ button {
23
+ background-color: #6e6edf !important;
24
+ color: white !important;
25
+ border: none !important;
26
+ border-radius: 4px !important;
27
+ padding: 8px 16px !important;
28
+ }
29
+
30
+ button:hover {
31
+ background-color: #5a5acf !important;
32
+ }
33
+
34
+ /* Input styling */
35
+ input, textarea {
36
+ border-radius: 4px !important;
37
+ padding: 10px !important;
38
+ border: 1px solid #ddd !important;
39
+ }
40
+
41
+ .dark input, .dark textarea {
42
+ background-color: #2d2d2d !important;
43
+ border-color: #444 !important;
44
+ color: white !important;
45
+ }