Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -42,9 +42,7 @@ 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="#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()
|
@@ -79,6 +77,11 @@ body {
|
|
79 |
color: #ffffff;
|
80 |
border: 2px solid #ffffff;
|
81 |
}
|
|
|
|
|
|
|
|
|
|
|
82 |
label[for="video_url"] {
|
83 |
color: #eb5726 !important;
|
84 |
}
|
@@ -94,7 +97,7 @@ h3 {
|
|
94 |
padding: 10px;
|
95 |
}
|
96 |
#sickstadium-title {
|
97 |
-
font-size:
|
98 |
font-weight: bold;
|
99 |
text-transform: uppercase;
|
100 |
}
|
|
|
42 |
block_title_text_color="#eb5726",
|
43 |
block_label_text_color="#eb5726",
|
44 |
button_primary_background_fill="#eb5726",
|
|
|
45 |
button_primary_text_color="#ffffff",
|
|
|
46 |
)
|
47 |
|
48 |
custom_theme = CustomTheme()
|
|
|
77 |
color: #ffffff;
|
78 |
border: 2px solid #ffffff;
|
79 |
}
|
80 |
+
#submit_button:hover {
|
81 |
+
background-color: #f5986e;
|
82 |
+
color: #ffffff;
|
83 |
+
border: 2px solid #ffffff;
|
84 |
+
}
|
85 |
label[for="video_url"] {
|
86 |
color: #eb5726 !important;
|
87 |
}
|
|
|
97 |
padding: 10px;
|
98 |
}
|
99 |
#sickstadium-title {
|
100 |
+
font-size: 3em !important;
|
101 |
font-weight: bold;
|
102 |
text-transform: uppercase;
|
103 |
}
|