adough commited on
Commit
be2ef75
·
verified ·
1 Parent(s): 59275d1

updated tell me about yourself

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -137,6 +137,16 @@ with gr.Blocks(
137
  padding: 15px;
138
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
139
  }
 
 
 
 
 
 
 
 
 
 
140
  #banner-image {
141
  background-color: transparent;
142
  margin-bottom: -100px;
@@ -162,10 +172,10 @@ with gr.Blocks(
162
 
163
  name_state = gr.State("")
164
  chat_history = gr.State([])
165
-
 
166
  with gr.Row():
167
  with gr.Column(scale=1):
168
- gr.Markdown("### Tell me about yourself")
169
  name_input = gr.Textbox(label="Name", placeholder="Your name…")
170
  age_input = gr.Textbox(label="Age", placeholder="Your age…")
171
  level_input = gr.Dropdown(choices=["Beginner", "Intermediate", "Expert"], label="Training Level")
 
137
  padding: 15px;
138
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
139
  }
140
+ #about-you-title {
141
+ font-size: 24px;
142
+ font-weight: 700;
143
+ color: #A80055;
144
+ text-align: left;
145
+ padding-left: 10px;
146
+ margin-top: 10px;
147
+ margin-bottom: -10px;
148
+ }
149
+
150
  #banner-image {
151
  background-color: transparent;
152
  margin-bottom: -100px;
 
172
 
173
  name_state = gr.State("")
174
  chat_history = gr.State([])
175
+ gr.Markdown("## 📝 Tell me about yourself", elem_id="about-you-title")
176
+
177
  with gr.Row():
178
  with gr.Column(scale=1):
 
179
  name_input = gr.Textbox(label="Name", placeholder="Your name…")
180
  age_input = gr.Textbox(label="Age", placeholder="Your age…")
181
  level_input = gr.Dropdown(choices=["Beginner", "Intermediate", "Expert"], label="Training Level")