jschwab21 commited on
Commit
26651a8
·
verified ·
1 Parent(s): e76448d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -7
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="#ffffff",
46
  button_primary_text_color="#ffffff",
47
- button_primary_text_color_hover="#eb5726",
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
- radial-gradient(#eb5726 1px, transparent 1px),
64
- radial-gradient(circle at center, rgba(235, 87, 38, 1) 0%, rgba(235, 87, 38, 0) 70%);
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 {