Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -42,9 +42,9 @@ class CustomTheme(Base):
|
|
42 |
block_title_text_color="#eb5726",
|
43 |
block_label_text_color="#eb5726",
|
44 |
button_primary_background_fill="#eb5726",
|
45 |
-
button_primary_background_fill_hover="#
|
46 |
button_primary_text_color="#ffffff",
|
47 |
-
button_primary_text_color_hover="#
|
48 |
)
|
49 |
|
50 |
custom_theme = CustomTheme()
|
@@ -59,11 +59,9 @@ def display_results(video_url, description):
|
|
59 |
css = """
|
60 |
body {
|
61 |
background-color: #ffffff;
|
62 |
-
background-image:
|
63 |
-
|
64 |
-
|
65 |
-
background-size: 10px 10px, cover;
|
66 |
-
background-repeat: repeat, no-repeat;
|
67 |
background-attachment: fixed;
|
68 |
}
|
69 |
#video_url {
|
|
|
42 |
block_title_text_color="#eb5726",
|
43 |
block_label_text_color="#eb5726",
|
44 |
button_primary_background_fill="#eb5726",
|
45 |
+
button_primary_background_fill_hover="#f5986e", # Slightly lighter shade of orange
|
46 |
button_primary_text_color="#ffffff",
|
47 |
+
button_primary_text_color_hover="#ffffff",
|
48 |
)
|
49 |
|
50 |
custom_theme = CustomTheme()
|
|
|
59 |
css = """
|
60 |
body {
|
61 |
background-color: #ffffff;
|
62 |
+
background-image: radial-gradient(#eb5726 1px, transparent 1px);
|
63 |
+
background-size: 10px 10px;
|
64 |
+
background-repeat: repeat;
|
|
|
|
|
65 |
background-attachment: fixed;
|
66 |
}
|
67 |
#video_url {
|