natasha1704 commited on
Commit
b51b657
·
verified ·
1 Parent(s): 8e199b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -38,26 +38,26 @@ def build_interface() -> gr.Blocks:
38
 
39
  custom_css = """
40
  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');
41
-
42
  * {
43
  font-family: 'Nunito', sans-serif;
44
  }
45
-
46
- .gr-textbox textarea,
47
- input[type="password"] {
48
- background-color: #36c4e4 !important;
49
- color: #000 !important;
50
- border: none !important;
51
- border-radius: 6px;
52
  }
53
-
 
54
  .gr-button-primary {
55
  background-color: #0b65b3 !important;
56
  color: white !important;
57
  border: none !important;
58
  border-radius: 6px;
59
  }
60
-
61
  .gr-button-primary:hover {
62
  background-color: #094e91 !important;
63
  }
 
38
 
39
  custom_css = """
40
  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');
41
+
42
  * {
43
  font-family: 'Nunito', sans-serif;
44
  }
45
+
46
+ /* Set the background for the credentials and chat sections */
47
+ #credentials-box, #chat-box {
48
+ background-color: #36c4e4;
49
+ padding: 20px;
50
+ border-radius: 12px;
 
51
  }
52
+
53
+ /* Make the button dark blue */
54
  .gr-button-primary {
55
  background-color: #0b65b3 !important;
56
  color: white !important;
57
  border: none !important;
58
  border-radius: 6px;
59
  }
60
+
61
  .gr-button-primary:hover {
62
  background-color: #094e91 !important;
63
  }