neerajkalyank commited on
Commit
c9ee207
1 Parent(s): 143180b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -122,6 +122,8 @@ 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
  body {
126
  font-family: Arial, sans-serif;
127
  background: url('./background.png') no-repeat center center fixed;
@@ -190,7 +192,7 @@ textarea {
190
  }
191
 
192
  h1, h2, h3, h4, h5, h6 {
193
- color: #ff9800; /* Use a different color if needed */
194
  }
195
 
196
  #billing_output {
@@ -199,3 +201,6 @@ h1, h2, h3, h4, h5, h6 {
199
  border-radius: 5px;
200
  color: #fff;
201
  }
 
 
 
 
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;
 
192
  }
193
 
194
  h1, h2, h3, h4, h5, h6 {
195
+ color: #ff9800;
196
  }
197
 
198
  #billing_output {
 
201
  border-radius: 5px;
202
  color: #fff;
203
  }
204
+ """
205
+
206
+ app.launch()