Rooni commited on
Commit
8a2a16e
·
1 Parent(s): 142b791

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -1
app.py CHANGED
@@ -195,7 +195,21 @@ def img2img(input_image, denoising, prompt, negative_prompt, model, steps, sampl
195
 
196
 
197
  css = """
198
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  """
200
 
201
  with gr.Blocks(css=css) as demo:
 
195
 
196
 
197
  css = """
198
+ #generate {
199
+ width: 100%;
200
+ outline: none !important;
201
+ color: #FFF;
202
+ font-size: 16px;
203
+ padding: 10px 20px;
204
+ border: 3px solid #fff;
205
+ border-radius: 15px;
206
+ transition: background-color 0.5s ease-in-out;
207
+ }
208
+ #generate:hover {
209
+ background-color: #fff;
210
+ color: #000;
211
+ }
212
+ footer {visibility: hidden !important;}
213
  """
214
 
215
  with gr.Blocks(css=css) as demo: