Mattral commited on
Commit
8ffffbf
β€’
1 Parent(s): 36eb6b1

Update styles/style.css

Browse files
Files changed (1) hide show
  1. styles/style.css +49 -9
styles/style.css CHANGED
@@ -1,17 +1,57 @@
1
  h1 {
2
  text-align: center;
3
- }
4
-
5
- #duplicate-button {
 
6
  margin: auto;
7
  color: white;
8
  background: #1565c0;
9
- border-radius: 100vh;
10
- }
11
-
12
- #component-0 {
13
  max-width: 900px;
14
  margin: auto;
15
  padding-top: 1.5rem;
16
- }
17
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  h1 {
2
  text-align: center;
3
+ color: #1565c0;
4
+ }
5
+
6
+ #duplicate-button {
7
  margin: auto;
8
  color: white;
9
  background: #1565c0;
10
+ border-radius: 50px;
11
+ }
12
+
13
+ #component-0 {
14
  max-width: 900px;
15
  margin: auto;
16
  padding-top: 1.5rem;
17
+ }
18
+
19
+ #chatbot {
20
+ background: #f9f9f9;
21
+ border-radius: 8px;
22
+ padding: 1rem;
23
+ }
24
+
25
+ #chatbot .gr-message-user {
26
+ background-color: #e3f2fd;
27
+ border-radius: 8px;
28
+ }
29
+
30
+ #chatbot .gr-message-bot {
31
+ background-color: #bbdefb;
32
+ border-radius: 8px;
33
+ }
34
+
35
+ .gr-input-group input, .gr-input-group textarea {
36
+ border-radius: 8px;
37
+ }
38
+
39
+ .gr-input-group .gr-button-primary {
40
+ background-color: #1565c0;
41
+ color: white;
42
+ border-radius: 8px;
43
+ }
44
+
45
+ .gr-input-group .gr-button-secondary {
46
+ background-color: #eeeeee;
47
+ color: #1565c0;
48
+ border-radius: 8px;
49
+ }
50
+
51
+ #advanced-options .gr-accordion-label {
52
+ color: #1565c0;
53
+ }
54
+
55
+ .gr-slider-container .gr-slider-label {
56
+ color: #1565c0;
57
+ }