Spaces:
Sleeping
Sleeping
neerajkalyank
commited on
Commit
•
143180b
1
Parent(s):
4bb6dc7
Update app.py
Browse files
app.py
CHANGED
@@ -122,8 +122,6 @@ with gr.Blocks() as app:
|
|
122 |
billing_output = gr.Textbox(label="Billing Information")
|
123 |
fetch_button.click(billing_interface, [patient_id_bill], billing_output)
|
124 |
|
125 |
-
# Custom CSS styling
|
126 |
-
app.css = """
|
127 |
body {
|
128 |
font-family: Arial, sans-serif;
|
129 |
background: url('./background.png') no-repeat center center fixed;
|
@@ -174,7 +172,6 @@ textarea {
|
|
174 |
}
|
175 |
|
176 |
.gr-button {
|
177 |
-
background-color: #ff5722;
|
178 |
color: #fff;
|
179 |
border: none;
|
180 |
border-radius: 5px;
|
@@ -193,7 +190,7 @@ textarea {
|
|
193 |
}
|
194 |
|
195 |
h1, h2, h3, h4, h5, h6 {
|
196 |
-
color: #ff9800;
|
197 |
}
|
198 |
|
199 |
#billing_output {
|
@@ -202,6 +199,3 @@ h1, h2, h3, h4, h5, h6 {
|
|
202 |
border-radius: 5px;
|
203 |
color: #fff;
|
204 |
}
|
205 |
-
"""
|
206 |
-
|
207 |
-
app.launch()
|
|
|
122 |
billing_output = gr.Textbox(label="Billing Information")
|
123 |
fetch_button.click(billing_interface, [patient_id_bill], billing_output)
|
124 |
|
|
|
|
|
125 |
body {
|
126 |
font-family: Arial, sans-serif;
|
127 |
background: url('./background.png') no-repeat center center fixed;
|
|
|
172 |
}
|
173 |
|
174 |
.gr-button {
|
|
|
175 |
color: #fff;
|
176 |
border: none;
|
177 |
border-radius: 5px;
|
|
|
190 |
}
|
191 |
|
192 |
h1, h2, h3, h4, h5, h6 {
|
193 |
+
color: #ff9800; /* Use a different color if needed */
|
194 |
}
|
195 |
|
196 |
#billing_output {
|
|
|
199 |
border-radius: 5px;
|
200 |
color: #fff;
|
201 |
}
|
|
|
|
|
|