Update app.py
Browse files
app.py
CHANGED
@@ -77,19 +77,30 @@ with gr.Blocks(css=css) as myface:
|
|
77 |
with gr.Column(scale=100):
|
78 |
magic1=gr.Textbox(label="Your Prompt", lines=4)
|
79 |
gr.HTML("""<style> .gr-button {
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
}</style>""")
|
94 |
run=gr.Button("Generate Image")
|
95 |
with gr.Row():
|
|
|
77 |
with gr.Column(scale=100):
|
78 |
magic1=gr.Textbox(label="Your Prompt", lines=4)
|
79 |
gr.HTML("""<style> .gr-button {
|
80 |
+
background-image: linear-gradient(#f7f8fa ,#e7e9ec);
|
81 |
+
border-color: #adb1b8 #a2a6ac #8d9096;
|
82 |
+
border-style: solid;
|
83 |
+
border-width: 1px;
|
84 |
+
border-radius: 3px;
|
85 |
+
box-shadow: rgba(255,255,255,.6) 0 1px 0 inset;
|
86 |
+
box-sizing: border-box;
|
87 |
+
color: #0f1111;
|
88 |
+
cursor: pointer;
|
89 |
+
display: inline-block;
|
90 |
+
font-family: "Amazon Ember",Arial,sans-serif;
|
91 |
+
font-size: 14px;
|
92 |
+
height: 29px;
|
93 |
+
font-size: 13px;
|
94 |
+
outline: 0;
|
95 |
+
overflow: hidden;
|
96 |
+
padding: 0 11px;
|
97 |
+
text-align: center;
|
98 |
+
text-decoration: none;
|
99 |
+
text-overflow: ellipsis;
|
100 |
+
user-select: none;
|
101 |
+
-webkit-user-select: none;
|
102 |
+
touch-action: manipulation;
|
103 |
+
white-space: nowrap;
|
104 |
}</style>""")
|
105 |
run=gr.Button("Generate Image")
|
106 |
with gr.Row():
|