jenkim25 commited on
Commit
b735702
Β·
verified Β·
1 Parent(s): 0029eed

fixing title size/background color

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -89,8 +89,8 @@ def cancel_inference():
89
 
90
  # Custom CSS for a fancy look
91
  custom_css = """
92
- #main-container {
93
- background-color: #a7e0fd;
94
  font-family: 'Comic Neue', sans-serif;
95
  }
96
 
@@ -136,8 +136,8 @@ custom_css = """
136
 
137
  # Define the interface
138
  with gr.Blocks(css=custom_css) as demo:
139
- gr.Markdown("<h1 style='text-align: center;'>🍎✏️ School AI Chatbot ✏️🍎</h1>")
140
- gr.Markdown("<h3 style='text-align: center;'>πŸ›</h3>")
141
  gr.Markdown("Interact with Wormington Scholar by selecting the appropriate level below.")
142
 
143
 
 
89
 
90
  # Custom CSS for a fancy look
91
  custom_css = """
92
+ main-container {
93
+ background-color: #CDEBC5;
94
  font-family: 'Comic Neue', sans-serif;
95
  }
96
 
 
136
 
137
  # Define the interface
138
  with gr.Blocks(css=custom_css) as demo:
139
+ gr.Markdown("<h2 style='text-align: center;'>🍎✏️ School AI Chatbot ✏️🍎</h2>")
140
+ gr.Markdown("<h1 style='text-align: center;'>πŸ›</h1>")
141
  gr.Markdown("Interact with Wormington Scholar by selecting the appropriate level below.")
142
 
143