Spaces:
Sleeping
Sleeping
Jonas Wiesli
commited on
Commit
·
432c83d
1
Parent(s):
85ffe8b
added rest of character images
Browse files
app.py
CHANGED
@@ -38,7 +38,10 @@ css = "@import url(https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;
|
|
38 |
"min-height:100px;background-position:bottom;background-repeat:no-repeat;background-size:contain;image" \
|
39 |
"-rendering:pixelated;max-height:650px}#component-14,#component-22,#component-30,#component-38,#component-46{" \
|
40 |
"display:none}div.svelte-1flp5nf{max-height:675px}#component-13{background-image:url(" \
|
41 |
-
"\"file/img/suspects/steve.png\")}#component-21{background-image:url(
|
|
|
|
|
|
|
42 |
|
43 |
with gr.Blocks(theme=theme, css=css) as iface:
|
44 |
chatbot = []
|
|
|
38 |
"min-height:100px;background-position:bottom;background-repeat:no-repeat;background-size:contain;image" \
|
39 |
"-rendering:pixelated;max-height:650px}#component-14,#component-22,#component-30,#component-38,#component-46{" \
|
40 |
"display:none}div.svelte-1flp5nf{max-height:675px}#component-13{background-image:url(" \
|
41 |
+
"\"file/img/suspects/steve.png\")}#component-21{background-image:url(" \
|
42 |
+
"\"file/img/suspects/albert.png\")}#component-29{background-image:url(" \
|
43 |
+
"\"file/img/suspects/dominic.png\")}#component-37{background-image:url(" \
|
44 |
+
"\"file/img/suspects/brianna.png\")}#component-45{background-image:url(\"file/img/suspects/lyanne.png\")}"
|
45 |
|
46 |
with gr.Blocks(theme=theme, css=css) as iface:
|
47 |
chatbot = []
|
style.css
CHANGED
@@ -166,4 +166,16 @@ div.svelte-1flp5nf {
|
|
166 |
|
167 |
#component-21 {
|
168 |
background-image: url(\"file/img/suspects/albert.png\");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
}
|
|
|
166 |
|
167 |
#component-21 {
|
168 |
background-image: url(\"file/img/suspects/albert.png\");
|
169 |
+
}
|
170 |
+
|
171 |
+
#component-29 {
|
172 |
+
background-image: url(\"file/img/suspects/dominic.png\");
|
173 |
+
}
|
174 |
+
|
175 |
+
#component-37 {
|
176 |
+
background-image: url(\"file/img/suspects/brianna.png\");
|
177 |
+
}
|
178 |
+
|
179 |
+
#component-45 {
|
180 |
+
background-image: url(\"file/img/suspects/lyanne.png\");
|
181 |
}
|