Update app.py
Browse files
app.py
CHANGED
@@ -139,15 +139,11 @@ css = '''
|
|
139 |
.gradio-container{max-width: 888px !important}
|
140 |
h1{text-align:center}
|
141 |
.submit-btn {
|
142 |
-
background-color: #
|
143 |
color: white !important;
|
144 |
}
|
145 |
.submit-btn:hover {
|
146 |
-
background-color: #
|
147 |
-
}
|
148 |
-
.drop-down {
|
149 |
-
background-color: #ECB176 !important;
|
150 |
-
color: white !important;
|
151 |
}
|
152 |
'''
|
153 |
|
@@ -181,8 +177,7 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
181 |
model_choice = gr.Dropdown(
|
182 |
label="LoRA Selection",
|
183 |
choices=list(LORA_OPTIONS.keys()),
|
184 |
-
value="Realism (face/character)👦🏻"
|
185 |
-
elem_classes="drop-down")
|
186 |
|
187 |
with gr.Accordion("Advanced options", open=True):
|
188 |
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True, visible=True)
|
|
|
139 |
.gradio-container{max-width: 888px !important}
|
140 |
h1{text-align:center}
|
141 |
.submit-btn {
|
142 |
+
background-color: #ecde2c !important;
|
143 |
color: white !important;
|
144 |
}
|
145 |
.submit-btn:hover {
|
146 |
+
background-color: #ffec00 !important;
|
|
|
|
|
|
|
|
|
147 |
}
|
148 |
'''
|
149 |
|
|
|
177 |
model_choice = gr.Dropdown(
|
178 |
label="LoRA Selection",
|
179 |
choices=list(LORA_OPTIONS.keys()),
|
180 |
+
value="Realism (face/character)👦🏻")
|
|
|
181 |
|
182 |
with gr.Accordion("Advanced options", open=True):
|
183 |
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True, visible=True)
|