Spaces:
Runtime error
Runtime error
zampieri commited on
Commit ·
d6d9f5d
1
Parent(s): b684cd1
added dummy theme
Browse files
app.py
CHANGED
|
@@ -60,7 +60,7 @@ def create_with_interface():
|
|
| 60 |
|
| 61 |
|
| 62 |
def create_with_blocks():
|
| 63 |
-
with gr.Blocks() as demo:
|
| 64 |
gr.Markdown(
|
| 65 |
"""
|
| 66 |
# Explore your Tinder data
|
|
|
|
| 60 |
|
| 61 |
|
| 62 |
def create_with_blocks():
|
| 63 |
+
with gr.Blocks(css="theme.css") as demo:
|
| 64 |
gr.Markdown(
|
| 65 |
"""
|
| 66 |
# Explore your Tinder data
|
theme.css
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* body {
|
| 2 |
+
background-color: grey;
|
| 3 |
+
}
|
| 4 |
+
.gradio-container {
|
| 5 |
+
background-color: red;
|
| 6 |
+
font-family: Papyrus, 'Courier New', Courier, monospace;
|
| 7 |
+
} */
|