Update app.py
Browse files
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 |
-
|
47 |
-
|
48 |
-
background-color: #36c4e4
|
49 |
-
|
50 |
-
border:
|
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 |
}
|