Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -54,6 +54,10 @@ with gr.Blocks(css='''
|
|
54 |
.gradio-textbox {
|
55 |
opacity: 0.5; /* Change the opacity of the textbox */
|
56 |
}
|
|
|
|
|
|
|
|
|
57 |
''') as demo:
|
58 |
with gr.Row():
|
59 |
gr.HTML("""
|
@@ -75,6 +79,8 @@ with gr.Blocks(css='''
|
|
75 |
|
76 |
with gr.Row():
|
77 |
generate_button = gr.Button("Generate Your Cocktail Recipe")
|
|
|
|
|
78 |
output_recipe = gr.Markdown(label="Your Cocktail Recipe")
|
79 |
|
80 |
generate_button.click(
|
|
|
54 |
.gradio-textbox {
|
55 |
opacity: 0.5; /* Change the opacity of the textbox */
|
56 |
}
|
57 |
+
.gradio-markdown {
|
58 |
+
color: white; /* Change text color to white */
|
59 |
+
font-size: 18px;
|
60 |
+
}
|
61 |
''') as demo:
|
62 |
with gr.Row():
|
63 |
gr.HTML("""
|
|
|
79 |
|
80 |
with gr.Row():
|
81 |
generate_button = gr.Button("Generate Your Cocktail Recipe")
|
82 |
+
|
83 |
+
with gr.Row():
|
84 |
output_recipe = gr.Markdown(label="Your Cocktail Recipe")
|
85 |
|
86 |
generate_button.click(
|